/* General Styles */
body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #fff3cd;
    color: #856404;
}

#container {
    width: 80%;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

/* Header Styles */
#header {
    background-color: #28a745;
    padding: 20px 0;
    text-align: center;
    color: white;
    border-radius: 10px 10px 0 0;
}

#header a {
    font-size: 2.2rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

/* Menu Styles */
#menu {
    background-color: #007bff;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 0 0 10px 10px;
}

#menu a {
    color: white;
    font-size: 1.1rem;
    margin: 0 12px;
    text-decoration: none;
    padding: 10px 15px;
    border: 2px solid transparent;
    border-radius: 25px;
    transition: background-color 0.3s, border-color 0.3s;
}

#menu a:hover {
    background-color: #0056b3;
    border-color: #ffffff;
}

/* Sidebar Styles */
#sidebar {
    float: left;
    width: 25%;
    padding: 20px;
    background-color: #f8f9fa;
    border-right: 5px solid #28a745;
}

#sidebar h1 {
    font-size: 2.3rem;
    color: #28a745;
    margin-bottom: 15px;
}

#sidebar p {
    font-size: 1rem;
    color: #343a40;
    line-height: 1.5;
}

/* Main Content Styles */
#main {
    float: right;
    width: 70%;
    padding: 20px;
    background-color: #ffffff;
}

#main h2 {
    font-size: 2.5rem;
    color: #dc3545;
    margin-bottom: 15px;
}

#main p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
}

#main a {
    color: #007bff;
    text-decoration: underline;
}

#main a:hover {
    color: #0056b3;
}

/* Footer Styles */
footer {
    clear: both;
    background-color: #6c757d;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
    border-radius: 0 0 10px 10px;
}

footer a {
    color: #17a2b8;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
}

footer a:hover {
    color: #138496;
}

footer .separator {
    color: #e9ecef;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    #sidebar, #main {
        width: 100%;
        float: none;
        padding: 10px;
    }

    #menu a {
        display: block;
        margin: 5px 0;
    }
}
