body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}


.container {

    position: fixed;
    left: 20%;
    top: 20%;
    width: 60%;
    
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.header-banner {
    height: 200px;
    background-color: #98bec0;
    background-size: cover;
    background-position: center;
}


.main-content-area {
    display: flex;
    padding: 20px;
}


.sidebar {
    flex: 0 0 200px;
    background-color: #98bec0;
    padding: 10px 0;
    margin-right: 20px;
    border-radius: 5px;
}


.sidebar a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #000000;
    font-size: 1.1em;
    font-weight: bold;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.sidebar a:last-child {
    border-bottom: none;
}


.sidebar a:hover {
    background-color: #4c5555;
}


.content {
    flex-grow: 1;
    padding: 0 10px;
}

.content h2 {
    font-size: 2em;
    color: #000000;
    padding-bottom: 5px;
    border-bottom: 2px solid #98bec0;
    margin-top: 0;
}

.content p {
    line-height: 1.6;
    color: black;
    margin-bottom: 15px;
}


.footer {
   
    clear: both;
    text-align: left;
    padding: 10px 20px;
    font-size: 0.9em;
    color: black;
    background-color:#98bec0;
    border-top: 1px solid #ddd;
}