/* ===========================
   TABLET RESPONSIVE (768px)
===========================*/
@media (max-width: 1024px) {
    .hero-section {
        text-align: center;
        padding: 140px 40px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons a {
        width: 80%;
        font-size: 18px;
    }

    h1.hero-title {
        font-size: 42px;
        line-height: 50px;
    }
}

/* ===========================
   MOBILE RESPONSIVE (450px)
===========================*/
@media (max-width: 768px) {
    h1.hero-title {
        font-size: 32px;
        line-height: 42px;
    }

    .hero-section {
        padding: 120px 20px;
    }

    .hero-buttons a {
        width: 100%;
        font-size: 16px;
    }
}
