.faq-c51f1162-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: Inter, sans-serif !important;
}

.faq-c51f1162-item {
    background-color: #ffffff;
    border: 1px solid #E4E8E5;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Active State Styles */
.faq-c51f1162-item.active {
    border-left: 5px solid #174A3D !important; /* Dark green accent line */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    
}

.faq-c51f1162-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}

.faq-c51f1162-item.active .faq-c51f1162-header {
    background-color: #F4F7F4; /* Light greenish background on active */
    border-bottom: 1px solid #E4E8E5;
}

.faq-c51f1162-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    padding-right: 20px;
}

.faq-c51f1162-category {
    color: #B59345; /* Gold color */
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
}

.faq-c51f1162-divider {
    width: 1px;
    height: 16px;
    background-color: #D1D5D2;
}

.faq-c51f1162-question {
    color: #174A3D; /* Dark green */
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Icon Buttons */
.faq-c51f1162-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #DFCDA6;
    background-color: #FAF8F2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #174A3D;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-c51f1162-icon-minus {
    display: none;
}

.faq-c51f1162-item.active .faq-c51f1162-icon {
    background-color: #174A3D;
    border-color: #174A3D;
}

.faq-c51f1162-item.active .faq-c51f1162-icon-plus {
    display: none;
}

.faq-c51f1162-item.active .faq-c51f1162-icon-minus {
    display: block;
}

/* Content Area */
.faq-c51f1162-content {
    display: none;
    background-color: #ffffff;
}

.faq-c51f1162-content-inner {
    padding: 24px;
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
}

.faq-c51f1162-content-inner p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .faq-c51f1162-header {
        padding: 16px;
        align-items: flex-start;
    }
    
    .faq-c51f1162-header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .faq-c51f1162-divider {
        display: none; /* Hide vertical divider on mobile */
    }
    
    .faq-c51f1162-content-inner {
        padding: 16px;
        font-size: 14px;
    }
}