.elementor-6277 .elementor-element.elementor-element-756cc27{--display:flex;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-6277 .elementor-element.elementor-element-bc64799{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-6277 .elementor-element.elementor-element-52c94e9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-50a4225 *//* --- Premium Accordion FAQs (Single CSS) --- */
.seo-accordion-faqs {
    max-width: 850px;
    margin: 50px auto;
    font-family: 'Poppins', sans-serif;
    padding: 0 15px;
}

.faq-header {
    text-align: center;
    margin-bottom: 30px;
}

.faq-header h2 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.faq-header p {
    color: #666;
    font-size: 15px;
}

.faq-box {
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Hover Effect */
.faq-box:hover {
    border-color: #D4AF37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.faq-title {
    padding: 18px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    list-style: none; /* Hides default arrow */
    position: relative;
    user-select: none;
    background-color: #ffffff;
}

/* Hides default arrow in Safari/Chrome */
.faq-title::-webkit-details-marker {
    display: none; 
}

/* The Plus Icon (+) */
.faq-title::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #D4AF37;
    font-weight: 400;
}

/* The Minus Icon (-) when Clicked/Opened */
.faq-box[open] .faq-title::after {
    content: '−';
    color: #B8860B;
}

/* Active State Title Color */
.faq-box[open] .faq-title {
    color: #B8860B;
    border-bottom: 1px solid #f0f0f0;
}

.faq-text {
    padding: 20px 25px;
    background-color: #fdfdfd;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    animation: slideDown 0.4s ease-out;
}

.faq-text p {
    margin: 0;
}

/* Smooth unhide animation */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .faq-title {
        font-size: 15px;
        padding: 15px 40px 15px 15px; /* Space for icon */
    }
    .faq-title::after {
        right: 15px;
    }
    .faq-text {
        font-size: 14px;
        padding: 15px;
    }
}/* End custom CSS */