/* Section spacing and headers */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header span {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: white;
    color: var(--primary);
    border-radius: var(--border-radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-cyan);
    border-radius: var(--border-radius-full);
}

.section-header p {
    color: var(--gray);
    max-width: 700px;
    margin: 1rem auto 0;
    font-size: 1.1rem;
} 