.qrise-faq-section {
    width: 95%;
    margin: auto;
    border-radius: 30px;
    padding: 80px 0;
}
    
.qrise-faq-container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.qrise-faq-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.qrise-faq-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.qrise-faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.qrise-faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.qrise-faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.qrise-faq-question:hover {
    color: #4b83f2;
}

.qrise-faq-arrow {
    transition: transform 0.3s ease;
}

.qrise-faq-item.active .qrise-faq-arrow {
    transform: rotate(180deg);
}

.qrise-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.qrise-faq-item.active .qrise-faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.qrise-faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .qrise-faq-title {
        font-size: 2rem;
    }
    
    .qrise-faq-subtitle {
        font-size: 1rem;
    }
    
    .qrise-faq-question {
        padding: 1.2rem;
    }
}