body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f8ff; /* Light blue background */
    overflow: hidden; /* Hide vertical scrollbar */
}

p {
    color: #f2f2f2; /* Light grey text color */
}

.navbar {
    background-color: #b8d9d9; /* Light teal background */
    padding: 10px;
    display: flex;
    justify-content: space-between; /* Space between logo and menu items */
    align-items: center;
    position: relative; /* To position dropdowns correctly */
}

.navbar-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%; /* Full width for centering */
    justify-content: space-between; /* Space between logo and menu items */
}

.navbar img {
    width: auto;
    height: auto;
    max-height: 50px; /* Maximum width for the logo */
    vertical-align: middle;
    cursor: pointer; /* Pointer cursor for clickable images */
}

.navbar-right {
    margin-left: auto; /* Move to the far right */
    margin-right: 10%; /* Add a margin at the end */
}

.menu-icon {
    display: none;
    cursor: pointer;
    color: #7a780b; /* Light grey color */
    font-size: 24px; /* Larger font size */
}

.nav-links {
    display: flex;
    list-style-type: none; /* Remove default list styling */
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative; /* For positioning dropdowns */
}

.nav-links a {
    color: #7a780b; /* text color */
    text-decoration: none; /* Remove underline */
    padding: 10px 15px;
    display: block; /* Block display for full clickable area */
    text-shadow: 2px 2px 4px #aaa; /* Add shadow to text */
}

.nav-links a:hover {
    background-color: #ddd; /* Light grey background on hover */
    color: red; /* Red text color on hover */
}

/* Show submenu on hover */
.nav-links li:hover .dropdown-content {
    display: block; /* Show dropdown on hover */
}

/* Hide submenu when mouse moves away */
.nav-links li .dropdown-content {
    display: none; /* Hide dropdown by default */
}

.dropdown-content {
    display: none;
    position: absolute; /* Absolute positioning for dropdown */
    background-color: #f0f8ff; /* Light blue background */
    min-width: 160px; /* Minimum width */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); /* Shadow for dropdown */
    z-index: 1; /* Ensure dropdown is above other elements */
}

.dropdown-content a {
    color: #5d90af; /* Blue text color */
    padding: 12px 16px;
    text-decoration: none; /* Remove underline */
    display: block; /* Block display for full clickable area */
    text-align: left; /* Left align text */
    padding-left: 30px; /* Indent submenu options */
}

.dropdown-content a:hover {
    background-color: #ddd; /* Light grey background on hover */
}

.dropdown:hover .dropdown-content {
    display: block; /* Show dropdown on hover */
}

.content {
    padding: 16px; /* Padding for content */
}

iframe {
    width: 100%;
    height: 80vh; /* 80% of viewport height */
    border: none; /* Remove border */
    overflow: hidden; /* Hide horizontal and vertical scroll bars */
}

@media screen and (max-width: 720px) {
    .menu-icon {
        display: block; /* Show menu icon on small screens */
        color: #7a780b; /* color */
    }
    .nav-links {
        display: none; /* Hide nav links on small screens */
        flex-direction: column; /* Stack nav links vertically */
        width: 100%; /* Full width */
        position: absolute; /* Absolute positioning */
        top: 60px; /* Position below navbar */
        left: 0; /* Align to left */
        background-color: #f0f8ff; /* Light blue background */
    }
    .nav-links.show {
        display: flex; /* Show nav links when menu is toggled */
    }
    .dropdown-content {
        position: static; /* Static positioning for dropdowns */
        width: 100%; /* Full width */
    }
    .dropdown:hover .dropdown-content {
        display: none; /* Hide dropdown on hover */
    }
    .dropdown.active .dropdown-content {
        display: block; /* Show dropdown when active */
    }
}

@media only screen and (max-width: 600px) {
    .responsive-image {
        width: 100%;
    }
}

.line-below {
    border-bottom: 2px solid gold; /* Gold border */
    margin-top: 10px; /* Margin above border */
}

.responsive-image {
    max-width: 480px;
    width: 100%;
    height: auto;
}

.shadow-text {
    color: #333;
    text-shadow: 2px 2px 4px #aaa;
}
