:root {
    ---font-family: "Bitter", serif;
    ---manrope-font: "Manrope", sans-serif;
    ---menu-title-size: 20px;
    ---menu-font-color: #01aa3f;
    ---menu-bg-color: #f1f1f1;
    ---menu-text-color: #858585;
}

#faq {
}

.overlap-group {
    grid-column: span 12;
    display: grid;
    gap: 30px;
    justify-items: center;
}

.rectangle {
    justify-self: stretch;
    background-color: white;
    width: 100%;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    cursor: pointer;
    border-top: 2px solid #027f30;
    border-bottom: 2px solid #027f30;
    background-color: #f9f9f9;
}

.rectangle__first {
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.rectangle__content {
    color: #5f5f5f;
    font-size: 18px;
    font-family: "Manrope", sans-serif;
    text-align: justify;
}

.rectangle__content:hover {
    color: #4e8abf;
}

.rectangle__content.clicked {
    color: #4e8abf;
}

.answer {
    display: none;
    padding-top: 10px;
    color: #5e5e5e;
    text-align: justify;
    font-family: "Manrope", sans-serif;
    font-weight: normal;
}

.answer.expanded {
    display: block;
    max-height: 1000px;
}

.rectangle__toggle {
    font-size: 20px;
    color: black;
    cursor: pointer;
}
