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

#container {
    width: 85%;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Header Styles */
#header {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 20px 0;
}

#header a {
    color: #ecf0f1;
    font-size: 2.5rem;
    text-decoration: none;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Menu Styles */
#menu {
    background-color: #34495e;
    text-align: center;
    padding: 15px 0;
    border-bottom: 3px solid #2c3e50;
}

#menu a {
    color: #bdc3c7;
    font-size: 1.1rem;
    margin: 0 20px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px 20px;
    font-family: 'Arial', sans-serif;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#menu a:hover {
    background-color: #2980b9;
    color: white;
}

/* Sidebar Styles */
#sidebar {
    width: 25%;
    float: left;
    background-color: #ecf0f1;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    color: #2c3e50;
}

#sidebar h1 {
    font-size: 2rem;
    color: #2980b9;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 1px;
}

#sidebar p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: justify;
}

/* Main Content Styles */
#main {
    width: 70%;
    float: right;
    padding: 50px 40px;
    font-size: 1.2rem;
    line-height: 1.8;
    background-color: #fff;
    border-left: 2px solid #e0e0e0;
}

#main h2 {
    font-size: 2.5rem;
    color: #34495e;
    margin-bottom: 30px;
    font-family: 'Georgia', serif;
    text-align: center;
}

#main p {
    margin-bottom: 25px;
    color: #2c3e50;
}

#main a {
    color: #3498db;
    font-weight: bold;
    text-decoration: none;
}

#main a:hover {
    color: #2980b9;
}

/* Footer Styles */
footer {
    clear: both;
    background-color: #2c3e50;
    color: #bdc3c7;
    text-align: center;
    padding: 25px 0;
    font-size: 1rem;
}

footer a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #2980b9;
}

footer .separator {
    color: #7f8c8d;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    #container {
        width: 100%;
    }

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

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