
.right{
    padding: 20px 0 40px 380px;
}
.faq_container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.faq-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #028a0d;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: #1e293b;
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #f1f5f9;
}

.faq-question.active {
    background-color: #e5f5e5;
    color: #028a0d;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 12px 20px;
    color: #475569;
    font-size: 0.95rem;
}

.faq-answer-content p {

}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.highlight {
    color: #028a0d;
    font-weight: 500;
}

@media (max-width: 768px) {
    .faq_container {
        padding: 20px 15px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }

    .faq-answer-content {
        padding: 0 15px 15px 15px;
        font-size: 0.9rem;
    }
}