/* ... existing main.css content is preserved, adding this at the end or replacing if block exists ... */

/*--------------------------------------------------------------
# Faq Section - Folding Style
--------------------------------------------------------------*/
.faq .faq-item {
    background-color: #ffffff;
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.faq .faq-item:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.faq .faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #334155;
    transition: 0.3s;
}

.faq .faq-item h3:hover {
    color: var(--accent-color);
}

.faq .faq-item .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-out;
    opacity: 0;
    padding-top: 0;
}

.faq .faq-item.faq-active {
    background-color: color-mix(in srgb, var(--accent-color), white 95%);
    border-color: var(--accent-color);
}

.faq .faq-item.faq-active h3 {
    color: var(--accent-color);
    padding-bottom: 0;
}

.faq .faq-item.faq-active .faq-content {
    max-height: 500px;
    /* Arbitrary large height */
    opacity: 1;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 185, 210, 0.1);
    margin-top: 15px;
}

.faq .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
    color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}