.contact-us {
    max-width: 1222px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

.breadcrumb {
    font-size: 12px;
}

.contact-us a {
    text-decoration: none;
}

.contact-us p {
    margin: 0;
}

.contact-us .title {
    font-weight: 600;
    font-size: 24px;
    margin-top: 32px;
}

.contact-us .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 32px;
}

.contact-us .content .content-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 0;
    border-radius: 8px;
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.09);
    transition: transform 0.3s ease;
}

.contact-us .content .content-item:hover {
    transform: translateY(-10px);
}

.contact-us .content .content-item img {
    width: 44px;
}

.contact-us .content .content-item span,
.contact-us .content .content-item p {
    line-height: 1.6;
}

.contact-us .text {
    font-size: 12px;
    margin-top: 5px;
}

.contact-us .content .content-item p {
    font-size: 12px;
}

.contact-us .content-item-box {
    text-align: center;
}

.contact-us .item-link {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    background: #000;
    border-radius: 50px;
    text-align: center;
    width: 160px;
    padding: 9px 0;
    transition: transform 0.3s ease;
}

.contact-us .content-item:hover .item-link {
    background: rgba(0, 0, 0, 0.7);
}

.contact-us .right-icon {
    display: none;
}

.contact-us .foot {
    display: flex;
    align-items: center;
    margin-top: 20px;
    font-size: 14px;
}

.contact-us .foot img {
    width: 20px;
    margin-right: 8px;
}

.contact-us .foot span {
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-us {
        padding: 10px 10px 40px;
    }

    .contact-us .title {
        font-size: 18px;
        text-align: center;
    }

    .contact-us .content {
        gap: 12px;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 16px;
    }

    .contact-us .content .content-item {
        gap: 0;
        padding: 18px;
    }

    .contact-us .content .content-item span {
        font-size: 12px;
        text-align: center;
    }

    .contact-us .text {
        text-align: center;
    }

    .contact-us .grid-1fr {
        grid-template-columns: 1fr;
    }

    .contact-us .grid-1fr .content-item {
        flex-direction: row;
        padding: 16px 10px;
    }

    .contact-us .grid-1fr .content-item img {
        width: 32px;
    }

    .contact-us .grid-1fr .content-item .content-item-box {
        flex: 1;
        text-align: left;
        margin-left: 8px;
    }

    .contact-us .item-link {
        display: none;
    }

    .contact-us .right-icon {
        display: block;
        width: 14px !important;
    }

    .contact-us .foot-text {
        display: flex;
        flex-direction: column;
    }

    .contact-us .foot-text span {
        font-size: 14px;
    }

    .contact-us .foot-text span:last-child {
        font-size: 12px;
    }
}