/* General Styles */
body {
    color: #2c3e50;
    background: #ecf0f1;
}

.faq-section {
    margin-bottom: 30px;
}

.faq-wrapper {
    display: flex;
    justify-content: center;
}

.faq-content {
    width: 100%;
}

.faq-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #34495e;
}

/* FAQ Item Styles */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
/* 		background-color: #FFFFFF;
	box-shadow: 0px 2px 5px rgba(77, 113, 137, 0.2); */
	padding: 20px 0;

}

.faq-item {
    border-radius: 10px;
    color: #2c3e50;
}

.faq-item:last-child {
	margin-bottom: 0;
}


/* Question Layout */
.faq-question {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #d9534f;
}

.question-marker {
    background-color: #d9534f;
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 3px;
    margin-right: 10px;
    font-size: 18px;
    flex-shrink: 0;
}

.question-text {
    flex-grow: 1;
    color: #34495e;
	font-size: 18px;
    margin: 0;
}

/* Answer Layout */
.faq-answer {
    display: flex;
    align-items: flex-start;
    font-weight: 400;
    font-size: 16px;
    color: #2c3e50;
}

.answer-marker {
    background-color: #5bc0de;
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 3px;
    margin-right: 10px;
    font-size: 18px;
    flex-shrink: 0;
}

.answer-text {
    flex-grow: 1;
    color: #2c3e50;
}

/* Answer content formatting */
.answer-text p {
    margin: 6px 0 10px;
	padding: 0;
}