/**
 * Main FAQ Page CSS
 */

.iscents-faq-wrapper {
   
}

/* Intro Section */
.iscents-faq-intro {
    text-align: center;
    margin-bottom: 40px;
}

.iscents-faq-badge {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #e4b565;
    margin-bottom: 12px;
}

.iscents-faq-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #24262e;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 16px;
}

.iscents-faq-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #e4b565, #d4a03a);
    border-radius: 2px;
}

.iscents-faq-intro p {
    
    color: #495057;
    margin: 0 auto;
}

.iscents-faq-intro a {
    color: #e4b565;
    text-decoration: none;
}

.iscents-faq-intro a:hover {
    text-decoration: underline;
}

/* FAQ List */
.iscents-faq-list {
    margin-top: 20px;
}

.iscents-faq-item {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.iscents-faq-item:hover {
    border-color: #e4b565;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.iscents-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.iscents-faq-question:hover {
    background: #fafafa;
}

.iscents-faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: #24262e;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 600;
    color: #e4b565;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.iscents-faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.iscents-faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    /*background: #fafafa;*/
    border-top: 1px solid transparent;
}

.iscents-faq-item.active .iscents-faq-answer {
    padding: 0 24px 20px 24px;
    max-height: 500px;
    border-top-color: #f0f0f0;
}

.iscents-faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 12px 0;
}

.iscents-faq-answer p:last-child {
    margin-bottom: 0;
}

.iscents-faq-answer strong {
    font-weight: 700;
    color: #24262e;
}

.iscents-faq-answer a {
    color: #e4b565;
    text-decoration: none;
}

.iscents-faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .iscents-faq-wrapper {
        margin: 20px auto;
    }
    
    .iscents-faq-intro h2 {
        font-size: 24px;
    }
    
    .iscents-faq-intro p {
        font-size: 14px;
    }
    
    .iscents-faq-question {
        padding: 14px 18px;
    }
    
    .iscents-faq-question h3 {
        font-size: 15px;
    }
    
    .faq-toggle {
        font-size: 20px;
    }
    
    .iscents-faq-item.active .iscents-faq-answer {
        padding: 0 18px 16px 18px;
    }
    
    .iscents-faq-answer p {
        font-size: 14px;
    }
}