h3 {
    font-family: Dunbar;
    font-size: 20px;
    padding-bottom: 20px;
}

.question {
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #74d3f1;
    font-family: 'Dunbar', sans-serif; 
    font-size: 19px;
    font-weight: bold;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, border-radius 0.3s ease;
    
    border-radius: 8px;
}

.question.active {
    background-color: #383838;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-color: #444;
    text-shadow: 0 2px 15px rgba(2, 144, 190, 0.7),
                0 0 60px rgba(2, 144, 190, 0.5),
                0 0 120px rgba(2, 144, 190, 0.3);
    transition-duration: 0.5s;
}

.question:hover {
    background-color: #383838;
}

.faq-question-text {
    flex-basis: 90%;
}

.faq-arrow {
    font-size: 20px;
    color: #74d3f1;
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
}

.question.active .faq-arrow {
    transform: rotate(0);
}


.answer {
    max-height: 0;
    overflow: hidden;
    
    transition-duration: 0.5s;
    
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 0;
    padding-bottom: 0;

    color: #f1f1f1;
    font-family: 'Dunbar', sans-serif;
    font-size: 16px;
    text-align: left;
    line-height: 1.6;

    background-color: #2a2a2a;
    border-left: 1px solid #444;
    border-right: 1px solid #444;
    border-bottom: 1px solid #444;
    border-bottom-right-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-bottom: 10px;
}

.answer.open {
    padding-top: 20px;
    padding-bottom: 20px;
    max-height: 600px;
}

.answer ul {
    padding-left: 20px;
    margin-top: 10px;
}