/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .header {
        padding: 1.5rem 2rem;
    }

    .hero-content {
        bottom: 3rem;
        left: 2rem;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 35px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #1B4D3E;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        gap: 2rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        color: #fff !important;
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1000;
    }

    .header {
        padding: 1.5rem 1.5rem;
    }

    .hero-content {
        bottom: 2rem;
        left: 1.5rem;
        max-width: calc(100% - 3rem);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
