/* General Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

/* Container for better readability */
body > * {
    max-width: 900px;
    margin: 0 auto 20px auto;
}

/* Headings */
h1 {
    color: #002868; /* BMW Blue */
    text-transform: uppercase;
    border-bottom: 3px solid #002868;
    padding-bottom: 10px;
}

/* Image Styling */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: block;
    margin: 15px auto;
}

/* Video Styling */
video {
    width: 90%;
    max-width: 1000px;
    max-height: 500px;
    border-radius: 8px;
    background: #000;
    
    display: block;
    margin: 20px auto;
}

/* List Styling */
ul {
    background: #fff;
    padding: 20px 40px;
    border-radius: 8px;
    border-left: 5px solid #002868;
}

li {
    margin-bottom: 10px;
    font-weight: bold;
}

/* Quote Styling */
q {
    font-style: italic;
    font-size: 1.2em;
    color: #555;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
}

a {
    display: block;
    color: #002868;
    margin-top: 10px;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 600px) {
    body { padding: 10px; }
    h1 { font-size: 1.5em; }
}
.logo-container {
    position: fixed !important;
    top: 10px !important;
    left: 10px !important;
    z-index: 9999 !important;
}
.logo {
    width: 80px !important;
    height: auto !important;
    position: static !important;
    border: none;
    box-shadow: none;
}