#hero {
    padding: 50px 0 0;
}

#hero .content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

#hero .content h1 {
    color: #333;
    font-family: Inter;
    font-size: 47px;
    font-style: normal;
    font-weight: 700;
    line-height: 54px; /* 114.894% */
    letter-spacing: 0.47px;
}

#hero .content p {
    color: #585858;
    font-family: Inter;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 141.176% */
}

#brands {
    padding: 70px 0;
}

#brands .content {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
}

#brands .item {
    display: block;
    height: 100%;
    color: #1A1A1A;
    text-align: center;
    text-decoration: none;
}

#brands .image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 30px;
    background: #F7F7F7;
    border-radius: 5px;
    margin-bottom: 20px;
}

#brands .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#brands .item h3 {
    color: #1A1A1A;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    margin: 0;
}

@media (max-width: 767px) {
    #brands {
        padding: 50px 0;
    }

    #hero{
        padding: 50px 0 0;
    }

    #hero .content h1 {
        font-size: 36px;
        line-height: 42px;
    }

    #brands .image {
        padding: 20px;
    }

    #brands .item h3 {
        font-size: 18px;
        line-height: 24px;
    }
}