.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.content-left, .content-right {
    flex: 1;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.center {
    text-align: center;
}

.label {
    display: inline-block;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

h2 {
    font-size: var(--text-section-title);
    margin-bottom: 25px;
    line-height: 1.1;
}

p {
    font-size: var(--text-body);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 30px;
}

.center p {
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Grid/Flex */
@media (max-width: 992px) {
    .split-layout {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .split-layout.reverse {
        flex-direction: column;
    }
    
    p {
        margin-left: auto;
        margin-right: auto;
    }
}
