.Menu_text {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-style: normal;
    line-height: normal;
    font-weight: bold;
    font-variant: normal;
    text-transform: none;
    color: #000000;
    text-decoration: none;
}

.Body_text {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-style: normal;
    line-height: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    color: #999999;
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0;
    background-color: #999999;
    color: #000000;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #333333;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2em;
    text-align: center;
}

.container {
    max-width: 960px;
    margin: 20px auto;
    background-color: #ffffff;
    border: 1px solid #000000;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

header .hero-image {
    width: 100%;
    height: auto;
    display: block;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
}

nav li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;

nav li a:hover {
    background-color: #f0f0f0;
}

.content-area {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
}

.left-sidebar {
    flex: 1;
    min-width: 180px;
    box-sizing: border-box;
}

.left-sidebar .sidebar-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.main-content {
    flex: 3;
    min-width: 300px;
    box-sizing: border-box;
}

.main-content .main-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

footer {
    background-color: #C9D4BF;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    color: #333333;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .container {
        margin: 10px;
        border: none;
        box-shadow: none;
    }

    .content-area {
        flex-direction: column;
        padding: 15px;
    }

    .left-sidebar, .main-content {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    nav ul {
        flex-direction: column;
    }

    nav li a {
        padding: 12px;
        border-bottom: 1px solid #eee;
    }

    nav li:last-child a {
        border-bottom: none;
    }

    h1 {
        font-size: 1.5em;
    }
}