.faqs-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.faqs-title {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--text-white);
    margin-bottom: 16px;
    font-weight: 700;
}

.faqs-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--accent-color);
    max-width: 600px;
    margin: 0 auto;
}

.faqs-section {
    padding: 80px 0 120px;
    background-color: var(--primary-color);
}

.faqs-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(0, 217, 255, 0.03);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.15);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 217, 255, 0.05);
}

.faq-question-text {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 50%;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    background: var(--accent-color);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 28px 28px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.faq-answer-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

.faq-answer-content br {
    display: block;
    margin: 8px 0;
    content: "";
}

@media (max-width: 768px) {
    .faqs-hero {
        padding: 120px 0 60px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-answer-content {
        padding: 0 20px 20px;
        font-size: 15px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .faqs-title {
        font-size: 28px;
    }

    .faqs-subtitle {
        font-size: 16px;
    }

    .faq-question {
        padding: 16px;
        gap: 12px;
    }

    .faq-question-text {
        font-size: 15px;
    }

    .faq-answer-content {
        padding: 0 16px 16px;
        font-size: 14px;
    }
}
