.pbp-1679-wrapper {
	padding: 80px 20px;
	background-color: #F8F5EF; /* Warm Sand */
	font-family: inherit;
}

.pbp-1679-container {
	max-width: 1000px;
	margin: 0 auto;
}

.pbp-1679-header {
	text-align: center;
	margin-bottom: 60px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.pbp-1679-eyebrow {
	display: block;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #062B73;
	margin-bottom: 15px;
}

.pbp-1679-heading {
	color: #0A192F;
	margin: 0 0 24px;
}

.pbp-1679-text {
	color: #5A6A7D;
	line-height: 1.7;
	margin: 0;
}

.pbp-1679-intro {
	font-size: 18px;
}

/* Steps Common */
.pbp-1679-steps {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 60px;
}

.pbp-1679-step {
	background-color: #ffffff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.03);
	display: flex;
	flex-direction: column;
	gap: 20px;
	border: 1px solid rgba(0,0,0,0.02);
}

.pbp-1679-step-header {
	display: flex;
	align-items: center;
	position: relative;
}

.pbp-1679-step-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #F39A2E; /* Terracotta */
	color: #fff;
	border-radius: 50%;
	font-weight: 600;
	font-size: 16px;
	flex-shrink: 0;
	z-index: 2;
}

.pbp-1679-step-title {
	font-size: 20px;
	color: #0A192F;
	margin: 0 0 12px;
}

.pbp-1679-step-desc {
	font-size: 16px;
}

/* Timeline Layout (Desktop) */
@media (min-width: 768px) {
	.pbp-1679-layout-timeline {
		flex-direction: row;
		gap: 20px;
	}

	.pbp-1679-layout-timeline .pbp-1679-step {
		flex: 1;
		padding: 30px 20px;
	}

	.pbp-1679-layout-timeline .pbp-1679-timeline-line {
		position: absolute;
		top: 50%;
		left: 40px;
		width: calc(100% + 20px);
		height: 2px;
		background-color: #F39A2E;
		opacity: 0.3;
		z-index: 1;
		transform: translateY(-50%);
	}
}

/* Grid Layout (Desktop) */
@media (min-width: 768px) {
	.pbp-1679-layout-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
	
	.pbp-1679-layout-grid .pbp-1679-step {
		flex-direction: row;
		align-items: flex-start;
	}
}

/* Footer & Actions */
.pbp-1679-footer {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.pbp-1679-clarity-box {
	background-color: rgba(10, 25, 47, 0.03);
	padding: 20px;
	border-radius: 6px;
	margin-bottom: 40px;
}

.pbp-1679-clarity {
	font-size: 14px;
	font-style: italic;
}

.pbp-1679-actions {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: center;
	justify-content: center;
}

@media (min-width: 576px) {
	.pbp-1679-actions {
		flex-direction: row;
		gap: 20px;
	}
}

.pbp-1679-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	border-radius: 4px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
	width: 100%;
}

@media (min-width: 576px) {
	.pbp-1679-btn {
		width: auto;
	}
}

.pbp-1679-btn-primary {
	background-color: #0A192F;
	color: #fff;
	border: 1px solid transparent;
}

.pbp-1679-btn-primary:hover {
	opacity: 0.9;
}

.pbp-1679-btn-secondary {
	background-color: transparent;
	color: #0A192F;
	border: 1px solid #0A192F;
}

.pbp-1679-btn-secondary:hover {
	background-color: rgba(10, 25, 47, 0.05);
}