.question {
    margin: 20px;
    text-align: center;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    line-height: 1.5;
}
.faq {
    max-width: 90%;
    margin: 5px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom:20px;
}

h2 {
    color: #333;
}

.faq-item {
    margin-bottom: 20px;
    font-size: 17px;
    font-family: "Roboto", sans-serif;
    line-height: 1.5;
}

.faq-question {
    font-weight: bold;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
    
}

.faq-answer {
    display: none;
    margin-top: 10px;
    color: #555;
}

.faq-question:hover {
    color: #316ccd;
}