/* General Styles */
body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #fff3e6;
    color: #4a4a4a;
}

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

/* Header Styles */
#header {
    background-color: #ff8c00;
    padding: 20px;
    text-align: center;
    color: #ffffff;
    border-radius: 8px 8px 0 0;
}

#header a {
    font-size: 2.8rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
}

/* Menu Styles */
#menu {
    background-color: #f7f7f7;
    padding: 10px;
    text-align: center;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

#menu a {
    color: #ff8c00;
    font-size: 1.1rem;
    margin: 0 20px;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#menu a:hover {
    background-color: #ffe4b5;
}

/* Sidebar Styles */
#sidebar {
    float: left;
    width: 25%;
    padding: 20px;
    background-color: #ffe6cc;
    border-right: 5px solid #ff8c00;
    margin-top: 20px;
}

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

#sidebar p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.5;
}

/* Main Content Styles */
#main {
    float: right;
    width: 70%;
    padding: 20px;
    background-color: #ffffff;
    margin-top: 20px;
}

#main h2 {
    font-size: 2.5rem;
    color: #d9534f;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff8c00;
    padding-bottom: 10px;
}

#main p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

#main a {
    color: #ff8c00;
    text-decoration: underline;
}

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

/* Footer Styles */
footer {
    clear: both;
    background-color: #4a4a4a;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
    border-radius: 0 0 8px 8px;
}

footer a {
    color: #ffa500;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffcc00;
}

footer .separator {
    color: #e9ecef;
}

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

    #menu a {
        display: block;
        margin: 5px 0;
        text-align: center;
    }
}
