/* ====================================
   POLICY PAGES STYLES
   ==================================== */

.policy-page {
    background: linear-gradient(180deg, #f8fafc, #e2e8f0);
    min-height: 100vh;
}

/* Policy Header */
.policy-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.policy-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.policy-header p {
    opacity: 0.8;
    font-size: 16px;
}

/* Policy Content */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.policy-intro {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid #667eea;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.policy-intro.highlight {
    border-left-color: #10b981;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.policy-intro h2 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 15px;
}

.policy-intro p {
    color: #475569;
    line-height: 1.7;
}

.policy-section {
    margin-bottom: 35px;
}

.policy-section h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-section h4 {
    font-size: 16px;
    color: #334155;
    margin: 20px 0 10px;
    font-weight: 600;
}

.policy-section p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.policy-section li {
    position: relative;
    padding-left: 25px;
    padding-bottom: 10px;
    color: #475569;
    line-height: 1.6;
}

.policy-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 18px;
}

.policy-section a {
    color: #667eea;
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}

.policy-contact {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

.policy-contact h3 {
    color: #1e293b;
}

/* Policy Footer */
.policy-footer {
    background: linear-gradient(180deg, #0f172a, #020617);
    padding: 50px 20px 30px;
    color: white;
}

.policy-footer .footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-brand-simple {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.footer-brand-simple .logo-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    font-weight: 700;
}

.footer-brand-simple h3 {
    font-size: 16px;
    color: white;
}

.footer-links-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #334155;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 15px;
}

.footer-col p {
    color: #94a3b8;
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #667eea;
}

.policy-footer .footer-copyright {
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 32px;
    }

    .policy-content {
        padding: 40px 15px;
    }

    .policy-intro,
    .policy-contact {
        padding: 20px;
    }

    .footer-links-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
