.faq-block {
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 5px 0;
}

.faq-question {
    font-size: 18px;
    font-weight: bold;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease-in-out;
    color: black;
}

.faq-question p {
    margin-bottom: 0 !important;
}

.faq-question:hover {
    color: #008afc; /* Adjust to match the red text in your screenshot */
}

.faq-toggle-icon {
    transition: transform 0.3s ease-in-out;
}

.faq-answer {
    display: none;
    padding: 15px;
    background: #f9f9f9;
    font-size: 16px;
    color: #333;
    border-left: 3px solid #008afc; /* Red left border */
}

.faq-answer p {
    margin-bottom: 0 !important;
}

.faq-question.active .faq-toggle-icon {
    transform: rotate(180deg);
}
