/* About Hero Section */
.about-hero {
    background: #0d58c6;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.about-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 0;
    }
    
    .about-hero__title {
        font-size: 2rem;
    }
    
    .about-hero__subtitle {
        font-size: 1.125rem;
    }
} 
