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

#container {
    width: 85%;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Header Styles */
#header {
    background-color: #1abc9c;
    padding: 40px 0;
    text-align: center;
    color: white;
    border-radius: 10px 10px 0 0;
}

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

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

#menu a {
    color: white;
    font-size: 1.1rem;
    margin: 0 25px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #1abc9c;
    border-radius: 25px;
    transition: all 0.3s;
}

#menu a:hover {
    background-color: #16a085;
    color: white;
}

/* Sidebar Styles */
#sidebar {
    float: left;
    width: 28%;
    padding: 40px 25px;
    background-color: #ecf0f1;
    border-right: 4px solid #1abc9c;
}

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

#sidebar p {
    font-size: 1.2rem;
    color: #7f8c8d;
    line-height: 1.6;
}

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

#main h2 {
    font-size: 2.8rem;
    color: #3498db;
    margin-bottom: 25px;
    font-weight: 600;
}

#main p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #34495e;
}

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

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

/* Footer Styles */
footer {
    clear: both;
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
    border-radius: 0 0 10px 10px;
    margin-top: 50px;
}

footer a {
    color: #1abc9c;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

footer a:hover {
    color: #16a085;
}

footer .separator {
    color: #95a5a6;
}

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

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