/* FAQ Section */
.faq-section {
    background-color: var(--color-white);
    padding-bottom: 50px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 15px 0;
}

.faq-title .highlight-text {
    color: var(--color-primary);
}

.faq-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--color-text-secondary);
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.faq-item:first-child {
    border-top: 1px solid #e0e0e0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-primary-dark);
}

.faq-question span {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--color-text-tertiary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(0deg);
    color: #ffffff;
}

/* Hide/show icons based on active state */
.faq-item:not(.active) .faq-icon.close-icon {
    display: none;
}

.faq-item.active .faq-icon:not(.close-icon) {
    display: none;
}

.faq-item.active .faq-icon.close-icon {
    display: block;
}

/* Change collapsed icon to plus sign */
.faq-item:not(.active) .faq-icon:not(.close-icon) {
    position: relative;
}

.faq-item:not(.active) .faq-icon:not(.close-icon)::before {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 300;
    color: var(--color-primary);
}

.faq-item:not(.active) .faq-icon:not(.close-icon) path {
    display: none;
}

.faq-item.active .faq-question span {
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: transparent;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 0;
    background-color: var(--color-dark-faq);
    border-radius: 8px;
    margin: 10px 0;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
    padding: 0 20px;
}

.faq-item.active .faq-question {
    background-color: var(--color-dark-faq);
    border-radius: 8px;
    padding: 20px;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
}

.faq-cta-title {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 600;
    color: var(--color-primary-dark);
    margin: 0 0 25px 0;
}

.btn-help-center {
    display: inline-block;
    background-color: var(--color-primary-medium);
    color: var(--color-text-white);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-help-center:hover {
    background-color: var(--color-primary-darker);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(112, 192, 208, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-subtitle {
        font-size: 16px;
    }

    .faq-question span {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 15px;
        padding: 0 15px;
    }

    .faq-item.active .faq-question {
        padding: 15px;
    }

    .faq-cta {
        margin-top: 40px;
    }

    .faq-cta-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-header {
        margin-bottom: 30px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-question {
        padding: 15px 0;
    }

    .faq-question span {
        font-size: 15px;
        padding-right: 15px;
    }

    .faq-item.active .faq-answer {
        padding: 15px 0;
        margin: 8px 0;
    }

    .faq-answer p {
        font-size: 14px;
        padding: 0 12px;
    }

    .btn-help-center {
        padding: 12px 28px;
        font-size: 15px;
    }
}.contact_our_help_center{
    border: var(--color-primary-medium);
    cursor: pointer;
}

