/* Shared styles for static content pages */

main {
	background: #f7f9fc;
	color: #333;
	padding-bottom: 40px;
}

.page-banner {
	height: 220px;
	background: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)),
		url('../img/about.jpeg');
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	margin-top: 0;
	margin-bottom: 40px;
}

.page-banner h1 {
	font-size: 42px;
	margin-bottom: 10px;
}

.page-banner p {
	font-size: 18px;
}

.static-page {
	width: 100%;
	margin: 0 0 60px;
	background: #fff;
	padding: 40px 44px;
	border-radius: 14px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
}

.static-page h2 {
	color: #c99143;
	font-size: 24px;
	margin: 32px 0 14px;
}

.static-page h2:first-child {
	margin-top: 0;
}

.static-page h3 {
	color: #222;
	font-size: 18px;
	margin: 22px 0 10px;
}

.static-page p {
	line-height: 1.8;
	margin-bottom: 14px;
	color: #444;
}

.static-page ul,
.static-page ol {
	margin: 0 0 18px 22px;
	line-height: 1.9;
	color: #444;
}

.static-page li {
	margin-bottom: 6px;
}

.static-page .cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.static-page .cta-row .btn {
	display: inline-block;
	padding: 12px 22px;
	background: linear-gradient(135deg, #c99143, #e4b86b);
	color: #111;
	border-radius: 8px;
	font-weight: 600;
}

.static-page .cta-row .btn.outline {
	background: transparent;
	border: 2px solid #c99143;
	color: #c99143;
}

.static-page .contact-card {
	display: grid;
	gap: 14px;
	margin-top: 10px;
}

.static-page .contact-card a {
	color: #c99143;
	font-weight: 500;
}

.static-page .faq-item {
	border-bottom: 1px solid #eee;
	padding: 16px 0;
}

.static-page .faq-item:last-child {
	border-bottom: none;
}

.static-page .faq-item strong {
	display: block;
	color: #222;
	margin-bottom: 8px;
	font-size: 16px;
}

.static-page .highlight-box {
	background: #faf6ef;
	border-left: 4px solid #c99143;
	padding: 16px 18px;
	margin: 20px 0;
	border-radius: 0 10px 10px 0;
}

.static-page .step {
	margin-bottom: 28px;
	padding-bottom: 18px;
	border-bottom: 1px dashed #e5e5e5;
}

.static-page .step:last-of-type {
	border-bottom: none;
}

.static-page .step-num {
	display: inline-block;
	background: #c99143;
	color: #fff;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	text-align: center;
	line-height: 28px;
	font-size: 14px;
	font-weight: 600;
	margin-right: 8px;
}

.help-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
	margin: 20px 0 28px;
}

.help-card {
	background: #fafafa;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 20px;
}

.help-card h3 {
	margin-top: 0;
	color: #c99143;
}

.help-card ul {
	margin-left: 18px;
}

@media (max-width: 768px) {
	.page-banner {
		height: 180px;
		margin-top: 0;
	}

	.page-banner h1 {
		font-size: 28px;
	}

	.static-page {
		padding: 24px 18px;
		margin: 0 0 40px;
	}
}
