/* 
 * Hero Section Enhancement
 * Updated heading size and button styling
 */

/* Larger heading size for hero section */
.hero-content h1 {
    font-size: 4.2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    font-weight: 700 !important;
}

/* Center the contact button */
.hero-buttons {
    display: flex !important;
    justify-content: center !important;
    margin-top: 35px !important;
}

.hero-buttons .btn {
    min-width: 180px !important;
    font-size: 1.1rem !important;
    padding: 12px 25px !important;
}

/* Responsive adjustments */
@media only screen and (max-width: 991px) {
    .hero-content h1 {
        font-size: 3.5rem !important;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.8rem !important;
    }
    
    .hero-buttons .btn {
        min-width: 160px !important;
        font-size: 1rem !important;
    }
}

@media only screen and (max-width: 575px) {
    .hero-content h1 {
        font-size: 2.2rem !important;
    }
    
    .hero-buttons .btn {
        min-width: 140px !important;
    }
}
