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

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

/* Header Styles */
#header {
    background-color: #3b5998;
    padding: 30px;
    text-align: center;
}

#header a {
    color: #ffffff;
    font-size: 3rem;
    text-decoration: none;
    font-family: 'Verdana', sans-serif;
}

/* Menu Styles */
#menu {
    background-color: #f1c40f;
    padding: 15px;
    text-align: center;
    border-bottom: 3px solid #d35400;
    font-family: 'Verdana', sans-serif;
}

#menu a {
    color: #3b5998;
    font-size: 1.2rem;
    padding: 10px 25px;
    margin: 0 10px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

#menu a:hover {
    background-color: #d35400;
    color: #ffffff;
    border-radius: 5px;
}

/* Sidebar Styles */
#sidebar {
    width: 30%;
    float: left;
    background-color: #ecf0f1;
    color: #2c3e50;
    padding: 20px;
    font-family: 'Tahoma', sans-serif;
    border-right: 2px solid #d35400;
}

#sidebar h1 {
    font-size: 2.2rem;
    color: #e74c3c;
    margin-bottom: 15px;
}

#sidebar p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Main Content Styles */
#main {
    width: 65%;
    float: right;
    padding: 30px;
    font-size: 1.1rem;
    font-family: 'Georgia', serif;
    color: #2c3e50;
}

#main h2 {
    font-size: 2.5rem;
    color: #d35400;
}

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

#main a {
    color: #2980b9;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #2980b9;
}

#main a:hover {
    color: #e74c3c;
    border-bottom: 2px solid #e74c3c;
}

/* Footer Styles */
footer {
    clear: both;
    background-color: #34495e;
    padding: 20px;
    text-align: center;
    color: #ecf0f1;
    margin-top: 30px;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

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

footer a:hover {
    color: #f1c40f;
}

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

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

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

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