
        /* Hamburger toggle */
.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 1.5rem;
        background: white;
        position: absolute;
        top: 70px; /* below header */
        right: 0;
        width: 200px;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .cta-button {
        display: none; /* optional: hide CTA on very small screens */
    }
}
