body {
    font-family: 'Noto Sans', sans-serif;
}

.faq {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.question {
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
    background-color: #f1f1f1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
}

.answer {
    display: none;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.answer.open {
    display: block;
    max-height: auto;
    opacity: 1;
}
