.contact-banner {
    position: relative;
    width: 100%;
    margin-top: 80px;
}

.contact-banner>img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    color: var(--color-text-primary);
}

.contact-banner-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.contact-banner-subtitle {
    font-size: 44px;
    margin-bottom: var(--space-lg);
    font-weight: 500;
}

.contact-banner-desc {
    font-size: var(--text-xl);
    opacity: 0.6;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: #6d7280;
    margin: var(--space-md) auto 0;
    border-radius: 2px;
}