/* ===== Policy Page Specific Styles ===== */
.policy-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f8fafc;
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(45, 106, 122, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.policy-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.policy-hero p {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.policy-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.policy-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 3rem;
    border: 1px solid #e2e8f0;
}

.policy-content {
    color: #334155;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.policy-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #0f172a;
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.5rem;
}

.policy-content h3 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.policy-content p {
    margin-bottom: 1.5rem;
}

.policy-content ul, .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 2.5rem 0;
}

.policy-content strong {
    color: #0f172a;
}

.policy-content a {
    color: #2d6a7a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.policy-content a:hover {
    color: #6ba3aa;
    text-decoration: underline;
}

/* Animations */
.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .policy-hero {
        padding: 5rem 1.25rem 3rem;
    }
    .policy-hero h1 {
        font-size: 2.25rem;
    }
    .policy-container {
        margin: 2rem auto;
        padding: 0 1rem;
    }
    .policy-card {
        padding: 1.75rem;
        border-radius: 12px;
    }
    .policy-content {
        font-size: 0.975rem;
        line-height: 1.7;
    }
    .policy-content h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
    }
}
