.hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.heart {
    position: absolute;
    top: -10%;
    font-size: 20px;
    color: #e63946;
    animation: fall linear infinite;
    opacity: 0.8;
}

@keyframes fall {
    to {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

/* Different heart instances */
.heart:nth-child(1) {
    left: 10%;
    animation-duration: 5s;
    animation-delay: 0s;
}

.heart:nth-child(2) {
    left: 30%;
    animation-duration: 6s;
    animation-delay: 1s;
}

.heart:nth-child(3) {
    left: 50%;
    animation-duration: 4s;
    animation-delay: 2s;
}

.heart:nth-child(4) {
    left: 70%;
    animation-duration: 7s;
    animation-delay: 3s;
}

.heart:nth-child(5) {
    left: 90%;
    animation-duration: 5s;
    animation-delay: 4s;
}

.faq-answer {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.open .faq-answer {
    display: block;
    max-height: 200px;
    /* adjust based on content */
    opacity: 1;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}
