h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sora", sans-serif;
}

body,
div,
p {
    font-family: "DM Sans", sans-serif;
}

/* FAQ Accordion Styling */
.faq-item {
    margin-bottom: 0.75rem;
}

.faq-item button {
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
}

.faq-item button:focus {
    outline: 2px solid rgba(255, 255, 255, 0.2);
}

.faq-item button[aria-expanded="true"] {
    border-radius: 0.75rem 0.75rem 0 0;
}

.faq-content {
    height: 0;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content.active {
    height: auto;
}

.faq-toggle-icon {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[aria-expanded="true"] .faq-toggle-icon {
    /* Rotate the toggle icon to indicate an expanded state */
    transform: rotate(45deg);
}

/* Add to your existing CSS */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem;
    border-radius: 0.5rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 50;
}

.toast.success {
    background-color: #059669;
}

.toast.error {
    background-color: #dc2626;
}

.toast.show {
    opacity: 1;
}

span.blockspam {
  display: none;
}