/* Policy Pages Styling */

.page-header {
    padding: 130px 0 60px;
    background: linear-gradient(to right, rgba(16, 24, 45, 0.98), rgba(40, 58, 90, 0.95)), url('../../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.page-content {
    padding: 60px 0;
    background: #f5f8fc;
}

.policy-container {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
}

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

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: #1a202c;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #edf2f7;
}

.policy-section h3 {
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.policy-section p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul, .policy-section ol {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-section li {
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.6;
}

.policy-section strong {
    color: #2d3748;
    font-weight: 600;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.policy-section a:hover {
    text-decoration: underline;
    color: #4361ee;
}

.contact-details {
    background: #f8fafc;
    padding: 20px 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 15px;
}

.contact-details p {
    margin-bottom: 8px;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .policy-container {
        padding: 30px 20px;
    }
    
    .policy-section h2 {
        font-size: 1.4rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
}
