.contact-banner {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(
        to right,
        #151515 0%,
        #151515 50%,
        transparent 100%,
        transparent 100%
    );
    overflow: hidden;
}

.contact-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../../images/contact-banner.jpg') no-repeat center 40%;
    background-size: cover;
    z-index: 0;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.contact-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin-left: 120px;
    text-align: left;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
}

.contact-banner-text {
    color: #fff;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 400px;
}

.contact-banner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #00B2B8;
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s;
    min-width: 200px;
}

.contact-banner-button:hover {
    background: #00999e;
    transform: translateY(-2px);
}

.contact-banner-arrow {
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    position: relative;
    top: -1px;
}

@media (max-width: 768px) {
    .contact-banner {
        padding: 40px 20px;
        background: #151515;
    }

    .contact-banner::after,
    .contact-banner::before {
        display: none;
    }

    .contact-banner-inner {
        width: 100%;
        margin-left: 0;
        align-items: center;
        text-align: center;
    }

    .contact-banner-text {
        font-size: 14px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .contact-banner-button {
        width: 100%;
        max-width: 300px;
        padding: 12px 20px;
        font-size: 16px;
        min-width: auto;
    }

    .contact-banner-arrow {
        font-size: 18px;
    }
}

@media (max-width: 390px) {
    .contact-banner {
        padding: 30px 15px;
    }

    .contact-banner-text {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .contact-banner-button {
        padding: 10px 15px;
        font-size: 14px;
    }

    .contact-banner-arrow {
        font-size: 16px;
    }
} 