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

#container {
    width: 90%;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

/* Header Styles */
#header {
    background-color: #007bff;
    padding: 30px 0;
    text-align: center;
    color: white;
    border-radius: 5px 5px 0 0;
}

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

/* Menu Styles */
#menu {
    background-color: #343a40;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 15px;
    border-radius: 0 0 5px 5px;
}

#menu a {
    color: white;
    font-size: 1rem;
    margin: 0 15px;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 20px;
    transition: background-color 0.3s, color 0.3s;
}

#menu a:hover {
    background-color: #6c757d;
    color: white;
}

/* Sidebar Styles */
#sidebar {
    float: left;
    width: 30%;
    padding: 30px;
    background-color: #f8f9fa;
    border-right: 3px solid #007bff;
}

#sidebar h1 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

#sidebar p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Main Content Styles */
#main {
    float: right;
    width: 68%;
    padding: 30px;
    background-color: white;
}

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

#main p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #495057;
}

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

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

/* Footer Styles */
footer {
    clear: both;
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    border-radius: 0 0 5px 5px;
}

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

footer a:hover {
    color: #138496;
}

footer .separator {
    color: #ced4da;
}

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

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