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

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

/* Header Styles */
#header {
    background-color: #ff6f61;
    color: white;
    text-align: center;
    padding: 30px 0;
    position: relative;
}

#header a {
    color: white;
    font-size: 2.8rem;
    font-weight: bold;
    text-decoration: none;
    font-family: 'Trebuchet MS', sans-serif;
    letter-spacing: 3px;
}

#header::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #f39c12;
    margin: 10px auto 0;
}

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

#menu a {
    color: white;
    font-size: 1.2rem;
    margin: 0 30px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s, color 0.3s;
    padding: 10px 20px;
    border-radius: 25px;
}

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

/* Sidebar Styles */
#sidebar {
    width: 30%;
    float: left;
    background-color: #f8f9fa;
    padding: 50px 30px;
    font-family: 'Verdana', sans-serif;
    color: #333;
}

#sidebar h1 {
    font-size: 2.4rem;
    color: #e74c3c;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

#sidebar p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Main Content Styles */
#main {
    width: 65%;
    float: right;
    padding: 60px 40px;
    background-color: white;
    font-family: 'Georgia', serif;
    color: #444;
    border-left: 4px solid #ff6f61;
}

#main h2 {
    font-size: 3rem;
    color: #2980b9;
    margin-bottom: 30px;
    font-family: 'Trebuchet MS', sans-serif;
}

#main p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

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

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

/* Footer Styles */
footer {
    clear: both;
    background-color: #34495e;
    color: white;
    text-align: center;
    padding: 30px 0;
    font-size: 1rem;
    margin-top: 50px;
}

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

footer a:hover {
    color: #ff6f61;
}

footer .separator {
    color: #f39c12;
    margin: 0 10px;
}

/* 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;
    }
}
