/* Enhanced FAQ Section Styles */
.faq-section {
    padding: 8rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(44, 107, 237, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(90, 85, 201, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-category {
    margin-bottom: 2rem;
}

.faq-category-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(44, 107, 237, 0.1);
    position: relative;
}

.faq-category-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.faq-item {
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    /* Remove cursor pointer since it's no longer clickable */
    cursor: default;
}

.faq-question-icon {
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0.8;
}

.faq-question-text {
    flex-grow: 1;
    font-size: 1.1rem;
    line-height: 1.4;
}

.faq-toggle {
    display: none; /* Hide the toggle icon since we don't need it anymore */
}

.faq-answer {
    max-height: none; /* Always show the answer */
    overflow: visible;
    background-color: rgba(248, 249, 252, 0.5);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
}

.faq-answer-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-answer-content {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question-icon {
        font-size: 1rem;
    }
    
    .faq-question-text {
        font-size: 0.95rem;
    }
    
    .faq-toggle {
        width: 20px;
        height: 20px;
    }
    
    .faq-answer-content {
        padding: 0 1.2rem 1.2rem;
        font-size: 0.9rem;
    }
}
