/* FAQ Section */
.faq-section {
    padding: 80px 40px;
    background-color: #FFFAF5;
}
.faq-section .container {
    max-width: 1415px !important;
}
.faq-header {
    margin-bottom: 2rem;
}

.faq-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #707070;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: black;
    margin-bottom: 1.5rem;
}

.btn-chat-experts-faq {
    background-color: #ff5722;
    color: white;
    padding: 15px 75px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.btn-chat-experts-faq:hover {
    background-color: #e64a19;
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
    color: white;
    text-decoration: none;
}

.faq-content {
    padding-left: 2rem;
}

.faq-list {
    border-radius: 8px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #CCCCCC;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}


.faq-question h4 {
    font-size: 25px;
    font-weight: 600;
    color: #707070;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
    line-height: 1.4;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #C7C7C7;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
    
}

.faq-icon i {
    font-size: 12px;
    color: #C7C7C7;
    transition: all 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    background-color: #FE5A13;
    transform: rotate(45deg);
}

.faq-question[aria-expanded="true"] .faq-icon i {
    color: white;
}

.faq-answer {
    transition: all 0.3s ease;
}

.faq-answer-content {
    padding: 0 0 1.5rem 0;
}

.faq-answer-content p {
    color: #707070;
    line-height: 1.6;
    margin: 0;
    font-size: 18px;
}

/* Enhanced hover effects */
.faq-item:hover {
    background-color: #FFFAF5;
}

.faq-question[aria-expanded="true"] {
    background-color: transparent;
}

.faq-question[aria-expanded="true"] h4 {
    color: #FE5A13;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-section .row {
        flex-direction: column;
    }
    
    .faq-section .col-lg-6 {
        max-width: 100%;
        flex: 0 0 100%;
        width: 100%;
        text-align: center;
    }
    
    .faq-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .faq-header .section-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 992px) {
    .faq-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .faq-header .section-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    
    .faq-header .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.125rem;
    }
    
    .faq-question {
        padding: 1.25rem 0;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .btn-chat-experts-faq {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .faq-header .section-title {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 0;
    }
    
    .faq-question h4 {
        font-size: 0.95rem;
        padding-right: 0.5rem;
    }
    
    .faq-answer-content p {
        font-size: 0.9rem;
    }
}