/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background-color: #ffcc00;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container img {
    height: 50px;
}

nav {
    display: flex;
}

nav .left-menu, nav .right-menu {
    display: flex;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav a:hover {
    color: #ffcc00;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    background-color: #ffcc00;
    border: none;
    padding: 10px;
    color: #fff;
    font-size: 30px;
}

/* Container Styles */
.container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Content Box */
.content-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Section Titles */
h1, h2 {
    color: #333;
    margin-bottom: 20px;
}

/* Links */
a {
    color: #ffcc00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer Styling */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.footer a {
    color: #ffcc00;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media only screen and (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    nav {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    nav .left-menu, nav .right-menu {
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

    nav a {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    /* Show left menu when toggled */
    .menu-left.active, .menu-right.active {
        display: block;
    }

    /* Content box padding and logo size adjustment for mobile */
    .content-box {
        padding: 15px;
    }

    .logo-container img {
        height: 40px;
    }
}

/* Additional Styles for Large Screens */
@media only screen and (min-width: 1200px) {
    .container {
        padding: 40px 50px;
    }

    .content-box {
        padding: 30px;
    }
}
