/* About Us Page Specific Styles */

/* About Hero Section */
.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.about-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.about-hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.stat-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 100, 250, 0.15);
}

.stat-icon {
    margin-bottom: 24px;
}

.stat-icon img {
    width: 48px;
    height: 48px;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.stat-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.mission-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.mission-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mission-feature {
    display: flex;
    gap: 16px;
}

.mission-feature-icon img {
    width: 24px;
    height: 24px;
    margin-top: 4px;
}

.mission-feature-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.mission-feature-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.mission-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 100, 250, 0.15);
}

.value-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.value-icon img {
    width: 56px;
    height: 56px;
}

.value-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Awards About Section */
.awards-about-section {
    padding: 80px 0;
    background: white;
}

.awards-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.awards-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.awards-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.awards-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.award-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
}

.award-highlight img {
    width: 24px;
    height: 24px;
}

.award-highlight span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.awards-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.awards-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Technology Section */
.technology-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.technology-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.technology-image img {
    width: 100%;
    height: auto;
    display: block;
}

.technology-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.technology-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.technology-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.technology-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.technology-feature p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 48px;
    align-items: center;
}

.team-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.team-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.team-stat {
    text-align: center;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
}

.team-stat h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.team-stat p {
    font-size: 1rem;
    color: var(--text-gray);
}

/* Global Section */
.global-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.global-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.global-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.global-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 100, 250, 0.15);
}

.global-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.global-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 4px;
}

/* Sponsorship Section */
.sponsorship-section {
    padding: 80px 0;
    background: white;
}

.sponsorship-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sponsorship-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.sponsorship-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.sponsorship-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sponsorship-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer Note */
.footer-note {
    padding: 40px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.note-text {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 8px;
}

/* Active Nav Link */
.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero-content,
    .mission-content,
    .awards-content,
    .technology-content,
    .sponsorship-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .technology-content {
        direction: ltr;
    }

    .technology-image {
        order: 1;
    }

    .technology-text {
        order: 2;
    }

    .team-content {
        grid-template-columns: 1fr;
    }

    .about-hero-text h1 {
        font-size: 2.5rem;
    }

    .mission-text h2,
    .awards-text h2,
    .technology-text h2,
    .sponsorship-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }

    .about-hero-text h1 {
        font-size: 2rem;
    }

    .about-hero-subtitle,
    .mission-intro,
    .technology-intro {
        font-size: 1rem;
    }

    .stats-section,
    .mission-section,
    .values-section,
    .awards-about-section,
    .technology-section,
    .team-section,
    .global-section,
    .sponsorship-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .global-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-cta {
        flex-direction: column;
    }

    .about-hero-cta .btn-large {
        width: 100%;
        text-align: center;
    }

    .stat-card {
        padding: 32px 24px;
    }

    .stat-content h3 {
        font-size: 1.75rem;
    }

    .team-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .team-stat h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-text h1 {
        font-size: 1.75rem;
    }

    .mission-text h2,
    .awards-text h2,
    .technology-text h2,
    .sponsorship-text h2 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .team-stats {
        flex-direction: column;
    }
}

