/* Tablet View */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 4rem 2rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-text-panel h1 {
        font-size: 2.8rem;
    }

    .hero-image-panel {
        height: 50vh;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 79px;
        /* Match header height */
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 2rem 0;
    }
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Mobile View */
@media (max-width: 576px) {
    .hero-text-panel h1 {
        font-size: 2.2rem;
    }

    .description {
        font-size: 1rem;
    }

    .hero-buttons .cta-button {
        width: 100%;
    }

    .logo span {
        display: none;
    }

    .cta-button{
        padding: 7px 14px;
        font-size: 14px;
    }

    .nav_right{
        gap: 50px;
    }

    .feature-card{
        margin: 0 0 30px 0;
    }

    .section_title p{
        padding: 0;
    }
}