/* ========================
           Секция "Звоните" (Call Banner Section)
       ======================== */
    .call-banner-section {
        background-color: #f2f3f3; /* Светло-серый фон как на макете */
        padding: 5rem 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .call-banner-subtitle {
        color: #c0996b; /* Золотисто-бежевый цвет */
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

    .call-banner-title {
        color: #000000;
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 700;
        margin-bottom: 0.5rem;
        line-height: 1.1;
    }

    .call-banner-phone {
        font-size: clamp(3rem, 6vw, 4.5rem);
        font-weight: 700;
        line-height: 1.1;
        color: #2b2b2b;
        text-decoration: none;
    }

    .call-banner-phone small {
        font-size: inherit;
        font-weight: inherit;
        line-height: inherit;
        color: inherit;
    }

    .call-banner-phone small.phone-prefix-part {
        font-size: 0.5em;
        vertical-align: baseline;
    }

    .call-banner-phone:hover {
        color: #2b2b2b;
    }

    /* Адаптив для мобильных устройств */
    @media (max-width: 768px) {
        .call-banner-section {
            padding: 4rem 1rem;
        }
        .call-banner-subtitle {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
    }

/* ========================
