* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light gray background */
    color: #333;
}

/* Header and Title Styling */
h1, h2 {
    color: #0033cc; /* BMW Blue */
}

h1 {
    font-size: 2.5em;
    text-align: center;
    margin-top: 40px;
}

h2 {
    font-size: 2em;
    margin-top: 20px;
}

/* Navigation Bar Styling */
nav {
    background-color: #0033cc; /* BMW Blue */
    color: white;
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #ffffff; /* Bottom border for the nav */
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Focus states for accessibility */
nav a:focus {
    outline: 3px solid #ff9900; /* Orange outline on focus */
}

/* Section Styling */
section {
    margin: 20px auto;
    max-width: 1200px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section p, section ul {
    font-size: 1.1em;
    line-height: 1.6;
}

ul {
    padding-left: 20px;
}

ul li {
    list-style-type: disc;
    margin-bottom: 10px;
}

/* Image Styling */
img {
    width: 100%;
    max-width: 800px; /* Set a max-width for images to avoid them becoming too large */
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 20px auto;
}

/* Styling for Buttons (Optional) */
button {
    background-color: #0033cc;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #0055cc;
}

button:focus {
    outline: 3px solid #ff9900; /* Orange outline on focus */
}

/* Layout for Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    nav {
        padding: 10px;
    }

    nav a {
        font-size: 14px;
        margin: 0 10px;
    }

    section {
        padding: 10px;
    }

    img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    nav a {
        display: block;
        margin: 5px 0;
    }

    section {
        padding: 15px;
    }
}

/* Enhancing list items for better readability */
ul li {
    font-weight: 500; /* Slightly bold for better visibility */
    margin-bottom: 10px; /* Space between list items */
}

/* Link Styling for Any Additional Links (Optional) */
a {
    color: #0033cc;
    text-decoration: none;
}

a:hover, a:focus {
    text-decoration: underline;
    outline: 2px solid #0033cc;
}

/* Footer Styling */
.footer {
    background-color: #0033cc; /* Matching the BMW blue color */
    color: white;
    text-align: center;
    padding: 18px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-size: 16px; /* Adjust size to match the general text style */
}

.footer p {
    margin: 0;
    font-weight: bold; /* Make the text bold to stand out */
}

/* Existing styles from your original code... */

/* Dropdown container styling */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown button styling */
.dropbtn {
    background-color: #0033cc;
    color: white;
    padding: 14px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

/* Dropdown menu content styling */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #0033cc;
    min-width: 160px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-weight: bold;
}

/* Change background on hover */
.dropdown-content a:hover {
    background-color: #ff9900; /* Change to orange on hover */
    color: #333;
}

/* Show the dropdown menu when hovering over the parent button */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Hover effect for the button */
.dropdown:hover .dropbtn {
    background-color: #0055cc; /* Change button background on hover */
}

