* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    min-height: 100vh;
    color: #333;
}

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Floating Bubbles Background */
.faq-floating-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}
.faq-floating-bg .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
    background: linear-gradient(135deg, #fffbe6 0%, #ffd6e0 100%);
    animation: bubbleFloat 18s linear infinite;
}
.faq-floating-bg .shape:nth-child(1) {
    width: 180px; height: 180px;
    left: 5%; top: 10%;
    animation-delay: 0s;
}
.faq-floating-bg .shape:nth-child(2) {
    width: 120px; height: 120px;
    right: 10%; top: 30%;
    animation-delay: 4s;
}
.faq-floating-bg .shape:nth-child(3) {
    width: 90px; height: 90px;
    left: 20%; bottom: 10%;
    animation-delay: 8s;
}
.faq-floating-bg .shape:nth-child(4) {
    width: 140px; height: 140px;
    right: 15%; bottom: 15%;
    animation-delay: 12s;
}

@keyframes bubbleFloat {
    0% { transform: translateY(0) scale(1); opacity: 0.18; }
    50% { transform: translateY(-40px) scale(1.08); opacity: 0.28; }
    100% { transform: translateY(0) scale(1); opacity: 0.18; }
}

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

.section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-badge-color {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(174, 101, 220, 0.3);
    color: #a084ee;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;

}

.section-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(102, 126, 234, 0.05);
}

.faq-question.active {
    background: rgba(102, 126, 234, 0.1);
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.question-text {
    font-size: 1rem;
    font-weight: 590;
    color: #2d3748;
    line-height: 1.5;
    margin-right: 20px;
}

.question-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-question.active .question-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-answer.active {
    max-height: 300px;
    opacity: 1;
    padding-top: 30px;
}

.answer-content {
    padding: 0 28px 28px;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
}

.faq-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

    .section-title {
        font-size: 2rem;
    }

    .faq-question {
        padding: 20px 24px;
    }

    .question-text {
        font-size: 1rem;
        margin-right: 16px;
    }

    .answer-content {
        padding: 0 24px 24px;
        font-size: 0.95rem;
    }

    .faq-stats {
        gap: 30px;
        margin-top: 40px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* Animation for smooth entrance */
.faq-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.faq-card:nth-child(1) { animation-delay: 0.1s; }
.faq-card:nth-child(2) { animation-delay: 0.2s; }
.faq-card:nth-child(3) { animation-delay: 0.3s; }
.faq-card:nth-child(4) { animation-delay: 0.4s; }
.faq-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
