/* Auxiliary Pages Styles */
.page-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Content */
.main-content {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Policy Pages */
.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 1rem;
    color: #6b7280;
    font-style: italic;
}

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

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

.policy-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f59e0b;
}

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

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

.policy-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    list-style: none;
}

.policy-section li::before {
    content: "•";
    color: #f59e0b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.policy-section strong {
    color: #1e3a5f;
    font-weight: 600;
}

/* About Us Page */
.mission-section,
.approach-detail,
.differentiators {
    padding: 80px 0;
}

.mission-section {
    background-color: #f9fafb;
}

.differentiators {
    background-color: #ffffff;
}

.approach-detail {
    background-color: #f9fafb;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.content-split.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-split.reverse .content-left {
    order: 2;
}

.content-split.reverse .content-right {
    order: 1;
}

.content-left {
    text-align: center;
}

.content-left h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
}

.large-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.content-left p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.content-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.content-image.team-photo,
.content-image.office-photo {
    height: 350px;
}

/* Differentiators Section */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e3a5f;
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
}

/* Approach Detail */
.approach-points {
    margin-top: 2rem;
}

.approach-point {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid #f59e0b;
    text-align: left;
}

.approach-point h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 0.75rem;
}

.approach-point p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .content-split,
    .content-split.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-split.reverse .content-left,
    .content-split.reverse .content-right {
        order: initial;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .content-image {
        height: 250px;
    }
    
    .content-image.team-photo,
    .content-image.office-photo {
        height: 250px;
    }
}