.accordions {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	border: 1px solid #ddd;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.accordion {
	border-bottom: 1px solid #ddd;
}

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

.accordion-title {
	width: 100%;
	background-color: #f7f7f7;
	color: #333;
	font-size: 18px;
	font-weight: bold;
	padding: 15px;
	text-align: left;
	border: none;
	cursor: pointer;
	outline: none;
	transition: background-color 0.3s;
}

.accordion-title:hover {
	background-color: #e6e6e6;
}

.accordion-text {
	display: none;
	padding: 15px;
	background-color: #fff;
	border-top: 1px solid #ddd;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-text p {
	margin: 0;
}
