.about-section {
    padding: 8rem 5%;
    background: var(--bg-surface);
    display: flex;
    justify-content: center;
}

.about-container {
    max-width: 800px;
    text-align: center;
}

.about-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-container p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* --- THE ABOUT KICKER --- */
.about-kicker {
    display: block;
    color: #C89B3C; /* Exact match to your Hero full stop */
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.25em; /* Heavily tracked out for a premium feel */
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* --- THE ARCHITECTURAL ANCHOR LINE --- */
.about-text-wrapper {
    border-left: 2px solid #C89B3C; /* Exact match to your Hero full stop */
    padding-left: 2.5rem; /* Pushes the text away from the line */
    margin-top: 1rem;
}

/* Responsive adjustment for mobile screens */
@media (max-width: 768px) {
    .about-text-wrapper {
        padding-left: 1.5rem;
    }
}