/* FAQ container styles */
.sysfaq-container {
    padding-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.sysfaq-group {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 10px;
}

h3 {
    color: #47773d;
    font-size: 1.4rem;
}

li, p, ul {
    font-size: 1.2rem;
}

ul {
    padding-left: 25px;
}

.text__underline {
    text-decoration: underline;
}

.sub-list {
    padding-left: 50px;
    list-style-type: circle;
}

.link__btn {
    padding: 3px 5px;
    background-color: #060706;
    border-radius: 3px;
    color: #eaf4e5;
}

/* Question and Answer styles */
.qa {
    margin: 5px 0;
}

.answer {
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 2px;
    height: auto;
    max-height: 0;
    transition: all 0.35s linear;
}

.question {
    background-color: #a7d3d3;
    padding: 10px 5px;
    color: #47773d;
    border: 1px solid #cbcccc;
    border-radius: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.icon.rotate {
    transform: rotate(180deg);
}

.question .icon {
    color: #060706;
}

.question:hover {
    background-color: #b8dcdc;
}

.answer {
    background-color: #f2f2f2;
    border-radius: 3px;
}

.answer > div,
.answer > p {
    padding: 20px 15px;
}

.answer > div p,
.answer > p p {
    margin-bottom: 8px;
}

.answer > div ul,
.answer > p ul {
    padding-left: 15px;
}

.answer > div ul li,
.answer > p ul li {
    margin-bottom: 5px;
}

.answer-slide {
    max-height: 1000px;
}