body {
	font-family: 'Arial', sans-serif;
	background-color: #f4f4f4;
	padding: 20px;
}

h1 {
	text-align: center;
	font-size: 24px;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
	background-color: #fff;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq {
	border-bottom: 1px solid #ddd;
	padding: 15px 0;
}

.faq:last-child {
	border-bottom: none;
}

.faq-question {
	font-size: 18px;
	font-weight: bold;
	display: flex;
	/* justify-content: space-between; */
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.faq-answer {
	display: none;
	font-size: 16px;
	color: #666;
	margin-top: 10px;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq.open .faq-answer {
	display: block;
	padding-top: 10px;
}


/* FAQ container */
.faq-question {
    position: relative; /* Needed to position the icon */
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
	ransition: transform 0.3s ease;
}

/* Custom CSS Arrows */
.faq-question::after {
    content: '\25BC'; /* Down arrow */
    font-size: 18px;
    position: absolute;
    right: 0; /* Positioning the icon to the right */
    transition: transform 0.3s ease;
}

.faq.open .faq-question::after {
    content: '\25B2'; /* Up arrow */
}

/* Adjust padding to leave space for the arrow on the right */
.faq-question {
    padding-right: 30px; /* Enough space for the arrow */
}

/* Responsive Design */
@media (max-width: 600px) {
	.faq-question {
		font-size: 16px;
	}
	.faq-answer {
		font-size: 14px;
	}
}