/* External CSS for Friends of Lake Victoria Section */
.friends-of-lake-victoria {
    background-color: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
}

.friends-of-lake-victoria .container {
    max-width: 1200px;
    margin: 0 auto;
}

.friends-of-lake-victoria .section-title {
    font-size: 36px;
    color: #00b33c;
    margin-bottom: 20px;
}

.friends-of-lake-victoria .section-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.friends-of-lake-victoria .thank-you-note {
    font-size: 16px;
    color: #666;
    margin-top: 40px;
}

/* Team Group Photos Section Styles */
.team-group-photos {
    margin-top: 40px;
    text-align: center;
}

/* Flexbox Grid */
.team-group-photo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adjust gap between photos as needed */
}

.team-group-photo {
    flex: 0 1 calc(33.333% - 20px); /* 3 photos per row with gap adjustment */
    box-sizing: border-box;
}

.team-group-photo img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {

    .team-group-photo {
        flex: 0 1 calc(50% - 20px); /* 2 photos per row */
    }
}

@media (max-width: 768px) {

    .team-group-photo {
        flex: 0 1 calc(100% - 20px); /* 1 photo per row */
    }

    .friends-of-lake-victoria .section-title {
        font-size: 32px;
    }

    .friends-of-lake-victoria .section-description {
        font-size: 14px;
    }

    .friends-of-lake-victoria .thank-you-note {
        font-size: 14px;
    }

}
