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

body {
    font-family: Liberation Sans, sans-serif;
    line-height: 1.6;
    color: #332E00;
    background-color: #EFEDD9;
    max-width: 1200px;
    margin: auto;
}

ul {
    padding-left: 15px;
}

.todo {
    color: #FF0000;
    font-weight: bold;
}        

.box {
    background-color: #F1EAC7;
    padding: 10px;
    margin: 10px;
    border-radius: 25px;
    border: 2px solid #875F13;
}

.box h4 {
    color: #62450E;
    font-size: 1.25em;
    font-weight: bold;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: 220px;
    background-color: #43310E;
    color: white;
    padding: 20px;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.sidebar h2 {
    margin-bottom: 20px;
    font-size: 1.2em;
    border-bottom: 2px solid #AF7811;
    padding-bottom: 10px;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    color: #EFEDD9;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.sidebar ul li a:hover {
    background-color: #62450E;
}

.sidebar ul ul {
    margin-left: 20px;
    margin-top: 5px;
}

/* Main Content Styles */
.main-content {
    margin-left: 220px;
    padding: 40px;
    background-color: white;
    flex: 1;
    max-width: calc(100% - 250px);
}

.main-content h1 {
    color: #43310E;
    margin-bottom: 30px;
    font-size: 2.5em;
    border-bottom: 3px solid #AF7811;
    padding-bottom: 10px;
}

.main-content h2 {
    color: #62450E;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2em;
    border-left: 4px solid #AF7811;
    padding-left: 15px;
}

.main-content h3 {
    color: #875F13;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.main-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.main-content section {
    margin-bottom: 40px;
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 20px;
    border: 1px solid #875F13;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #F1EAC7;
    padding: 15px 20px;
    margin: 0;
    font-size: 1.1em;
    font-weight: bold;
    color: #43310E;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #E6E1A8;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    font-weight: bold;
    color: #875F13;
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px;
}

.faq-answer p {
    margin-bottom: 10px;
    color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .main-content {
        margin-left: 0;
        max-width: 100%;
        padding: 20px;
    }

    .container {
        flex-direction: column;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}


