.faq-container-block {
    max-width: 1200px;
    margin: 30px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.faq-list {
    border-top: 1px solid #eaeaea;
}

.faq-item {
    border-bottom: 1px solid #eaeaea;
}

.faq-question {
    width: 100%;
    background: #ffffff;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0061d2;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #0061d2;
 	background: #ffffff;
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    user-select: none;
}

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

.faq-answer-content {
    padding-bottom: 18px;
    color: #555;
    line-height: 1.6;
	
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #ff4d4d;
}