/* hero-section.css - Styles for hero/lead sections */
.hero-section,
.hero-header {
    padding: 60px 20px 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-section h1,
.hero-header h1 {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.1;
    color: #667eea;
}

.hero-section .lead-text,
.hero-header .subtitle {
    font-size: 22px;
    color: #4a5568;
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 900px) {

    .hero-section h1,
    .hero-header h1 {
        font-size: 36px;
    }

    .hero-section .lead-text,
    .hero-header .subtitle {
        font-size: 18px;
    }
}