/* Auxiliary Pages Styles */

.page-main {
    min-height: calc(100vh - 200px);
    padding: var(--spacing-8) 0;
    background: var(--white);
}

.page-header {
    text-align: center;
    margin-bottom: var(--spacing-8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-3);
    line-height: var(--line-height-heading);
}

.page-header p {
    font-size: 1.25rem;
    color: var(--charcoal);
}

.content-sections {
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: var(--spacing-8);
}

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

.content-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-4);
    line-height: var(--line-height-heading);
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-3);
    line-height: var(--line-height-heading);
}

.content-section p {
    font-size: 1.125rem;
    color: var(--charcoal);
    margin-bottom: var(--spacing-4);
    line-height: var(--line-height-body);
}

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

.content-section ul {
    margin-left: var(--spacing-3);
    margin-bottom: var(--spacing-4);
}

.content-section li {
    color: var(--charcoal);
    margin-bottom: var(--spacing-1);
    line-height: var(--line-height-body);
}

/* Policy Placeholder Styles */
.policy-placeholder {
    background: var(--ivory);
    padding: var(--spacing-6);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--electric-lime);
    margin: var(--spacing-5) 0;
}

.policy-placeholder p {
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: var(--spacing-2);
}

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

/* About Page Specific Styles */
.mission-content,
.expertise-content,
.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-8);
    align-items: center;
    margin-bottom: var(--spacing-8);
}

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

.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.expertise-diagram,
.workflow-svg {
    width: 100%;
    height: auto;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-3);
    box-shadow: var(--shadow-md);
}

.approach-visual-section {
    text-align: center;
    margin-top: var(--spacing-8);
}

.approach-visual-section h2 {
    margin-bottom: var(--spacing-6);
}

.training-workflow {
    background: var(--ivory);
    padding: var(--spacing-5);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.125rem;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .content-section h3 {
        font-size: 1.25rem;
    }
    
    .policy-placeholder {
        padding: var(--spacing-4);
    }
    
    .mission-content,
    .expertise-content,
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-5);
    }
    
    .about-image {
        height: 250px;
    }
    
    .training-workflow {
        padding: var(--spacing-3);
    }
}