/* FAQ Section - Light Theme Styles */
.rn-faq-area {
    padding: 120px 0; 
    position: relative;
}

.faq-wrapper {
    margin-top: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-header {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f1f25;
    transition: color 0.3s ease;
}

.faq-toggle-icon {
    position: relative;
    width: 18px;
    height: 18px;
}

.faq-toggle-icon:before,
.faq-toggle-icon:after {
    content: '';
    position: absolute;
    background-color: #ff8201;
    transition: transform 0.3s ease;
}

.faq-toggle-icon:before {
    width: 18px;
    height: 2px;
    top: 8px;
    left: 0;
}

.faq-toggle-icon:after {
    width: 2px;
    height: 18px;
    top: 0;
    left: 8px;
}

.faq-item.active .faq-toggle-icon:after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-content {
    padding-bottom: 30px;
    max-height: 1000px; /* Arbitrary large value */
}

.faq-content p {
    margin: 0;
    color: #717173;
    font-size: 16px;
    line-height: 1.7;
    padding-top: 1rem;
}

.faq-item.active {
    border-left: 4px solid #ff8201;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.faq-item.active .faq-header {
    background-color: rgba(255, 130, 1, 0.03);
}

.faq-item.active .faq-title {
    color: #ff8201;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rn-faq-area {
        padding: 80px 0;
    }
    
    .faq-header {
        padding: 15px 20px;
    }
    
    .faq-title {
        font-size: 16px;
    }
    
    .faq-content {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-content {
        padding-bottom: 20px;
    }
    
    .faq-content p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .rn-faq-area {
        padding: 60px 0;
    }
}