body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    background-color: #001f5b; /* Dark blue color from the PDF */
    padding: 15px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-align: center;
}

.navbar ul li {
    display: inline-block;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    display: inline-block;
}

.navbar ul li a.active {
    background-color: #ffcc00; /* Active state with yellow color */
    border-radius: 5px;
}

.navbar ul li a:hover {
    background-color: #ffcc00; /* Add a hover color matching the PDF's yellow accent */
    border-radius: 5px;
}

.container {
    max-width: 1200px; /* Adjust this to control the width */
    margin: 100px auto 0 auto; /* Adding margin-top to prevent overlap with fixed navbar */
    padding: 0 20px; /* Adds padding inside the container */
}

/* Hide the menu and show the hamburger button on smaller screens */
.navbar-toggle {
    display: none;
    background-color: #001f5b;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.navbar-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-align: center;
}

@media (max-width: 768px) {
    .navbar ul {
        display: none; /* Hide menu initially */
    }
    .navbar-toggle {
        display: inline-block; /* Show hamburger button */
    }
}

@media (min-width: 769px) {
    .navbar ul {
        display: block; /* Show menu on larger screens */
    }
}


img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px; /* Adds space between the images */
}

/* Styling for the "Go to Top" button */
.go-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
}

.go-top:hover {
    background-color: #0056b3;
}
