/* Policy Pages Styles */

/* Page Header */
.page-header {
    background-color: var(--primary-dark);
    padding: 8rem 0 4rem;
    position: relative;
    text-align: center;
    color: white;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--primary-dark), transparent);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

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

.content-wrapper {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 2.5rem;
}

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

.policy-section h2 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 0.75rem;
}

.policy-section h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1rem;
}

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

.policy-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #444;
}

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

.policy-section a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* Contact Details */
.contact-details {
    background-color: rgba(0, 0, 0, 0.02);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

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

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .content-wrapper {
        padding: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .content-wrapper {
        padding: 2rem;
    }
    
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2.25rem;
    }
    
    .policy-section h2 {
        font-size: 1.4rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 576px) {
    .content-wrapper {
        padding: 1.5rem;
        border-radius: 8px;
    }
    
    .page-header {
        padding: 5rem 0 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .policy-section {
        margin-bottom: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.2rem;
    }
    
    .policy-section h3 {
        font-size: 1.1rem;
    }
} 