/* Reset default browser styles */
html, body {
    margin: 0;
    padding: 0;
}

/* Style for the navigation bar */
.navbar {
    background-color: #3958F5;
    height: 86px; /* Height of the nav bar */
    width: 100%; /* Full width */
    position: fixed; /* Fixed position so it stays at the top */
    top: 0;
    left: 0;
    z-index: 1000; /* Ensure it stays on top of other content */
    /* Additional styles for aesthetics */
    display: flex;
    justify-content: space-between; /* Pushes items to the edges */
    align-items: center; /* Align items vertically */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Box shadow for a subtle effect */
}

    /* Style for the navigation links */
    .navbar ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
    }

    .navbar li {
        margin: 0 15px; /* Adjust spacing between links */
    }

    .navbar a {
        color: #fff; /* Link text color */
        text-decoration: none;
        font-size: 18px; /* Adjust font size as needed */
    }

/* Style for the logo */
.logo {
    width: auto; /* Ensure logo size adjusts according to the image */
    height: 60px; /* Set the desired height of the logo */
}

/* Style for the right links */
.right-links {
    margin-right: 15px; /* Adjust spacing between right links and right edge */
}

/* Style for the desktop ad */
.desktop-ad {
    margin-top: 200px; /* Match the height of the navbar to avoid overlap */
    display: flex;
    justify-content: center; /* Center the image horizontally */
}

.desktop-ad-image {
    max-width: 50%; /* Set maximum width to 50% of the viewport */
    height: auto; /* Allow the height to adjust proportionally */
}
