/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 10px 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.menu {
    list-style: none;
    display: flex;
}

.menu li {
    margin: 0 10px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.menu a:hover {
    color: #f39c12;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: white;
}

/* Content Wrapper */
.content-wrapper {
    padding: 20px;
}

.content-box {
    display: none;
    text-align: left; /* Align content to the left */
    margin: 0 auto;
    background: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    max-width: 1200px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.content-box:first-of-type {
    display: block; /* Show first section by default */
}

h1, h2 {
    color: #222;
    margin-bottom: 10px;
}

p, ul {
    margin-bottom: 10px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

a {
    color: #007BFF;
    text-decoration: none;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        background-color: #444;
        width: 100%;
        text-align: center;
    }

    .menu.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .menu li {
        margin: 10px 0;
    }

    .content-box {
        padding: 15px;
    }
}
