.page-section:nth-child(2) {
    background: var(--secondary-color);
}

.page-section:nth-child(3) {
    background: var(--accent-color-light);
}

.page-section:nth-child(5) {
    background: var(--secondary-color);
}

.page-section:nth-child(6) {
    background: var(--accent-color-light);
}

.page-section {
    padding: 3rem 0;
}

.page-section-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.25;
    color: var(--primary-color);
    margin: 0;
}

.section-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-body p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .page-section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: clamp(1.4rem, 3vw, 1.8rem);
    }

    .section-body p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}
