<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&amp;display=swap');

body {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f0f0f0; /* Light background color */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent; /* Transparent background to float on the banner */
    padding: 10px 40px; /* Increase padding on the sides */
    position: absolute;
    width: 100%;
    z-index: 1;
}

header .logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)); /* Extended semi-transparent white glow */
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff; /* White text color to stand out on the banner */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Text shadow for better visibility */
    text-decoration: none;
    font-weight: bold;
    padding-right: 60px; /* Increase padding for alignment */
    font-family: 'Open Sans', Helvetica, Arial, sans-serif; /* Explicitly set font */
}

/* Hide the menu on mobile devices */
nav ul {
    display: none;
}

/* Hamburger menu */
.hamburger {
    display: block;
    cursor: pointer;
    padding-right: 60px; /* Increase padding for alignment */
    margin-left: auto; /* Align to the right */
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: all 0.3s ease-in-out;
}

/* Show the menu when active */
nav.active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    padding: 10px;
}

nav.active ul li {
    margin: 10px 0;
}

.banner {
    position: relative;
    height: 400px; /* Increase height of the banners */
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    padding: 20px 80px; /* Increase padding on the sides */
    text-align: justify;
    margin-bottom: 100px; /* Extra space below content */
}

footer {
    background-color: #f0f0f0; /* Match background color */
    color: #333; /* Darker text color */
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 0.9em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-line {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
}

.footer-line div {
    margin: 0 10px;
}

.address-line {
    text-align: center;
}

@media (min-width: 768px) {
    nav ul {
        display: flex; /* Show the menu on larger screens */
    }
    .hamburger {
        display: none;
    }
}
</pre></body></html>