.about-us-header {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    min-height: 900px;
    padding: 130px 200px;
    color: #fff;
    background-size: cover;
    background-position: center;
}
  
.about-us-header__overlay {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.85) 100%);
}
  
.about-us-header__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: auto;
    /* width: 100%; */
    gap: 4rem;
}
  
.about-us-header__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 70%;
    gap: 1em;
}
  
.about-us-header__title {
    font-weight: 600;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0;
}
  
.about-us-header__text {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0;
}
  
.about-us-header__stats {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 30%;
    gap: 2rem;
}

.about-us-header__stat { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}
  
.about-us-header__stat-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #fff;
}
  
.about-us-header__stat-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #fff;
}
  
@media (max-width: 1024px) { 
    .about-us-header__inner {
        flex-direction: column;
        align-items: center;
    }

    .about-us-header__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 1em;
    }

    .about-us-header__title {
        font-size: 44px;
        text-align: center;
    }

    .about-us-header__text {
        text-align: center;
    }

    .about-us-header__stats {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        width: 100%; 
        gap: 2rem;
    }

    .about-us-header__stat {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 1em;
    }
}

@media (max-width: 768px) {
    .about-us-header {
        align-items: center;
        justify-content: center;
        padding: 30px;
    }

    .about-us-header__title {
        font-size: 44px;
    }

    .about-us-header__stat-text {
        text-align: center;
    }
}