.faq-section-wrap { max-width: 850px; margin: 0 auto; padding: 60px 20px; }
.faq-heading { font-size: 2.2rem; font-weight: 700; color: #1a1a2e; text-align: center; margin-bottom: 40px; }

.faq-accordion { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item.active {
    border-color: #2e7d32;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.08);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    transition: color 0.25s ease;
    gap: 15px;
}
.faq-trigger:hover { color: #2e7d32; }

/* Plus/Minus Icon Design */
.faq-icon-holder {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.faq-icon-line {
    position: absolute;
    background-color: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-icon-line:first-child {
    top: 7px; left: 0; width: 16px; height: 2px;
}
.faq-icon-line:last-child {
    top: 0; left: 7px; width: 2px; height: 16px;
}
.faq-item.active .faq-icon-line:last-child {
    transform: rotate(90deg);
    opacity: 0;
}
.faq-item.active .faq-icon-line:first-child {
    transform: rotate(180deg);
}

.faq-content-wrap {
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-content {
    padding: 0 24px 24px 24px;
    font-size: .97rem;
    color: #555555;
    line-height: 1.7;
}
.faq-content ul { margin: 10px 0 0 20px; padding: 0; }
.faq-content li { margin-bottom: 6px; }

@media (max-width: 580px) {
    .faq-heading { font-size: 1.6rem; margin-bottom: 25px; }
    .faq-trigger { padding: 16px 18px; font-size: 0.95rem; }
    .faq-content { padding: 0 18px 18px 18px; font-size: 0.9rem; }
}
