.faq-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 0.8em;
}

.faq-item {
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
}

.faq-question:hover {
    background-color: #c5c5c55d;
    border-radius: 10px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #555;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 10px 20px 20px;
}

.icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    border-radius: 100px;
    background-color: #97979727;
    width: 1.2em;
    height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon i {
    color: #18A2B8;
    font-size: 15px;
}

.faq-item.active .icon {
    transform: rotate(90deg);
    background: linear-gradient(135deg, #18A2B8, #00394F);

}

.faq-item.active .icon i {
    color: white;
}