/* Frontend Styles */
.multi-section-wrapper {
	max-width: 100%;
	margin: 20px 0;
}

.multi-section-content {
	background: #f9f9f9;
	padding: 30px;
	border-radius: 4px;
	margin-bottom: 20px;
}

.section-title {
	margin-top: 0;
	margin-bottom: 20px;
	color: #333;
	font-size: 28px;
	font-weight: 600;
}

.section-body {
	color: #666;
	line-height: 1.6;
}

.section-body p {
	margin-bottom: 15px;
}

.section-body ul,
.section-body ol {
	margin: 15px 0 15px 30px;
}

.section-body li {
	margin-bottom: 8px;
}

.multi-section-pagination {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #ddd;
}

.pagination-info {
	text-align: center;
	color: #666;
	font-weight: 500;
}

.current-page,
.total-pages {
	font-weight: bold;
	color: #333;
}

.btn {
	display: inline-block;
	padding: 10px 20px;
	background-color: #0073aa;
	color: #fff;
	text-decoration: none;
	border-radius: 3px;
	transition: background-color 0.3s ease;
}

.btn:hover {
	background-color: #005a87;
	text-decoration: none;
	color: #fff;
}

.btn-prev {
	order: 1;
}

.btn-next {
	order: 3;
}

/* Responsive */
@media (max-width: 768px) {
	.multi-section-content {
		padding: 20px;
	}

	.section-title {
		font-size: 22px;
	}

	.multi-section-pagination {
		flex-wrap: wrap;
	}

	.btn {
		padding: 8px 16px;
		font-size: 14px;
	}
}
