.faq-adv-container {
    width: 100%;
}
.faq-category-block {
    margin-bottom: 50px;
}
.faq-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    flex-direction: column;
    position: relative;
}
.faq-cat-title {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 700;
}
.faq-cat-desc {
    color: #666;
    margin: 0;
}
.faq-toggle-all {
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-top: 15px;
    transition: background 0.3s;
}
.faq-toggle-all:hover {
    background: #388E3C;
}

/* 2 Columns on PC */
.faq-questions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}
@media (min-width: 768px) {
    .faq-questions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

.faq-item {
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
}
.faq-question-header {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f1f8e9; 
    border-radius: 6px;
    transition: 0.3s;
}
.faq-question-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #2e7d32;
}
.faq-icon {
    transition: transform 0.3s;
    color: #4CAF50;
    background: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-item.active .faq-question-header {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.faq-answer-inner {
    padding: 20px;
    font-size: 14px;
    color: #555;
}
.faq-cta-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #4CAF50; /* Default, overridden by Elementor styles */
    color: #fff; /* Default, overridden by Elementor styles */
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}
.faq-cta-btn:hover {
    background-color: #388E3C;
}
.faq-banner-block {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* No background colors or overlays here */
}
.faq-banner-content {
    padding: 40px;
    text-align: center;
    width: 100%;
}
.faq-banner-title {
    margin: 0 0 15px;
    font-size: 32px;
    color: #111; /* Changed default to dark so it's visible without image */
}
.faq-banner-text {
    font-size: 18px;
    margin-bottom: 25px;
    color: #333;
}
.faq-banner-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #2e7d32;
    color: #fff;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}
.faq-banner-btn:hover {
    opacity: 0.9;
}