/* FAQ Section */
.faq-section {
    padding: 120px 0 80px;
    position: relative;
}

.section-title {
    font-family: var(--font-main);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
    text-shadow: var(--neon-glow);
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    color: rgba(240, 240, 255, 0.8);
}

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

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 20px;
    border: 1px solid var(--primary);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--neon-glow);
}

.faq-question {
    font-family: var(--font-main);
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.faq-question::before {
    content: 'Q';
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.faq-answer {
    padding-left: 45px;
}

.faq-answer::before {
    content: 'A';
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    float: left;
}

/* SEO Block */
.seo-block {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 40px;
    margin: 60px auto;
    max-width: 900px;
    border: 1px solid var(--secondary);
    position: relative;
}

.seo-block::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 12px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    z-index: -1;
    opacity: 0.3;
}

.seo-block p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.seo-block strong {
    color: var(--accent);
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--dark);
    font-family: var(--font-main);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    font-size: 1.1rem;
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.8);
}



/* Responsive styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding-left: 0;
    }
    
    .faq-answer::before {
        float: none;
        display: block;
        margin-bottom: 10px;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}