body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f4f8; /* Lighter, modern background */
    color: #334155; /* Darker text for contrast */
}
/* Custom scrollbar for better aesthetics */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Styles for the mobile menu toggle */
.mobile-menu-open {
    display: flex !important; /* Override hidden on mobile */
    flex-direction: column;
    width: 100%;
    background-color: white; /* Ensure background for dropdown */
    position: absolute;
    top: 100%; /* Position below the header */
    left: 0;
    padding: 1rem 0;
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
