.elementor-element-9a6caf0
{
    background: #fafafa;
    padding: 60px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 280px;
}
.elementor-element-ec5c99d .elementor-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #fff7ed;
    font-size: 38px;
    margin: auto;
}
 

/* FAQ Accordion Styles */
.faq-accordion-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    padding-right: 20px;
    flex: 1;
}

.faq-icon {
    font-size: 28px;
    color: #666;
    font-weight: 300;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.faq-item.active {
    border-color: #b87939;
    background: #fef9f5;
}

.faq-item.active .faq-question {
    background: #fef9f5;
    border-bottom: 1px solid #f0f0f0;
}

.faq-item.active .faq-question h3 {
    color: #b87939;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #b87939;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
    background: #fef9f5;
}

.faq-answer-content {
    padding-top: 15px;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.faq-answer-content p {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .elementor-element-9a6caf0 {
        min-height: 250px;
    }
    .faq-accordion-wrapper {
        padding: 0 15px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-icon {
        font-size: 24px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 15px 20px;
    }
    
    .faq-answer-content {
        font-size: 14px;
    }
}