.sfc-section {
	position: relative;
	width: 100%;
	padding: 80px 20px;
	background-color: #F8F5EF;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

@media (min-width: 768px) {
	.sfc-section {
		padding: 120px 40px;
	}
}

.sfc-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0);
	pointer-events: none;
	z-index: 1;
}

.sfc-container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.sfc-content {
	display: flex;
	flex-direction: column;
	max-width: 800px;
	margin: 0 auto;
}

.sfc-align-center {
	align-items: center;
	text-align: center;
}
.sfc-align-center .sfc-eyebrow {
	justify-content: center;
}
.sfc-align-center .sfc-buttons {
	justify-content: center;
}

.sfc-align-left {
	align-items: flex-start;
	text-align: left;
}
.sfc-align-left .sfc-eyebrow {
	justify-content: flex-start;
}
.sfc-align-left .sfc-buttons {
	justify-content: flex-start;
}

.sfc-align-right {
	align-items: flex-end;
	text-align: right;
}
.sfc-align-right .sfc-eyebrow {
	justify-content: flex-end;
}
.sfc-align-right .sfc-buttons {
	justify-content: flex-end;
}


.sfc-eyebrow {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 16px;
	color: inherit;
}

.sfc-eyebrow:after {
	content: "";
	display: block;
	width: 40px;
	height: 1px;
	background-color: currentColor;
}

.sfc-heading {
	font-size: 36px;
	line-height: 1.2;
	font-weight: 600;
	margin: 0 0 24px;
	color: inherit;
}

@media (min-width: 768px) {
	.sfc-heading {
		font-size: 48px;
	}
}

.sfc-body {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 40px;
	color: inherit;
}

@media (min-width: 768px) {
	.sfc-body {
		font-size: 18px;
	}
}

.sfc-body p:last-child {
	margin-bottom: 0;
}

.sfc-buttons {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 16px;
	margin-bottom: 32px;
}

@media (min-width: 768px) {
	.sfc-buttons {
		flex-direction: row;
		width: auto;
		gap: 24px;
	}
}

.sfc-primary-btn,
.sfc-secondary-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	border-radius: 4px;
	text-align: center;
}

.sfc-primary-btn {
	background-color: #D4B996;
	color: #ffffff;
	border: 1px solid transparent;
}

.sfc-primary-btn:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

.sfc-secondary-btn {
	background-color: transparent;
	color: inherit;
	border: 1px solid currentColor;
}

.sfc-secondary-btn:hover {
	background-color: rgba(0,0,0,0.05);
}

.sfc-reassurance {
	font-size: 14px;
	font-style: italic;
	opacity: 0.8;
	color: inherit;
}
