/* About Hero Section */
    .about-hero {
        padding: 10rem 2rem 4rem;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .about-hero h1 {
        font-size: 3.2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .about-hero span.highlight {
        color: #17ef97;
    }

    .about-hero p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto 2rem;
        color: #f0f0f0;
    }

    /* Mission Section */
    .mission-section {
        padding: 4rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 3rem;
        align-items: center;
    }

    .mission-text {
        flex: 1;
    }

    .mission-text h2 {
        font-size: 2.4rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 1rem;
    }

    .mission-text h2::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 80px;
        height: 3px;
        background: #17ef97;
    }

    .mission-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        color: #e0e0e0;
    }

    .mission-image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mission-image img {
        width: 100%;
        max-width: 500px;
        height: auto;
        border-radius: 15px;
        transition: transform 0.3s ease;
    }

    .mission-image:hover img {
        transform: scale(1.03);
    }

    /* Stats Section */
    .stats-section {
        padding: 4rem 2rem;
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('stats-bg.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .stats-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .stat-card {
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid #333;
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-10px);
        border-color: #17ef97;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 700;
        color: #17ef97;
        margin-bottom: 1rem;
    }

    .stat-label {
        font-size: 1.1rem;
        color: #e0e0e0;
    }

    /* Values Section */
    .values-section {
        padding: 6rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .values-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .values-header h2 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .values-header p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
        color: #e0e0e0;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .value-card {
        background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
        border-radius: 15px;
        padding: 2.5rem;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #222;
        height: 100%;
    }

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(23, 239, 151, 0.1);
        border-color: #17ef97;
    }

    .value-icon {
        background: rgba(23, 239, 151, 0.1);
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .value-icon img {
        width: 40px;
        height: 40px;
    }

    .value-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #fff;
    }

    .value-card p {
        color: #e0e0e0;
    }

    /* Team Section */
    .team-section {
        padding: 6rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .team-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .team-header h2 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .team-header p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
        color: #e0e0e0;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .team-card {
        background: #111;
        border-radius: 15px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(23, 239, 151, 0.1);
    }

    .team-image {
        height: 300px;
        overflow: hidden;
    }

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .team-card:hover .team-image img {
        transform: scale(1.05);
    }

    .team-info {
        padding: 1.5rem;
    }

    .team-info h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .team-info span {
        color: #17ef97;
        font-size: 1rem;
        display: block;
        margin-bottom: 1rem;
    }

    .team-info p {
        color: #e0e0e0;
        font-size: 0.95rem;
    }

    .team-social {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .team-social a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 36px;
        height: 36px;
        background: #222;
        border-radius: 50%;
        transition: background 0.3s ease;
    }

    .team-social a:hover {
        background: #17ef97;
    }

    .team-social img {
        width: 18px;
        height: 18px;
    }

    /* Timeline Section */
    .timeline-section {
        padding: 6rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .timeline-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .timeline-header h2 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .timeline-header p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
        color: #e0e0e0;
    }

    .timeline {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
    }

    .timeline::after {
        content: '';
        position: absolute;
        width: 2px;
        background-color: #333;
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -1px;
    }

    .timeline-item {
        padding: 0 2rem 2rem;
        position: relative;
        width: 50%;
    }

    .timeline-item::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        background-color: #17ef97;
        border-radius: 50%;
        top: 0;
        right: -10px;
        z-index: 1;
    }

    .timeline-item:nth-child(even) {
        left: 50%;
    }

    .timeline-item:nth-child(even)::after {
        left: -10px;
    }

    .timeline-content {
        background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
        border-radius: 15px;
        padding: 1.5rem;
        position: relative;
        border: 1px solid #222;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .timeline-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(23, 239, 151, 0.1);
        border-color: #17ef97;
    }

    .timeline-year {
        display: inline-block;
        padding: 0.3rem 0.8rem;
        background: rgba(23, 239, 151, 0.1);
        color: #17ef97;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .timeline-content h3 {
        margin-bottom: 0.8rem;
        font-size: 1.3rem;
    }

    .timeline-content p {
        color: #e0e0e0;
        font-size: 0.95rem;
    }

    /* Call to Action Section */
    .cta-section {
        padding: 6rem 2rem;
        background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('cta-bg.jpg');
        background-size: cover;
        background-position: center;
        text-align: center;
    }

    .cta-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .cta-container h2 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .cta-container p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        color: #e0e0e0;
    }

    .cta-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
    }

    .cta-btn {
        display: inline-block;
        padding: 0.9rem 2.2rem;
        background: #17ef97;
        color: #000;
        text-decoration: none;
        border-radius: 25px;
        transition: transform 0.3s ease;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .cta-btn:hover {
        transform: scale(1.05);
    }

    .cta-btn.secondary {
        background: transparent;
        border: 2px solid #17ef97;
        color: #17ef97;
    }

    /* Footer */

    .footer-logo a {
        font-size: 2rem;
        margin-bottom: 1.2rem;
        display: inline-block;
        text-decoration: none;
        color: #fff;
    }

    /* Mobile Responsive */
    @media (max-width: 992px) {
        .mission-section {
            flex-direction: column;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .values-grid, .team-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .timeline::after {
            left: 31px;
        }

        .timeline-item {
            width: 100%;
            padding-left: 70px;
            padding-right: 25px;
        }

        .timeline-item::after {
            left: 21px;
        }

        .timeline-item:nth-child(even) {
            left: 0;
        }
    }

    @media (max-width: 768px) {

        .stats-grid, .values-grid, .team-grid {
            grid-template-columns: 1fr;
        }

        .cta-buttons {
            flex-direction: column;
            gap: 1rem;
        }
    }