body {
    margin: 0;
    font-family: "Lato", sans-serif;
}

.sidebar {
    margin: 0;
    padding: 0;
    width: 250px;
    background-color: #f1f1f1;
    position: fixed;
    height: 100%;
    overflow: auto;
}

.sidebar a {
    display: block;
    color: black;
    padding: 16px;
    text-decoration: none;
}

.sidebar a.active {
    background-color: #04AA6D;
    color: white;
}

.sidebar a:hover:not(.active) {
    background-color: #555;
    color: white;
}

div.content {
    margin-left: 250px;
    padding: 1px 16px;
    height: 1000px;
}

@media screen and (max-width: 700px) {
    /* .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .sidebar a {
        float: left;
    }

    div.content {
        margin-left: 0;
    } */
    .sidebar {
        display: none;
    }

    div.content {
        margin-left: 0;
    }
}

@media screen and (max-width: 400px) {
    .sidebar a {
        text-align: center;
        float: none;
    }
}

.footer {
    position: fixed;
    left: 10px;
    bottom: 0;
}

/* Accordion Styles */
.accordion {
    margin: 20px 0;
}

.accordion-item {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
    background-color: #fff;
}

.accordion-header {
    width: 100%;
    padding: 16px 20px;
    text-align: left;
    background-color: #f8f9fa;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #e9ecef;
}

.accordion-header.active {
    background-color: #04AA6D;
    color: white;
}

.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-icon {
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

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

.accordion-content.active {
    max-height: 500px;
    padding: 16px 20px;
}

.accordion-content p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.accordion-content a {
    color: #04AA6D;
    text-decoration: none;
}

.accordion-content a:hover {
    text-decoration: underline;
}