/* Auxiliary Pages Styles */

.main-content {
    margin-top: 100px;
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 0;
    background: linear-gradient(135deg, #1B4332 0%, #2D5016 100%);
    color: white;
    border-radius: 12px;
}

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

.page-subtitle {
    font-size: 1.2rem;
    color: #E8D5B7;
    line-height: 1.5;
}

/* About Us Hero Section */
.about-hero-section {
    background-color: #F8F9FA;
    padding: 80px 0;
    margin-bottom: 60px;
    border-radius: 12px;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text-content h2 {
    font-size: 2.5rem;
    color: #1B4332;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-metrics {
    display: flex;
    gap: 30px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.metric-card {
    text-align: center;
    background: white;
    padding: 24px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(27, 67, 50, 0.1);
    min-width: 100px;
    border-left: 4px solid #00C9A7;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1B4332;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.hero-image-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* Mission & Vision Section */
.mission-vision-section {
    background-color: white;
    padding: 80px 0;
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1B4332;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.5;
}

.mission-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-block {
    margin-bottom: 32px;
}

.mission-block h3 {
    font-size: 1.8rem;
    color: #1B4332;
    margin-bottom: 16px;
    font-weight: 600;
}

.mission-block p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.mission-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #F8F9FA;
    border-radius: 8px;
    font-weight: 500;
    color: #1B4332;
}

.mission-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-main-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(27, 67, 50, 0.15);
    object-fit: cover;
}

/* Technology Section */
.technology-section {
    background-color: #F8F9FA;
    padding: 80px 0;
    margin-bottom: 60px;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.tech-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(27, 67, 50, 0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #00C9A7;
}

.tech-card:hover {
    transform: translateY(-5px);
}

.tech-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.tech-card h3 {
    font-size: 1.4rem;
    color: #1B4332;
    margin-bottom: 16px;
    font-weight: 600;
}

.tech-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Capabilities Section */
.capabilities-section {
    background-color: white;
    padding: 80px 0;
    margin-bottom: 60px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.capability-item {
    padding: 30px 24px;
    background: #F8F9FA;
    border-radius: 12px;
    border-left: 4px solid #00C9A7;
    transition: transform 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 67, 50, 0.1);
}

.capability-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.capability-icon {
    flex-shrink: 0;
}

.capability-item h3 {
    font-size: 1.3rem;
    color: #1B4332;
    margin: 0;
    font-weight: 600;
}

.capability-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Standards Coverage Section */
.standards-coverage-section {
    background-color: #F8F9FA;
    padding: 80px 0;
    margin-bottom: 60px;
}

.standards-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.standard-highlight {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(27, 67, 50, 0.1);
    transition: transform 0.3s ease;
}

.standard-highlight:hover {
    transform: translateY(-5px);
}

.standard-logo {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.standard-highlight h3 {
    font-size: 1.4rem;
    color: #1B4332;
    margin-bottom: 16px;
    font-weight: 600;
}

.standard-highlight p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Call to Action Section */
.about-cta-section {
    background: linear-gradient(135deg, #1B4332 0%, #2D5016 100%);
    padding: 80px 0;
    border-radius: 12px;
    color: white;
    text-align: center;
}

.cta-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: #E8D5B7;
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px 20px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #00C9A7;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 1rem;
    color: #E8D5B7;
    font-weight: 500;
}

/* Content Block Styles */
.content-block {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(27, 67, 50, 0.08);
    border-left: 4px solid #00C9A7;
}

.content-block h2 {
    font-size: 2rem;
    color: #1B4332;
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 1.2;
}

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

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #00C9A7;
    color: white;
}

.btn-primary:hover {
    background-color: #00B096;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid #00C9A7;
}

.btn-secondary:hover {
    background-color: #00C9A7;
    transform: translateY(-2px);
}

/* Logo links */
.logo-section a {
    text-decoration: none;
    color: inherit;
}

.logo-section a:hover .brand-name {
    color: #00C9A7;
    transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 20px;
        margin-bottom: 40px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .content-block {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .content-block h2 {
        font-size: 1.6rem;
    }
    
    .main-content {
        margin-top: 80px;
        padding: 20px 0;
    }
    
    .hero-content-wrapper,
    .mission-content,
    .cta-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-text-content h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .mission-block h3 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .hero-metrics {
        justify-content: center;
    }
    
    .mission-features {
        align-items: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .technology-grid,
    .capabilities-grid,
    .standards-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-block h2 {
        font-size: 1.4rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
    
    .hero-text-content h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-metrics {
        gap: 15px;
    }
    
    .metric-card {
        padding: 16px 12px;
        min-width: 80px;
    }
    
    .metric-number {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .cta-buttons {
        gap: 15px;
    }
    
    .about-cta-section {
        padding: 60px 0;
    }
    
    .technology-section,
    .capabilities-section,
    .standards-coverage-section {
        padding: 60px 0;
    }
}