   
.faq-container {
    max-width: 800px;
    margin: 40px auto;
    margin-top:200px;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    color: #004ba3;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-header p {
    color: #666;
    font-size: 14px;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3498db;
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.faq-question i {
    font-size: 14px;
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fcfcfc;
}

.answer-content {
    padding: 0 20px 20px 20px;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    max-height: 500px; 
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active {
    border-color: #3498db;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 14px;
        padding: 15px;
    }
}