/* Common styles for both desktop and mobile */

/* Mobile-specific styles */
@media (max-width: 767px) {
    /* Add mobile-specific styles here */
    html{
        background: #ffffff;
        

    }

    header {
        position: fixed; /* Stick to the top */
        top: 0;
        left: 0;
        width: 100%;
        background-color: #333; /* Example background color */
        z-index: 1000; /* Ensure it's above other content */
    }

    .header-content {
        max-width: 90%; /* Adjust max width as needed */
        margin: 0 auto; /* Center horizontally */
        padding: 10px 0; /* Example padding */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        display: block; /* Ensures centering */
        margin: 0 auto; /* Center horizontally */
        /* Additional styles for your logo */
    }
}
    


/* Desktop-specific styles */
@media (min-width: 768px) {
    /* Add desktop-specific styles here */
}
