
.social-proof{
    margin-top: 4rem;
}
/* FAQ Section Styles */

/* FAQ Section Styles */
.faq-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem;
    cursor: pointer;
}

/* Question text */
.accordion-trigger span:first-child {
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: 500;
}

/* First question mint colored */
.accordion-item:first-child .accordion-trigger span:first-child {
    color: #4BDCB0;
}

/* Plus/minus icon */
.accordion-trigger .icon {
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 200;
}

.accordion-trigger:hover {
    background-color: #f8f8f8;
    border-radius: 8px;
}

/* Content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    padding: 0;
}

/* Active content state */
.accordion-content.active {
    opacity: 1;
}

.accordion-content p {
    color: #4b5563;
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* When trigger is active, adjust content */
.accordion-trigger.active + .accordion-content {
    opacity: 1;
    padding: 0.5rem 0;
}