.contacts-section {
    background-color: #f5f5f5;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contacts-section::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 100%;
    background: url('../img/background-pattern-2.png') center right/contain no-repeat;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.contacts__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 2vw;
}

.contacts__info {
    max-width: 700px;
}

.contacts__item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #333333;
}

.contacts__label {
    font-weight: 500;
    margin-right: 8px;
    color: #333333;
}

.contacts__value {
    color: #333333;
}

.contacts__link {
    color: #1a5c9e;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.contacts__link:hover {
    opacity: 0.7;
}

@media (max-width: 430px) {
    .contacts-section {
        min-height: 0;
        display: block;
    }

    .contacts-section::after {
        display: none;
    }

    .contacts__container {
        padding: 32px 16px 40px;
    }

    .contacts__item {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .contacts__label {
        margin-right: 6px;
    }
}