.faq{
    padding: 1.5rem 0;
}

.accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
}

.accordion-header {
    background-color: var(--blue);
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border-radius: 5px;
    position: relative; /* Needed for absolute positioning of the arrow */
    display: flex; /* To align text and arrow */
    justify-content: space-between; /* To push arrow to the right */
    align-items: center;
}

.accordion-header::after {
    content: '\25B6'; /* Right-pointing triangle */
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    transform: rotate(90deg); /* Rotate to point down when active */
}

.accordion-header:hover {
    opacity: 0.7;
}

.accordion-content {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-content p {
    margin: 10px 0;
    font-size: 1rem;
    color: black;
}