.title-section {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    position: relative;
}

.title-section::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #000;
    margin-top: 18px;
}

.hero-mobile {
    position: relative;
}

.img-contact_us {
    max-height: 700px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.1)
    );
}

.hero-content {
    position: absolute;
    bottom: 24px;
    left: 20px;
    right: 20px;
    color: #fff;
    z-index: 2;
}

.hero-content p {
    margin-bottom: 8px;
    line-height: 1.4;
}

.about-us__info {
    margin-top: 120px;
    padding-top: 60px;
    border-top: 1px solid #eaeaea;
}

.about-us__info .col-md-4 {
    text-align: center;
    padding: 20px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-us__info .col-md-4 p {
    flex-grow: 1;
}

@media (min-width: 768px) {
    .about-us__info .col-md-4:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: #e6e6e6;
    }
}

.wrapper-icon {
    background: #0000000D;
    width: 120px;
    height: 120px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: 0.3s ease;
}

.wrapper-icon img {
    width: 42px;
}

.about-us__info .col-md-4:hover .wrapper-icon {
    background: #000;
    transform: translateY(-6px);
}

.about-us__info .col-md-4:hover img {
    filter: invert(1);
}

.about-us__info h2 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 20px;
}

.about-us__info p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 767px) {

    .title-section {
        font-size: 28px;
        color: #fff;
        margin-bottom: 12px;
    }

    .title-section::after {
        background: #fff;
        width: 60px;
        height: 2px;
    }

    .img-contact_us {
        border-radius: 0;
    }

    .about-us__info {
        margin-top: 80px;
        padding-top: 40px;
    }
}