:root {
	--primary-teal: #00AA9B;
	--dark-navy: #172333;
	--primary-color: #00AA9B;
	--dark-color: #172333;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Plus Jakarta Sans', sans-serif;
	background-color: #fcfcfc;
	color: var(--dark-navy);
	overflow-x: hidden;
	/* Memberikan ruang agar konten tidak tertutup navbar fixed */
	padding-top: 80px;
    
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* --- JUDUL HALAMAN (HERO) --- */
.page-header-bg {
	padding: 60px 0 40px;
	background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
	text-align: center;
	border-bottom: 1px solid #eee;
	margin-bottom: 50px;
}

/* Timeline Prosedur */
.timeline-proc {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
}

.timeline-proc::after {
	content: '';
	position: absolute;
	width: 2px;
	background: #e0e0e0;
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -1px;
}

.proc-item {
	padding: 10px 40px;
	position: relative;
	background-color: inherit;
	width: 50%;
}

.proc-item::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	right: -10px;
	background-color: white;
	border: 4px solid var(--primary-teal);
	top: 15px;
	border-radius: 50%;
	z-index: 1;
}

.left {
	left: 0;
}

.right {
	left: 50%;
}

.right::after {
	left: -10px;
}

.proc-content {
	padding: 20px 30px;
	background-color: white;
	position: relative;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	border-top: 4px solid var(--primary-teal);
}

.proc-icon {
	font-size: 2rem;
	color: var(--primary-teal);
	margin-bottom: 10px;
}

@media screen and (max-width: 992px) {
	.navbar-links {
		display: none;
	}

	.timeline-proc::after {
		left: 31px;
	}

	.proc-item {
		width: 100%;
		padding-left: 70px;
		padding-right: 25px;
	}

	.proc-item::after {
		left: 21px;
	}

	.right {
		left: 0%;
	}
}

.content-wrapper {
    flex: 1;
    padding-bottom: 60px; /* 🔥 JARAK KE FOOTER */
}

