.accordion {
    background-color: #00A000;
    color: white;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    margin-bottom: 10px;
}

.accordion.active {
    background-color: #e00000;
}

.panel {
    color: black;
    padding: 0px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    border-radius: 8px;
    opacity: 0;
    text-align: left;
}

.panel.active {
    padding: 5px 17px;
    max-height: 5500px;
    opacity: 1;
}

footer {
    margin-top: 35px;
}

.panel a {
    text-decoration: none;
    color: #00A000;
    font-weight: bold;
}