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

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

/* Header Styles */
#header {
    background-color: #1e88e5;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    border-bottom: 3px solid #1565c0;
}

#header a {
    color: #fff;
    font-size: 2.8rem;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    text-transform: capitalize;
}

/* Menu Styles */
#menu {
    background-color: #2d7eaf;
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid #1e88e5;
}

#menu a {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 25px;
    text-transform: capitalize;
    text-decoration: none;
    padding: 10px 25px;
    font-family: 'Roboto', sans-serif;
    border-radius: 50px;
    transition: background-color 0.4s ease, color 0.4s ease;
}

#menu a:hover {
    background-color: #43a047;
    color: #fff;
}

/* Sidebar Styles */
#sidebar {
    width: 30%;
    float: left;
    background-color: #f1f8e9;
    padding: 50px 25px;
    font-family: 'Roboto', sans-serif;
    color: #455a64;
    border-right: 2px solid #c8e6c9;
}

#sidebar h1 {
    font-size: 2.2rem;
    color: #388e3c;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 1px;
}

#sidebar p {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: left;
}

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

#main h2 {
    font-size: 2.8rem;
    color: #1565c0;
    margin-bottom: 35px;
    font-family: 'Merriweather', serif;
    text-align: left;
}

#main p {
    margin-bottom: 30px;
    color: #546e7a;
}

#main a {
    color: #26a69a;
    font-weight: 500;
    text-decoration: underline;
}

#main a:hover {
    color: #00796b;
}

/* Footer Styles */
footer {
    clear: both;
    background-color: #1e88e5;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-size: 1rem;
}

footer a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    margin: 0 12px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #00e676;
}

footer .separator {
    color: #cfd8dc;
}

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

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

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