/* Common Section Styles */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

section h2 {
    font-size: 3em;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 100px;
    color: var(--text-light);
    text-shadow: 0 0 15px var(--primary-glow);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

section h3 {
    font-size: 3em;
    text-align: match-parent;
    margin-top: 20px;
    margin-bottom: 50px;
    color: var(--text-light);
    text-shadow: 0 0 15px var(--primary-glow);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

/* Responsive */
@media (max-width: 992px) {
    section h2 {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    section h2 {
        font-size: 2em;
        margin-bottom: var(--spacing-lg);
    }
}