.faq-section {
    position: relative;
    z-index: 1;
    padding: 40px 20px 80px 20px;
    background: #13131e;
    overflow-x: hidden;
}

@media (min-width: 1024px) {
    .faq-section {
        padding: 60px 40px 120px 40px;
    }
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Decorative Gradient Orbs */
.faq-gradient-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.faq-gradient-orb-left {
    top: 30%;
    left: -15%;
    background-color: #a78bfa;
}

.faq-gradient-orb-right {
    bottom: 30%;
    right: -15%;
    background-color: #422ad5;
}

@media (min-width: 768px) {
    .faq-gradient-orb {
        width: 400px;
        height: 400px;
        filter: blur(70px);
    }
}

@media (min-width: 1024px) {
    .faq-gradient-orb {
        width: 500px;
        height: 500px;
        filter: blur(80px);
    }
}

/* Section Header */
.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

@media (min-width: 1024px) {
    .faq-header {
        margin-bottom: 64px;
    }
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px 0;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .faq-title {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }
}

.faq-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .faq-subtitle {
        font-size: 1.25rem;
    }
}

/* FAQ Items */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .faq-list {
        gap: 20px;
    }
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.faq-item.active {
    border-color: rgba(167, 139, 250, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.0625rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .faq-question {
        padding: 24px 32px;
        font-size: 1.125rem;
    }
}

.faq-question:hover {
    color: rgba(255, 255, 255, 0.9);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .faq-answer {
        padding: 0 32px;
    }
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px 24px;
}

@media (min-width: 768px) {
    .faq-item.active .faq-answer {
        padding: 0 32px 24px 32px;
    }
}

.faq-answer-content {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .faq-answer-content {
        font-size: 1rem;
    }
}

.faq-answer-content a {
    color: #a78bfa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer-content a:hover {
    color: #c4b5fd;
    text-decoration: underline;
}

/* FAQ More Button */
.faq-more-container {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .faq-more-container {
        margin-top: 64px;
    }
}

.faq-more-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15) 0%, rgba(66, 42, 213, 0.15) 100%);
    border: 2px solid rgba(167, 139, 250, 0.3);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

@media (min-width: 768px) {
    .faq-more-button {
        padding: 18px 40px;
        font-size: 1.0625rem;
    }
}

.faq-more-button:hover {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.25) 0%, rgba(66, 42, 213, 0.25) 100%);
    border-color: rgba(167, 139, 250, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(167, 139, 250, 0.2);
}

.faq-more-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-more-button:hover .faq-more-icon {
    transform: translateX(4px);
}

/* FAQ Page Template Styles */
.faq-page-section {
    position: relative;
    z-index: 1;
    padding: 80px 20px 120px 20px;
    background: #13131e;
    overflow-x: hidden;
    min-height: 60vh;
}

@media (min-width: 1024px) {
    .faq-page-section {
        padding: 120px 40px 160px 40px;
    }
}

.faq-page-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-page-content {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(4px);
    padding: 40px 24px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .faq-page-content {
        padding: 60px 48px;
    }
}

@media (min-width: 1024px) {
    .faq-page-content {
        padding: 80px 64px;
    }
}

.faq-page-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 32px 0;
    letter-spacing: -0.04em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .faq-page-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
}

@media (min-width: 1024px) {
    .faq-page-title {
        font-size: 3rem;
        margin-bottom: 48px;
    }
}

.faq-page-answer {
    margin-bottom: 48px;
}

.faq-page-answer-content {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .faq-page-answer-content {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
}

@media (min-width: 1024px) {
    .faq-page-answer-content {
        font-size: 1rem;
        line-height: 1.8;
    }
}

.faq-page-answer-content a {
    color: #a78bfa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-page-answer-content a:hover {
    color: #c4b5fd;
    text-decoration: underline;
}

.faq-page-back {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-page-back-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-page-back-link:hover {
    color: #a78bfa;
}

.faq-page-back-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-page-back-link:hover .faq-page-back-icon {
    transform: translateX(-4px);
}

/* FAQ List Page Styles */
.faq-list-page-section {
    position: relative;
    z-index: 1;
    padding: 80px 20px 120px 20px;
    background: #13131e;
    overflow-x: hidden;
    min-height: 60vh;
}

@media (min-width: 1024px) {
    .faq-list-page-section {
        padding: 120px 40px 160px 40px;
    }
}

.faq-list-page-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-list-page-header {
    text-align: center;
    margin-bottom: 64px;
}

@media (min-width: 1024px) {
    .faq-list-page-header {
        margin-bottom: 80px;
    }
}

.faq-list-page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px 0;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .faq-list-page-title {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }
}

.faq-list-page-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .faq-list-page-subtitle {
        font-size: 1.25rem;
    }
}

.faq-list-page-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .faq-list-page-list {
        gap: 20px;
    }
}

.faq-list-page-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-list-page-item:hover {
    border-color: rgba(167, 139, 250, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.faq-list-page-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    text-decoration: none;
    gap: 24px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .faq-list-page-link {
        padding: 28px 40px;
    }
}

.faq-list-page-question {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .faq-list-page-question {
        font-size: 1.0625rem;
    }
}

.faq-list-page-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.faq-list-page-item:hover .faq-list-page-arrow {
    color: #a78bfa;
    transform: translateX(4px);
}

