/* Auxiliary Pages Styles */

.last-updated {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f3f4f6;
    border-radius: 8px;
    border-left: 4px solid #4f46e5;
}

.page-header {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

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

.page-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.main-content {
    padding: 4rem 0;
    min-height: 60vh;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.content-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.content-block p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.content-block em {
    color: #6b7280;
    font-style: italic;
    display: block;
    text-align: center;
    padding: 2rem;
    background: #f3f4f6;
    border-radius: 8px;
    border-left: 4px solid #4f46e5;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.expertise-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.expertise-item p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0;
}

.expertise-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.centered {
    text-align: center;
}

.mission-content,
.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

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

.philosophy-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.philosophy-illustration {
    display: flex;
    justify-content: center;
}

.methodology-illustration {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .content-block h2 {
        font-size: 1.75rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-content,
    .impact-content,
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
    
    .mission-image img,
    .impact-image img {
        height: 200px;
    }
}