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

#container {
    width: 80%;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Header Styles */
#header {
    background-color: #34495e;
    padding: 20px;
    text-align: center;
}

#header a {
    color: #ecf0f1;
    font-size: 2.5rem;
    text-decoration: none;
    letter-spacing: 2px;
}

#menu {
    background-color: #2c3e50;
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #95a5a6;
}

#menu a {
    color: #ecf0f1;
    font-size: 1rem;
    padding: 14px 20px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: color 0.3s ease;
}

#menu a:hover {
    color: #f39c12;
}

/* Sidebar Styles */
#sidebar {
    width: 25%;
    float: left;
    background-color: #f39c12;
    color: white;
    padding: 30px;
    font-size: 1.2rem;
    height: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

#sidebar h1 {
    margin-bottom: 15px;
    font-size: 2rem;
}

/* Main Content Styles */
#main {
    width: 70%;
    float: right;
    padding: 30px;
    font-size: 1.1rem;
    color: #2c3e50;
}

#main h2 {
    font-size: 2rem;
    color: #34495e;
}

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

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

#main a:hover {
    color: #c0392b;
}

/* Footer Styles */
footer {
    clear: both;
    background-color: #34495e;
    padding: 20px;
    text-align: center;
    color: #ecf0f1;
    margin-top: 20px;
    font-size: 0.9rem;
}

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

footer a:hover {
    color: #f39c12;
}

/* Separator Style in Footer */
.separator {
    margin: 0 10px;
    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;
        font-size: 0.9rem;
    }
}
