/* FAQ Block */
.faq-block {
    padding: 60px 0;
    background: #fff;
}

.faq-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 200px;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e428b;
    text-align: left;
}

.faq-content {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    text-align: left;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(247, 247, 247, 0.8);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(247, 247, 247, 1);
}

.faq-question[aria-expanded="true"] {
    background: #1e428b;
}

.faq-question[aria-expanded="true"] .faq-question-text {
    color: #fff;
}

.faq-question[aria-expanded="true"] .faq-icon {
    color: #fff;
    transform: rotate(180deg);
}

.faq-question-text {
    font-size: 16px;
    font-weight: 600;
    color: #1d428a;
    transition: color 0.3s;
    padding-right: 20px;
}

.faq-icon {
    font-size: 18px;
    color: #1d428a;
    transition: all 0.3s;
}

.faq-answer {
    background: #fff;
    border-top: 1px solid #e0e0e0;
}

.faq-answer-content {
    padding: 25px;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.no-faqs {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 1400px) {
    .faq-container {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 1024px) {
    .faq-container {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-content {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .faq-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .faq-block {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question-text {
        font-size: 15px;
    }
    
    .faq-answer-content {
        padding: 20px;
        font-size: 14px;
    }
}
