/* Hero */
.about-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.about-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

/* Feature icons */
.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Team */
.team-img {
    border-radius: 1rem;
    overflow: hidden;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.team-img:hover {
    filter: grayscale(0%);
}

/* Mission */
.mission {
    background-color: #1c1c1c;
    color: white;
    text-align: center;
}