/* Section Module */

.section {
    padding: 5rem var(--spacing-md);
}

@media (max-width: 480px) {
    .section {
        padding: 2.5rem var(--spacing-sm);
    }
}

.section-alt {
    background-color: var(--color-bg-light);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

@media (max-width: 768px) {
    .section {
        padding: 3rem var(--spacing-md);
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
}

