/* Hero Section Component */
.hero-section {
    padding: 64px 0;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #e5e7eb;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 24px 0;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #374151;
    margin: 0 0 16px 0;
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 48px 0;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 14px;
    }
}

/* Large screens */
@media (min-width: 1024px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 40px;
        margin-bottom: 32px;
    }
    
    .hero-subtitle {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 18px;
    }
} 