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

#container {
    width: 90%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Header Styles */
#header {
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    color: white;
    text-align: center;
    padding: 30px 0;
    font-family: 'Impact', sans-serif;
}

#header a {
    color: #fff;
    font-size: 2.8rem;
    text-decoration: none;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Menu Styles */
#menu {
    background-color: #f39c12;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#menu a {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 20px;
    padding: 8px 15px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    font-family: 'Arial Black', sans-serif;
    background-color: #e67e22;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

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

/* Sidebar Styles */
#sidebar {
    width: 20%;
    float: left;
    background-color: #f7f9f9;
    padding: 30px;
    font-family: 'Trebuchet MS', sans-serif;
    color: #34495e;
}

#sidebar h1 {
    font-size: 2.2rem;
    color: #e74c3c;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

#sidebar p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Main Content Styles */
#main {
    width: 75%;
    float: right;
    padding: 40px 30px;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2c3e50;
    background-color: #fdfdfd;
}

#main h2 {
    font-size: 2.6rem;
    color: #e67e22;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

#main p {
    margin-bottom: 20px;
}

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

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

/* Footer Styles */
footer {
    clear: both;
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 20px 0;
    font-size: 1rem;
    font-family: 'Verdana', sans-serif;
}

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

footer a:hover {
    color: #f39c12;
}

footer .separator {
    margin: 0 15px;
    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;
        font-size: 1.5rem;
    }
}
