.page-detail-section {
	padding: 104px 0 56px;
	background: var(--background);
}

.page-detail-wrap {
	margin: 0 auto;
}

.page-detail-hero {
	width: 100%;
	margin: 0 0 24px;
	overflow: hidden;
	border-radius: 8px;
	background: #f1f3f2;
}

.page-detail-hero img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 5;
	object-fit: cover;
	object-position: center;
}

.page-detail-label {
	display: block;
	margin-bottom: 22px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--text-description);
}

.page-detail-content {
	color: var(--text-description-2);
	font-size: 14px;
	line-height: 1.75;
}

.page-detail-content h1,
.page-detail-content h2,
.page-detail-content h3,
.page-detail-content h4 {
	color: var(--text-green);
	font-weight: 700;
	line-height: 1.25;
	margin: 28px 0 12px;
	letter-spacing: 0;
}

.page-detail-content h1:first-child,
.page-detail-content h2:first-child,
.page-detail-content h3:first-child,
.page-detail-content h4:first-child {
	margin-top: 0;
}

.page-detail-content h1 { font-size: 32px; }
.page-detail-content h2 { font-size: 28px; }
.page-detail-content h3 { font-size: 24px; }
.page-detail-content h4 { font-size: 20px; }

.page-detail-content p {
	margin: 0 0 10px;
	color: var(--text-description);
}

.page-detail-content strong,
.page-detail-content b {
	color: var(--text-green);
	font-weight: 700;
}

.page-detail-content ul,
.page-detail-content ol {
	margin: 0 0 18px;
	padding-left: 18px;
}
.page-detail-content ul { list-style: disc; }
.page-detail-content ol { list-style: decimal; }

.page-detail-content li {
	margin-bottom: 6px;
}

.page-detail-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

@media (max-width: 767.98px) {
	.page-detail-section {
		padding: 88px 0 40px;
	}

	.page-detail-hero {
		margin-bottom: 18px;
	}

	.page-detail-hero img {
		aspect-ratio: 16 / 8.5;
	}

	.page-detail-label {
		margin-bottom: 18px;
		font-size: 13px;
	}

	.page-detail-content {
		font-size: 13px;
		line-height: 1.7;
	}

	.page-detail-content h1 { font-size: 26px; }
	.page-detail-content h2 { font-size: 24px; }
	.page-detail-content h3 { font-size: 21px; }
	.page-detail-content h4 { font-size: 18px; }
}

.page-eo-section {
	padding: 0 0 64px;
	background: var(--background);
}

.page-eo-form {
	width: 100%;
	padding: 28px 28px 24px;
	background: #ffffff;
	border: 1px solid #e7ecea;
	border-radius: 8px;
	box-shadow: 0 18px 44px rgba(24, 56, 50, 0.12);
}

.page-eo-form .alert {
	margin-bottom: 18px;
	border-radius: 8px;
	font-size: 13px;
}

.page-eo-form-grid {
    visibility: visible !important;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 10px;
}

.page-eo-field {
	min-width: 0;
}

.page-eo-field-wide,
.page-eo-note,
.page-eo-actions {
	grid-column: 1 / -1;
}

.page-eo-control.form-control,
.page-eo-control.form-select {
	width: 100%;
	height: 32px;
	min-height: 32px;
	border: 1px solid #e0e6e4;
	border-radius: 6px;
	background-color: #ffffff;
	color: var(--text-description);
	font-size: 12px;
	line-height: 1.4;
	padding: 7px 12px;
	box-shadow: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.page-eo-control.form-select {
	padding-right: 34px;
	color: #777b84;
}

.page-eo-control::placeholder {
	color: #777b84;
	opacity: 1;
}

.page-eo-control:focus {
	border-color: var(--text-green);
	box-shadow: 0 0 0 3px rgba(69, 131, 120, 0.08);
}

.page-eo-textarea.form-control {
	height: 72px;
	min-height: 72px;
	resize: vertical;
}

.page-eo-note {
	margin-top: 8px;
	color: var(--text-description-2);
	font-size: 9px;
	line-height: 1.4;
}

.page-eo-actions {
	display: flex;
	justify-content: center;
	padding-top: 4px;
}

.page-eo-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 116px;
	height: 32px;
	border: 0;
	border-radius: 999px;
	background: var(--background-brown);
	color: #ffffff;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	padding: 0 22px;
	cursor: pointer;
	transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.page-eo-submit:hover,
.page-eo-submit:focus {
	background: var(--background-brown-hover);
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(185, 132, 102, 0.3);
	transform: translateY(-1px);
}

@media (max-width: 767.98px) {
	.page-eo-section {
		padding: 0 0 40px;
	}

	.page-eo-form {
		padding: 20px 18px;
	}

	.page-eo-form-grid {
		grid-template-columns: 1fr;
	}

	.page-eo-control.form-control,
	.page-eo-control.form-select {
		height: 38px;
		min-height: 38px;
		font-size: 13px;
	}

	.page-eo-textarea.form-control {
		height: 96px;
		min-height: 96px;
	}
}
