.accordion {
	width: 100%;
	max-width: 650px;
	margin: 0 auto;
	font-family: Arial, sans-serif;
}

.accordion-item {
	margin-bottom: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	overflow: hidden;
}

.accordion-input {
	display: none;
}

.accordion-title {
	display: block;
	padding: 12px;
	background: #f8f8f8;
	cursor: pointer;
	font-weight: bold;
	transition: background 0.3s;
}

.accordion-title:hover {
	background: #e8e8e8;
}

.accordion-title::after {
	content: '+';
	float: right;
	font-weight: bold;
}

.accordion-content {
	max-height: 0;
	padding: 0 15px;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	background: white;
}

.accordion-input:checked ~ .accordion-content {
	max-height: 500px;
	padding: 15px;
}

.accordion-input:checked ~ .accordion-title {
	background: #e0e0e0;
}

.accordion-input:checked ~ .accordion-title::after {
	content: '-';
}