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

/* Container Styles */
#container {
    max-width: 1000px;
    margin: 40px auto;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    padding: 40px;
    display: -moz-grid
    
}

/* Header Styles */
#header {
    width: 100%;
    background-color: #0d47a1;
    color: #fff;
    text-align: center;
    padding: 50px 0;
    border-bottom: 4px solid #0b3954;
    border-radius: 12px 12px 0 0;
}

#header a {
    color: #fff;
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

#header a:hover {
    color: #82b1ff;
}

/* Menu Styles */
#menu {
    background-color: transparent;
    text-align: center;
    padding: 30px 0;
}

#menu a {
    color: #2e3440;
    font-size: 1.2rem;
    margin: 10 30px;
    text-transform: capitalize;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    padding: 12px 30px;
    background-color: #f0f2f5;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#menu a:hover {
    background-color: #82b1ff;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Main Content Styles */
#main {
    width: 72%;
    padding: 60px;
    font-size: 1.1rem;
    line-height: 1.75;
    background-color: #fff;
    color: #333;
    flex-grow: 1;
}

#main h2 {
    font-size: 2.6rem;
    color: #0d47a1;
    margin-bottom: 40px;
    font-family: 'Montserrat', serif;
}

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

#main a {
    color: #0d47a1;
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.3s ease;
}

#main a:hover {
    color: #1565c0;
}

/* Sidebar Styles */
#sidebar {
    width: 28%;
    background-color: #fafafa;
    padding: 60px 40px;
    font-family: 'Inter', sans-serif;
    color: #2e3440;
    border-left: 1px solid #e5e5e5;
}

#sidebar h1 {
    font-size: 2.4rem;
    color: #0d47a1;
    margin-bottom: 30px;
    font-weight: 600;
}

#sidebar p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Footer Styles */
footer {
    width: 100%;
    background-color: #0d47a1;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-size: 1rem;
    border-top: 2px solid #0b3954;
    clear: both;
}

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

footer a:hover {
    color: #82b1ff;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    #container {
        flex-direction: column;
        padding: 20px;
    }

    #main, #sidebar {
        width: 100%;
        padding: 20px;
    }

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