/* Auxiliary Pages Styles */

/* Mission Content Layout */
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    color: #1e3a8a;
    font-size: 2.25rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.mission-text p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-image {
    position: relative;
}

.mission-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Expertise Content Layout */
.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.expertise-text h2 {
    color: #1e3a8a;
    font-size: 2.25rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.expertise-text p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.expertise-image {
    position: relative;
}

.expertise-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Header Styles */
.aux-header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aux-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1e3a8a;
}

.nav-link.active {
    color: #1e3a8a;
    font-weight: 600;
}

.nav-cta {
    background-color: #1e3a8a;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background-color: #3b82f6;
}

/* Main Content */
.aux-main {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.aux-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.aux-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.aux-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Section Styles */
.aux-section {
    padding: 60px 0;
}

.aux-section.alt-bg {
    background-color: #f8fafc;
}

.aux-section.cta-section {
    background-color: #1e3a8a;
    color: white;
}

.aux-section.cta-section h2 {
    color: white;
}

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

.aux-content-block.text-center {
    text-align: center;
}

.aux-content-block h2 {
    color: #1e3a8a;
    font-size: 2.25rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.aux-content-block h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}

.aux-content-block p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.aux-content-block ul {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 20px;
}

.aux-content-block li {
    margin-bottom: 8px;
}

.aux-content-block strong {
    color: #1e3a8a;
    font-weight: 600;
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.approach-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.approach-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.approach-item h3 {
    color: #1e3a8a;
    font-size: 1.25rem;
    margin-bottom: 15px;
    margin-top: 0;
}

.approach-item p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

/* Expertise Stats */
.expertise-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 40px;
    background: #f8fafc;
    border-radius: 12px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
    color: #1e3a8a;
    font-size: 1.25rem;
    margin-bottom: 15px;
    margin-top: 0;
}

.value-item p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

/* Contact Info */
.contact-info {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    color: #3b82f6;
}

/* CTA Section Overrides */
.cta-section .aux-content-block h2 {
    color: white;
}

.cta-section .aux-content-block p {
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-content,
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-img,
    .expertise-img {
        height: 250px;
    }
    
    .aux-hero h1 {
        font-size: 2.5rem;
    }
    
    .aux-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .aux-nav {
        gap: 20px;
    }
    
    .aux-section {
        padding: 40px 0;
    }
    
    .aux-content-block h2 {
        font-size: 2rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .expertise-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .mission-content,
    .expertise-content {
        gap: 30px;
    }
    
    .mission-img,
    .expertise-img {
        height: 200px;
    }
    
    .aux-hero {
        padding: 60px 0;
    }
    
    .aux-hero h1 {
        font-size: 2rem;
    }
    
    .aux-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .aux-section {
        padding: 30px 0;
    }
    
    .aux-content-block h2 {
        font-size: 1.75rem;
    }
    
    .approach-item,
    .value-item {
        padding: 20px;
    }
    
    .expertise-stats {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .contact-info {
        padding: 20px;
    }
}