.list-container {
    padding-bottom: 100px;
    width: 100%;
    min-width: 400px;
    min-height: 1000px;
    background-color: black;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content:space-evenly;
    align-items: center;
}

.faq-title-container {
    margin-top: 250px;
    margin-bottom: 100px;
}

#faq-title {
    color: white;
}

.faq-container {
    width: 90%;
}

.collapsible {
    background-color: black;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    border-top-style: solid;
    border-top-width: 1px;
    border-top-color: white;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: white;
    text-align: left;
    outline: none;
    font-size: 20pt;
}
  
.active {
    background-color: black;
}
  
.collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
  
.active:after {
    content: "\2212";
}
  
.collapsible-content {
    padding: 0 50px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    color: white;
    background-color: black;
}

.collapsible-content {
    font-size: 15pt;
    line-height: 30pt;
    color: aquamarine;
}

.collapsible-content > p {
    font-size: 15pt;
    line-height: 30pt;
    color: aquamarine;
}