.split-container {
    display: flex;
    min-height: 600px;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.split-half {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2.5rem 3.5rem;
    position: relative;
    z-index: 10;
}

.half-realestate {
    background-color: #1e1c18;
    border-right: 1px solid #2a2824;
}

.half-it {
    background-color: #1c1a22;
    border-left: 1px solid #262430;
}

.split-divider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, 
        rgba(196, 154, 43, 0.35) 0%, 
        rgba(255,255,255,0.5) 50%, 
        rgba(180, 77, 255, 0.35) 100%);
    z-index: 30;
    pointer-events: none;
    transform: translateX(-50%);
}

.split-half .top-spacer {
    height: clamp(160px, 25vw, 380px);
    width: 100%;
    flex-shrink: 0;
}

.split-half .section-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid;
    text-align: center;
    width: 100%;
}

.half-realestate .section-title {
    color: #c49a2b;
    border-bottom-color: rgba(196, 154, 43, 0.3);
}

.half-it .section-title {
    color: #b44dff;
    border-bottom-color: rgba(180, 77, 255, 0.3);
}