/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
}

#container {
    width: 85%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Header Styles */
#header {
    background-color: #2ecc71;
    text-align: left;
    padding: 20px 50px;
    color: white;
}

#header a {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
}

/* Menu Styles */
#menu {
    background-color: #27ae60;
    padding: 15px 0;
    text-align: left;
    padding-left: 50px;
    border-bottom: 5px solid #16a085;
}

#menu a {
    color: white;
    font-size: 1rem;
    padding: 10px 20px;
    margin-right: 10px;
    text-transform: capitalize;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

#menu a:hover {
    background-color: #16a085;
    color: #fff;
}

/* Sidebar Styles */
#sidebar {
    width: 25%;
    float: right;
    background-color: #ecf0f1;
    padding: 25px;
    font-family: 'Lucida Console', Monaco, monospace;
    color: #34495e;
    border-left: 3px solid #27ae60;
}

#sidebar h1 {
    font-size: 2rem;
    color: #2ecc71;
    margin-bottom: 20px;
}

#sidebar p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Main Content Styles */
#main {
    width: 70%;
    float: left;
    padding: 40px 50px;
    font-size: 1.2rem;
    color: #34495e;
    font-family: 'Georgia', serif;
}

#main h2 {
    font-size: 2.3rem;
    color: #27ae60;
    margin-bottom: 15px;
}

#main p {
    margin-bottom: 20px;
    line-height: 1.7;
}

#main a {
    color: #e74c3c;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid #e74c3c;
}

#main a:hover {
    color: #c0392b;
    border-bottom: 1px solid #c0392b;
}

/* Footer Styles */
footer {
    clear: both;
    background-color: #16a085;
    color: #ecf0f1;
    text-align: center;
    padding: 15px 0;
    font-size: 1rem;
    font-family: 'Tahoma', sans-serif;
    margin-top: 20px;
}

footer a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    color: #2ecc71;
}

/* Separator Style in Footer */
.separator {
    margin: 0 12px;
    color: #7f8c8d;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    #container {
        width: 100%;
    }

    #sidebar, #main {
        width: 100%;
        float: none;
        padding: 20px;
    }

    #menu {
        padding-left: 20px;
    }

    #menu a {
        display: block;
        margin: 5px 0;
        font-size: 1.2rem;
    }
}
