/* About Us Section Styles */
.about-us-intro {
    padding: 0;
    background-color: wheat;
}

.intro-container {
    display: flex;
    width: 100%;
    margin: 0;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-content {
    flex: 1;
    padding: 120px;
}

.intro-content h2 {
    font-family: "Archivo Black", sans-serif;
    color: #006e55;
    font-size: 3rem;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #005a43;
    font-weight: 0;
    font-family: "Arvo", serif;
    font-weight: 500;
    font-style: italic;
    line-height: 40px;
}

/* Our Team Section Styles */
.our-team-section {
    background-color: #006e55;
    padding: 80px 120px;
    color: white;
}

.team-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-left {
    flex: 1;
}

.team-left h2 {
    font-family: "Archivo Black", sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.team-left p {
    font-family: "Arvo", serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: white;
}

.learn-more-btn {
    background-color: white;
    color: #006e55;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-family: "Archivo Black", sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #f0f0f0;
}

.team-right {
    flex: 1;
    text-align: center;
}

.team-right h2 {
    font-family: "Archivo Black", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: white;
}

.founders-grid {
    display: flex;
    gap: 40px;
}

.founder-card {
    text-align: center;
}

.founder-card img {
    width: 350px;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    border: 3px solid white;
    margin-bottom: 15px;
}

.founder-card h3 {
    font-family: "Archivo Black", sans-serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
}

.founder-card p {
    font-family: "Arvo", serif;
    font-size: 1rem;
    color: #e0e0e0;
}

/* Sponsors Section Styles */
.sponsors-section {
    padding: 20px 80px;
    background-color: #ffffff;
    text-align: center;
}

.sponsors-section h2 {
    font-family: "Archivo Black", sans-serif;
    font-size: 3rem;
    color: #006e55;
    margin-bottom: 60px;
}

.sponsors-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sponsors-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.sponsors-row img {
    height: 220px;
    width: auto;
    object-fit: contain;
}

.sponsors-row img.long-sponsor {
    height: auto;
    max-width: 80%;
    width: 50%;
}

@media (max-width: 768px) {
    .about-us-intro{
        padding: 0;
        background-color: wheat;
    }
    .intro-container {
        flex-direction: column;
        text-align: center;
    }

    .intro-content {
        padding: 40px 20px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        padding: 40px 20px;
    }

    .our-team-section {
        padding: 40px 20px;
    }

    .team-container {
        flex-direction: column;
        text-align: center;
    }

    .team-left {
        margin-bottom: 0px;
    }

    .team-right {
        margin-top: 0px;
    }

    .founders-grid {
        flex-direction: column;
        gap: 40px;
    }

    .sponsors-section {
        padding: 20px 20px;
    }

    .sponsors-container {
        gap: 20px;
    }

    .sponsors-row {
        flex-direction: column;
        gap: 20px;
    }

}