.faq-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.faq-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.faq-label {
    color: #34C7F5;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.faq-title {
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #1D7AC0, #34C7F5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 3s ease-in-out infinite;
}

.faq-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #F8F9FA;
    border-radius: 4px;
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.faq-question {
    padding: 24px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    font-size: 16px;
}

.faq-question:before {
    content: "+";
    font-size: 24px;
    color: #64B5F6;
    margin-right: 16px;
}

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

.faq-answer p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.faq-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.question-mark {
    position: absolute;
    color: rgba(135, 202, 243, 0.218);
    font-size: 40px;
    animation: float 10s infinite linear;
}

.faq-question.active {
    color: #64b5f6;
    font-weight: 600;
}

.faq-item.active .faq-answer {
    height: auto;
    opacity: 1;
    padding: 0 24px 24px 24px;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0);
    }
    25% {
        transform: translate(50px, -25px) rotate(90deg);
    }
    50% {
        transform: translate(100px, 0) rotate(180deg);
    }
    75% {
        transform: translate(50px, 25px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}


/* Responsive styles */
@media screen and (max-width: 1024px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-section .container {
        max-width: 900px;
    }
}

@media screen and (max-width: 768px) {
    .faq-header {
        margin-bottom: 36px;
    }

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

    .faq-description {
        font-size: 15px;
        max-width: 600px;
    }

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

    .faq-question:before {
        font-size: 20px;
        margin-right: 12px;
    }

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

    .question-mark {
        font-size: 30px;
    }
}

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

    .faq-section .container {
        padding: 0 15px;
    }

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

    .faq-label {
        font-size: 14px;
        margin-bottom: 10px;
    }

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

    .faq-description {
        font-size: 14px;
    }

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

    .faq-question:before {
        font-size: 18px;
        margin-right: 10px;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 16px 16px;
    }

    .faq-answer p {
        font-size: 14px;
        margin-bottom: 16px;
    }
}