/* Hero Section Responsive Styles */
@media (max-width: 768px) {
    .hero-heading {
        font-size: 1.5rem;
    }
    
    .hero-subtext {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 0.5rem;
        min-height: 50vh;
    }
    
    .hero-heading {
        font-size: 1.3rem;
    }
    
    .hero-subtext {
        font-size: 0.85rem;
    }
    
    .logo-image {
        width: 60px;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}
