/* .paragraph--type--contact-banner {
    padding: 60px 0;
    margin: 40px 0;
} */

.contact-banner-wrapper {
    background-color: #42A5F5;
    background-image: url('../images/noise-texture.png'); /* Fallback if noise texture exists */
    background-blend-mode: overlay;
    border-radius: 15px;
    padding: 60px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Simple noise texture overlay if image doesn't exist */
.contact-banner-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
    /* Optional: use a CSS noise generator or similar */
}

.contact-banner-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.2;
}

.contact-banner-content .accent-text {
    color: rgba(0, 0, 0, 0.4); /* Muted/Greyish color for "Your Brand." */
}

.contact-banner-cta .btn-cta {
    background-color: #ffffff;
    color: #42A5F5;
    text-decoration: none;
    padding: 15px 30px 15px 15px; /* More padding on right for the text, left for icon */
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-banner-cta .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-banner-cta .btn-cta .icon-circle {
    background-color: #42A5F5;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-banner-cta .btn-cta .icon-circle svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 991px) {
    .contact-banner-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px;
    }
    
    .contact-banner-content h2 {
        font-size: 32px;
    }
}
