/* Hide mobile by default */
.mobile-menu {
    display: none;
}

/* Hide desktop menu on small screens */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-menu .hamburger {
        font-size: 28px;
        cursor: pointer;
        color: #555;
        margin-top: 10px;
    }

    .mobile-links {
        display: none;
        flex-direction: column;
        margin-top: 15px;
        background-color: white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        padding: 20px;
        border-radius: 8px;
        animation: fadeIn 0.5s forwards;
    }

    .mobile-links.show {
        display: flex;
    }

    .mobile-links li {
        margin-bottom: 10px;
    }

    .mobile-links li button {
        width: 100%;
        background-color: white;
        color: #555;
        font-size: 16px;
        font-weight: 500;
        border: 1px solid #ddd;
        padding: 10px;
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .mobile-links li button:hover {
        background-color: #f0f0f0;
    }
 .brand {
  font-size: 24px;
  font-weight: bold;
  color: #555;
}



}
