.page-content-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.page p { color: #797979; text-align: left; margin-bottom: 1rem; }

.page h2 {
	color: #ff7f45;
	text-align: left;
	font-size: 1.6rem;
	margin-bottom: 1rem;
}

.page h3 {
	color: #ff7f45;
	text-align: left;
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

.page a { color: #ff7f45; text-decoration: none; }
.page a:hover { text-decoration: underline; }

.page-full-img,
.wp-block-image {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: 1.5rem;
	border-radius: 6px;
}

.page-img-row {
	display: flex;
	gap: 16px;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
	}

.page-img-row img {
	flex: 1 1 calc(50% - 8px);
	min-width: 200px;
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
}

.page-img-row-4 img {
	flex: 1 1 calc(25% - 12px);
	min-width: 160px;
}

ul.page-feature-list {
	list-style: none;
	padding: 0;
	margin-bottom: 1.5rem;
}

ul.page-feature-list li {
	padding: 6px 0 6px 24px;
	position: relative;
	color: #797979;
}

ul.page-feature-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 14px;
	width: 8px;
	height: 8px;
	background: #ff7f45;
	border-radius: 50%;
}

.page-cta-section {
	background: #797979;
	width: 100%;
	padding: 48px 24px;
	text-align: center;
	margin: 2rem 0 3rem 0;
	border-radius: 8px;
}

.page-cta-section h2 {
	color: #fff;
	text-align: center;
	margin-bottom: 0.75rem;
}

.page-cta-section p {
	color: #e8e8e8;
	text-align: left;
	max-width: 950px;
	margin: 0 auto 1.5rem;
}

.page-cta-btn, a.page-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #ff7f45;
	color: #fff;
	border: none;
	padding: 14px 32px;
	font-size: 1rem;
	border-radius: 4px;
	cursor: pointer;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.2s;
}

.page-cta-btn:hover, a.page-cta-btn:hover { background: #e06b33; color: #fff; text-decoration: none; }

.page-cta-btn .page-phone-icon {width: 20px;
	height: 20px;
	fill: #fff;
	flex-shrink: 0;
}

.page-two-col {
	display: flex;
	gap: 40px;
	align-items: flex-start;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.page-two-col .page-col-text {
	flex: 1 1 300px;
}

.page-two-col .page-col-img {
	flex: 0 0 295px;
	max-width: 295px;
}

.page-two-col .page-col-img img {
	width: 100%;
	height: auto;
	max-height: 300px;
	object-fit: cover;
	border-radius: 6px;
	display: block;
}

.page-three-col {
	display: flex;
	gap: 24px;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.page-three-col .page-col {
	flex: 1 1 calc(33.333% - 16px);
	min-width: 200px;
	text-align: center;
}

.page-three-col .page-col img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	margin-top: 10px;
	display: block;
}

.three-col .col p {
	text-align: center;
	font-weight: 700;
	color: #797979;
	margin-bottom: 0;
}

.page-tabs { margin-bottom: 2rem; }

.page-tab-labels {
	display: flex;
	gap: 0;
	border-bottom: 2px solid #e0e0e0;
	margin-bottom: 0;
}

.page-tab-label {
	padding: 12px 28px;
	cursor: pointer;
	color: #797979;
	font-size: 0.95rem;
	font-weight: 600;
	border: none;
	background: none;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	transition: color 0.2s, border-color 0.2s;
	white-space: nowrap;
}

.page-tab-label:hover { color: #ff7f45; }
.page-tab-label.active { color: #ff7f45; border-bottom-color: #ff7f45; }

.page-tab-content { display: none; padding: 24px 0; }
.page-tab-content.active { display: block; }

.page-tab-content p { margin-bottom: 1rem; }
.page-tab-content img { max-width: 100%; height: auto; border-radius: 6px; display: block; margin: 12px auto; }

.page-order-form {
	max-width: 1200px;
	margin: 0 auto 2rem;
	padding: 45px 0;
}

.page-order-form h2 {
	text-align: center;
	margin-bottom: 1.5rem;
}

.page-form-row {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.page-form-row input,
.page-form-row textarea {
	flex: 1 1 180px;
	padding: 12px 16px;
	border: 1px solid #d0d0d0;
	border-radius: 4px;
	font-size: 0.95rem;
	color: #797979;
	outline: none;
	transition: border-color 0.2s;
	font-family: inherit;
	background: #fafafa;
}

.page-form-row textarea {
	flex: 1 1 100%;
	min-height: 120px;
	resize: vertical;
}

.page-form-row input:focus,
.page-form-row textarea:focus {
	border-color: #ff7f45;
	background: #fff;
}

.page-form-submit {
	display: flex;
	justify-content: center;
	margin-top: 8px;
}

.page-submit-btn {
	background: #ff7f45;
	color: #fff;
	border: none;
	padding: 14px 48px;
	font-size: 1rem;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
	transition: background 0.2s;
}

.page-submit-btn:hover { background: #e06b33; }

.page-section-spacer { margin-bottom: 2rem; }

@media (max-width: 640px) {
.page-two-col .page-col-img { max-width: 100%; flex-basis: 100%; }
.page-img-row-4 img { flex-basis: calc(50% - 8px); }
.page-tab-label { padding: 10px 16px; font-size: 0.85rem; }
.page h2 { font-size: 1.3rem; }	
}