.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    margin-top: 5.625rem;
    gap: 2rem;
    width: 100vw;
    max-width: 100vw;
}

.hero-title {
    font-family: 'Finlandica', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    color: var(--white);
    text-align: center;
}


section {
    width: 80vw;
    max-width: 1200px;
    margin: 8rem auto;
}


.about-section {
    text-align: center;
}

.about-image {
    width: 80vw;
    max-width: 1200px;
    margin: 4rem auto;
}

.about-img {
    width: 100%;
    border-radius: 15px;
    aspect-ratio: 16 / 8;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.section-title {
    font-family: 'Finlandica', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: var(--black);
    text-align: center;
}

.who-we-are-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.who-we-are-subtitle {
    font-family: 'Figtree', Arial, sans-serif;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.who-we-are-image {
    width: 80vw;
    max-width: 1200px;
    margin: 2rem auto;
}

.who-we-are-img {
    width: 100%;
    border-radius: 15px;
    aspect-ratio: 16 / 8;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.vorstand-title {
    margin-bottom: 5vh;
}

.vorstand-members {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    gap: 2rem;
}

.vorstand-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 250px;
    border-radius: 10%;
    object-fit: cover;
    margin-bottom: 1rem;
}


.our-story {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    justify-content: space-between;
}


.our-story-img {
    width: 35vw;
    max-width: 400px;
    min-width: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.our-story-text-container {
    width: 40vw;
    margin-left: 2rem;
}

.our-story-title {
    text-align: left;
    margin-bottom: 20px;
}


@media screen and (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-image,
    .who-we-are-image {
        width: 80vw;
    }

    .vorstand-members {
        grid-template-columns: 1fr;
    }

    .our-story {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .our-story-image,
    .our-story-img,
    .our-story-text-container {
        width: 80vw;
        margin-left: 0;
    }

    .our-story-img {
        width: 80vw;
        max-width: 100%;
        min-width: 300px;
        object-fit: cover;
        border-radius: 15px;
    }
    
}