.cta-contact {
    width: 100%;
    padding: 80px 0;
    background-color: #F8F9FA;
    margin: 0 auto;
}

.cta-contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-contact__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-contact__heading {
    font-size: clamp(32px, 4vw, 48px);
    font-family: 'Urbano', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 1.5rem;
}

.cta-contact__description {
    font-size: clamp(16px, 2vw, 20px);
    font-family: 'Urbano', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    margin-bottom: 2rem;
}

.cta-contact__description a {
    color: #0970B8;
    text-decoration: none;
    border-bottom: 1px solid #0970B8;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.cta-contact__description a:hover {
    color: #F7931D;
    border-color: #F7931D;
}

.cta-contact__contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.cta-contact__phone,
.cta-contact__email {
    font-size: clamp(18px, 2.5vw, 24px);
    font-family: 'Urbano', sans-serif;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-contact__phone:hover,
.cta-contact__email:hover {
    color: #0970B8;
}

.cta-contact__tagline {
    font-size: clamp(14px, 1.8vw, 18px);
    font-family: 'Urbano', sans-serif;
    font-weight: 400;
    color: #000;
    margin-bottom: 2.5rem;
    margin-top: 0;
}

.cta-contact__button-wrapper {
    display: flex;
    justify-content: center;
}

.cta-contact__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: clamp(50px, 10vh, 70px);
    padding: 0 clamp(15px, 2vw, 25px);
    background-color: #0970B8;
    color: #fff !important;
    font-family: 'Urbano', sans-serif;
    font-size: clamp(14px, 1.5vw, 25px);
    font-weight: 400;
    text-decoration: none;
    border-radius: 100px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-sizing: border-box;
}

.cta-contact__button:hover {
    background-color: #fff;
    border: 3px solid #F7931D;
    color: #000 !important;
}

.cta-contact__button-arrow {
    margin-left: clamp(5px, 1vw, 10px);
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.cta-contact__arrow-svg {
    fill: #F7931D;
    transition: fill 0.3s ease;
}

.cta-contact__button:hover .cta-contact__button-arrow {
    transform: translateX(4px);
}

.cta-contact__button:hover .cta-contact__arrow-svg {
    fill: #F7931D;
}

/* Tablet Styles */
@media screen and (max-width: 768px) {
    .cta-contact {
        padding: 60px 0;
    }

    .cta-contact__container {
        padding: 0 16px;
    }

    .cta-contact__contact-info {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .cta-contact__button {
        height: clamp(45px, 8vh, 60px);
        padding: 0 clamp(12px, 1.8vw, 20px);
        font-size: clamp(13px, 1.4vw, 20px);
        gap: 0.4rem;
    }

    .cta-contact__button-arrow {
        margin-left: clamp(4px, 0.8vw, 8px);
    }
}

/* Mobile Styles */
@media screen and (max-width: 480px) {
    .cta-contact {
        padding: 40px 0;
    }

    .cta-contact__heading {
        margin-bottom: 1rem;
    }

    .cta-contact__description {
        margin-bottom: 1.5rem;
    }

    .cta-contact__contact-info {
        margin-bottom: 1.5rem;
    }

    .cta-contact__tagline {
        margin-bottom: 2rem;
    }

    .cta-contact__button {
        height: clamp(40px, 7vh, 55px);
        padding: 0 clamp(10px, 1.5vw, 18px);
        font-size: clamp(12px, 1.3vw, 18px);
        width: 100%;
        max-width: 280px;
        gap: 0.3rem;
    }

    .cta-contact__button-arrow {
        margin-left: clamp(3px, 0.6vw, 6px);
    }
}