.blog-faq-wrapper {
	max-width: 900px;
	margin: 40px auto;
	font-family: Arial, sans-serif;
}

.blog-faq-heading {
	text-align: center;
	font-size: 32px;
	letter-spacing: 1px;
	margin-bottom: 25px;
}

/* Accordion container items */
.blog-faq-item {
	border: 1px solid #e0e0e0;
	box-shadow: 0 4px 8px rgba(0,0,0,0.08);
	margin-bottom: 0;
}

.blog-faq-item + .blog-faq-item {
	border-top: none;
}

/* Hide the checkbox itself */
.blog-faq-toggle {
	display: none;
}

/* Question row */
.blog-faq-question {
	display: block;
	width: 100%;
	background: #e21824; /* red bar */
	color: #ffffff;
	padding: 16px 20px;
	text-align: left;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	position: relative;
	font-size: 16px;
}

/* Plus / minus icon on the right */
.blog-faq-question::after {
	content: "+";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
}

.blog-faq-toggle:checked + .blog-faq-question::after {
	content: "−";
}

/* Answer panel */
.blog-faq-answer {
	max-height: 0;
	overflow: hidden;
	background: #ffffff;
	padding: 0 20px;
	font-size: 15px;
	line-height: 1.6;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

/* When checkbox is checked, expand */
.blog-faq-toggle:checked ~ .blog-faq-answer {
	max-height: 500px; /* large enough for most answers */
	padding: 18px 20px 20px;
}

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