/* Policy Pages Shared Styles */
:root {
    --primary-light: #517d9f;
    --primary-mid: #416582;
    --primary-dark: #324e66;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
}

/* Policy Header */
.policy-header {
    background: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #324e66;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #517d9f;
    transform: translateX(-5px);
}

.back-link i {
    font-size: 1.2rem;
}

.header-logo img {
    height: 150px;
}

/* Policy Hero */
.policy-hero {
    background: linear-gradient(135deg, #517d9f 0%, #416582 50%, #324e66 100%);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.policy-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.hero-icon i {
    font-size: 3rem;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: #e8eef3;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Policy Content */
.policy-content {
    padding: 4rem 0;
}

.content-wrapper {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(50, 78, 102, 0.08);
}

.content-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef3 100%);
    border-left: 4px solid #517d9f;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.content-intro p {
    font-size: 1.1rem;
    color: #324e66;
    margin: 0;
    line-height: 1.7;
}

.content-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8eef3;
}

.content-section:last-of-type {
    border-bottom: none;
}

.content-section h2 {
    color: #324e66;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.content-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #517d9f 0%, #416582 100%);
    border-radius: 3px;
}

.content-section h3 {
    color: #416582;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.content-section p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.content-section li strong {
    color: #324e66;
}

.highlight-box {
    background: linear-gradient(135deg, #fff4e6 0%, #fff8f0 100%);
    border-left: 4px solid #517d9f;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-box i {
    color: #517d9f;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.highlight-box p {
    margin: 0;
    color: #324e66;
}

.content-note {
    background: linear-gradient(135deg, #517d9f 0%, #416582 50%, #324e66 100%);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 3rem;
}

.content-note i {
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.content-note p {
    color: white;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Policy Footer */
.policy-footer {
    background: #324e66;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #b0c4d4;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a.active {
    color: white;
}

.footer-links .separator {
    color: #b0c4d4;
}

.copyright {
    text-align: center;
    color: #b0c4d4;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-hero {
        padding: 3rem 0 2rem;
    }
    
    .hero-icon {
        width: 80px;
        height: 80px;
    }
    
    .hero-icon i {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .content-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section h3 {
        font-size: 1.2rem;
    }
    
    .content-intro,
    .highlight-box {
        padding: 1.25rem;
    }
    
    .content-note {
        padding: 1.5rem;
        flex-direction: column;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .back-link {
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .content-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-links .separator {
        display: none;
    }
}
