/* FAQ Block Container */
.ic-faq-block {
    margin: 2.5rem 0;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.faq-section-title {
    margin-bottom: 2rem;
    font-size: 2rem;
    line-height: 1.3;
    color: #1a1a1a;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    background-color: #0079AC;
    margin: 0 !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    color: #ffffff !important;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 30px !important;
    position: relative;
    transition: color 0.2s ease;
    padding: 1.5rem;
}

.faq-question:hover {
    opacity: 0.8;
}

/* Plus/Minus indicator */
.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    transition: transform 0.3s ease;
    font-size: 30px;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

/* Answer styling - hidden by default */
.faq-answer {
    background-color: #F1F1F1;
    display: none;
    line-height: 1.6;
    color: #444;
    overflow: hidden;
    text-align: left;
    padding:25px;
    
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer a {
    color: #0073aa;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Empty state message (only visible in editor) */
.faq-empty-message {
    padding: 1rem;
    background-color: #f0f0f0;
    border: 1px dashed #ccc;
    border-radius: 4px;
    text-align: center;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    
    .faq-section-title {
        font-size: 1.75rem;
    }
    
    .faq-question {
        font-size: 17px !important;
    }
    .faq-question::after{
        font-size: 26px;
        right: 10px;
    }
}

@media (min-width: 1400px) {
    .faq-container {
        max-width: 1320px;
    }
}