.page-hero { 
    min-height: 60vh; 
    height: 60vh; 
}

.page-hero .hero-title { 
    font-size: 3.5rem; 
}

.page-hero .slide.active {
    transform: scale(1) !important; 
    animation: none; 
}

.page-hero .slide {
    background-size: cover; 
    background-position: center center;
}

.button-container {
    display: flex;       
    gap: 15px;           
    margin-top: 1.5rem; 
    flex-wrap: wrap;   
}

@media (max-width: 768px) {
    .page-hero .hero-title { 
        font-size: 2rem; 
        line-height: 1.2;
    }

    .page-hero { 
        min-height: 50vh; 
        height: auto; 
        padding-top: 80px;
    }

    .button-container {
        flex-direction: column;
        width: 100%;
    }

    .button-container .btn-primary {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
}