
.faq-container {
    max-width: 1200px;
    margin: auto;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    background-color: #1fadb1;
    border-radius: 15px;
    border: 1px solid transparent; /* Default border */
    padding: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
	color: #ffffff;
    transition: background-color 0.3s, border 0.3s;
    position: relative; /* For positioning the arrow */
}

.faq-question:hover {
    background-color: #222e44; /* Increase transparency on hover */
}

.faq-question.active {
    border: 1px solid #292f51; /* Active question border */
	background-color: #222e44; color: #fff;
}

.arrow {
    margin-right: 10px;
    font-size: 1em; /* Arrow size */
    transition: transform 0.3s; /* Smooth transition for arrow rotation */
}

.faq-answer {
    display: none; /* Hide answer by default */
    margin-top: 10px; /* Space between question and answer */
    background-color: #f6f6f6; /* Match question background */
    border-radius: 15px;
    padding: 15px;
	color: #333333;
	text-align: left;
}

.faq-question.active + .faq-answer {
    display: block; /* Show answer when question is active */
}

.faq-question.active .arrow {
    transform: rotate(90deg); /* Rotate arrow down when active */
}

@media only screen and (max-width: 768px) {
	.faq-container {
    max-width: 90%;
    margin: auto;
}
}