@import url("fontawesome-all.min.css");
@import url("https://fonts.googleapis.com/css?family=Lato:300,400,900");

/*
	Twenty by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

	blockquote:before, blockquote:after, q:before, q:after {
		content: '';
		content: none;
	}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

mark {
	background-color: transparent;
	color: inherit;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input, select, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

/* Basic */

	html {
		box-sizing: border-box;
	}

	*, *:before, *:after {
		box-sizing: inherit;
	}

	body {
		background: #f3f6fa;
	}

		body.is-preload *, body.is-preload *:before, body.is-preload *:after {
			-moz-animation: none !important;
			-webkit-animation: none !important;
			-ms-animation: none !important;
			animation: none !important;
			-moz-transition: none !important;
			-webkit-transition: none !important;
			-ms-transition: none !important;
			transition: none !important;
		}

	body, input, select, textarea {
		color: #7c8081;
		font-family: 'Lato', sans-serif;
		font-size: 15pt;
		font-weight: 300;
		letter-spacing: 0.025em;
		line-height: 1.75em;
	}

	a {
		-moz-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
		-webkit-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
		-ms-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
		transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
		color: #3fb1a3;
		text-decoration: none;
		border-bottom: dotted 1px;
	}

		a:hover {
			border-bottom-color: transparent;
		}

	strong, b {
		font-weight: 400;
	}

	p, ul, ol, dl, table, blockquote {
		margin: 0 0 2em 0;
	}

	h1, h2, h3, h4, h5, h6 {
		color: inherit;
		font-weight: 300;
		line-height: 1.75em;
		margin-bottom: 1em;
		text-transform: uppercase;
	}

		h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
			color: inherit;
			text-decoration: none;
			border: 0;
		}

	h2 {
		font-size: 1.5em;
		letter-spacing: 0.1em;
	}

	h3 {
		font-size: 1.15em;
		letter-spacing: 0.025em;
	}

	sub {
		font-size: 0.8em;
		position: relative;
		top: 0.5em;
	}

	sup {
		font-size: 0.8em;
		position: relative;
		top: -0.5em;
	}

	hr {
		border-top: solid 1px rgba(124, 128, 129, 0.2);
		border: 0;
		margin-bottom: 1.5em;
	}

	blockquote {
		border-left: solid 0.5em rgba(124, 128, 129, 0.2);
		font-style: italic;
		padding: 1em 0 1em 2em;
	}

/* Container */

	.container {
		margin: 0 auto;
		max-width: 100%;
		width: 1400px;
	}

		.container.medium {
			width: 1050px;
		}

		@media screen and (max-width: 1680px) {

			.container {
				width: 1200px;
			}

				.container.medium {
					width: 900px;
				}

		}

		@media screen and (max-width: 1280px) {

			.container {
				width: 960px;
			}

				.container.medium {
					width: 735px;
				}

		}

		@media screen and (max-width: 980px) {

			.container {
				width: 95%;
			}

				.container.medium {
					width: 71.25%;
				}

		}

		@media screen and (max-width: 840px) {

			.container {
				width: 95%;
			}

				.container.medium {
					width: 95%;
				}

		}

		@media screen and (max-width: 736px) {

			.container {
				width: 100%;
			}

				.container.medium {
					width: 100%;
				}

		}

/* Row */

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

		.row > * {
			box-sizing: border-box;
		}

		.row.gtr-uniform > * > :last-child {
			margin-bottom: 0;
		}

		.row.aln-left {
			justify-content: flex-start;
		}

		.row.aln-center {
			justify-content: center;
		}

		.row.aln-right {
			justify-content: flex-end;
		}

		.row.aln-top {
			align-items: flex-start;
		}

		.row.aln-middle {
			align-items: center;
		}

		.row.aln-bottom {
			align-items: flex-end;
		}

		.row > .imp {
			order: -1;
		}

		.row > .col-1 {
			width: 8.33333%;
		}

		.row > .off-1 {
			margin-left: 8.33333%;
		}

		.row > .col-2 {
			width: 16.66667%;
		}

		.row > .off-2 {
			margin-left: 16.66667%;
		}

		.row > .col-3 {
			width: 25%;
		}

		.row > .off-3 {
			margin-left: 25%;
		}

		.row > .col-4 {
			width: 33.33333%;
		}

		.row > .off-4 {
			margin-left: 33.33333%;
		}

		.row > .col-5 {
			width: 41.66667%;
		}

		.row > .off-5 {
			margin-left: 41.66667%;
		}

		.row > .col-6 {
			width: 50%;
		}

		.row > .off-6 {
			margin-left: 50%;
		}

		.row > .col-7 {
			width: 58.33333%;
		}

		.row > .off-7 {
			margin-left: 58.33333%;
		}

		.row > .col-8 {
			width: 66.66667%;
		}

		.row > .off-8 {
			margin-left: 66.66667%;
		}

		.row > .col-9 {
			width: 75%;
		}

		.row > .off-9 {
			margin-left: 75%;
		}

		.row > .col-10 {
			width: 83.33333%;
		}

		.row > .off-10 {
			margin-left: 83.33333%;
		}

		.row > .col-11 {
			width: 91.66667%;
		}

		.row > .off-11 {
			margin-left: 91.66667%;
		}

		.row > .col-12 {
			width: 100%;
		}

		.row > .off-12 {
			margin-left: 100%;
		}

		.row.gtr-0 {
			margin-top: 0px;
			margin-left: 0px;
		}

			.row.gtr-0 > * {
				padding: 0px 0 0 0px;
			}

			.row.gtr-0.gtr-uniform {
				margin-top: 0px;
			}

				.row.gtr-0.gtr-uniform > * {
					padding-top: 0px;
				}

		.row.gtr-25 {
			margin-top: -12.5px;
			margin-left: -12.5px;
		}

			.row.gtr-25 > * {
				padding: 12.5px 0 0 12.5px;
			}

			.row.gtr-25.gtr-uniform {
				margin-top: -12.5px;
			}

				.row.gtr-25.gtr-uniform > * {
					padding-top: 12.5px;
				}

		.row.gtr-50 {
			margin-top: -25px;
			margin-left: -25px;
		}

			.row.gtr-50 > * {
				padding: 25px 0 0 25px;
			}

			.row.gtr-50.gtr-uniform {
				margin-top: -25px;
			}

				.row.gtr-50.gtr-uniform > * {
					padding-top: 25px;
				}

		.row {
			margin-top: -50px;
			margin-left: -50px;
		}

			.row > * {
				padding: 50px 0 0 50px;
			}

			.row.gtr-uniform {
				margin-top: -50px;
			}

				.row.gtr-uniform > * {
					padding-top: 50px;
				}

		.row.gtr-150 {
			margin-top: -75px;
			margin-left: -75px;
		}

			.row.gtr-150 > * {
				padding: 75px 0 0 75px;
			}

			.row.gtr-150.gtr-uniform {
				margin-top: -75px;
			}

				.row.gtr-150.gtr-uniform > * {
					padding-top: 75px;
				}

		.row.gtr-200 {
			margin-top: -100px;
			margin-left: -100px;
		}

			.row.gtr-200 > * {
				padding: 100px 0 0 100px;
			}

			.row.gtr-200.gtr-uniform {
				margin-top: -100px;
			}

				.row.gtr-200.gtr-uniform > * {
					padding-top: 100px;
				}

		@media screen and (max-width: 1680px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-wide {
					order: -1;
				}

				.row > .col-1-wide {
					width: 8.33333%;
				}

				.row > .off-1-wide {
					margin-left: 8.33333%;
				}

				.row > .col-2-wide {
					width: 16.66667%;
				}

				.row > .off-2-wide {
					margin-left: 16.66667%;
				}

				.row > .col-3-wide {
					width: 25%;
				}

				.row > .off-3-wide {
					margin-left: 25%;
				}

				.row > .col-4-wide {
					width: 33.33333%;
				}

				.row > .off-4-wide {
					margin-left: 33.33333%;
				}

				.row > .col-5-wide {
					width: 41.66667%;
				}

				.row > .off-5-wide {
					margin-left: 41.66667%;
				}

				.row > .col-6-wide {
					width: 50%;
				}

				.row > .off-6-wide {
					margin-left: 50%;
				}

				.row > .col-7-wide {
					width: 58.33333%;
				}

				.row > .off-7-wide {
					margin-left: 58.33333%;
				}

				.row > .col-8-wide {
					width: 66.66667%;
				}

				.row > .off-8-wide {
					margin-left: 66.66667%;
				}

				.row > .col-9-wide {
					width: 75%;
				}

				.row > .off-9-wide {
					margin-left: 75%;
				}

				.row > .col-10-wide {
					width: 83.33333%;
				}

				.row > .off-10-wide {
					margin-left: 83.33333%;
				}

				.row > .col-11-wide {
					width: 91.66667%;
				}

				.row > .off-11-wide {
					margin-left: 91.66667%;
				}

				.row > .col-12-wide {
					width: 100%;
				}

				.row > .off-12-wide {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0px;
					margin-left: 0px;
				}

					.row.gtr-0 > * {
						padding: 0px 0 0 0px;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0px;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0px;
						}

				.row.gtr-25 {
					margin-top: -10px;
					margin-left: -10px;
				}

					.row.gtr-25 > * {
						padding: 10px 0 0 10px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -10px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 10px;
						}

				.row.gtr-50 {
					margin-top: -20px;
					margin-left: -20px;
				}

					.row.gtr-50 > * {
						padding: 20px 0 0 20px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -20px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 20px;
						}

				.row {
					margin-top: -40px;
					margin-left: -40px;
				}

					.row > * {
						padding: 40px 0 0 40px;
					}

					.row.gtr-uniform {
						margin-top: -40px;
					}

						.row.gtr-uniform > * {
							padding-top: 40px;
						}

				.row.gtr-150 {
					margin-top: -60px;
					margin-left: -60px;
				}

					.row.gtr-150 > * {
						padding: 60px 0 0 60px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -60px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 60px;
						}

				.row.gtr-200 {
					margin-top: -80px;
					margin-left: -80px;
				}

					.row.gtr-200 > * {
						padding: 80px 0 0 80px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -80px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 80px;
						}

		}

		@media screen and (max-width: 1280px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-normal {
					order: -1;
				}

				.row > .col-1-normal {
					width: 8.33333%;
				}

				.row > .off-1-normal {
					margin-left: 8.33333%;
				}

				.row > .col-2-normal {
					width: 16.66667%;
				}

				.row > .off-2-normal {
					margin-left: 16.66667%;
				}

				.row > .col-3-normal {
					width: 25%;
				}

				.row > .off-3-normal {
					margin-left: 25%;
				}

				.row > .col-4-normal {
					width: 33.33333%;
				}

				.row > .off-4-normal {
					margin-left: 33.33333%;
				}

				.row > .col-5-normal {
					width: 41.66667%;
				}

				.row > .off-5-normal {
					margin-left: 41.66667%;
				}

				.row > .col-6-normal {
					width: 50%;
				}

				.row > .off-6-normal {
					margin-left: 50%;
				}

				.row > .col-7-normal {
					width: 58.33333%;
				}

				.row > .off-7-normal {
					margin-left: 58.33333%;
				}

				.row > .col-8-normal {
					width: 66.66667%;
				}

				.row > .off-8-normal {
					margin-left: 66.66667%;
				}

				.row > .col-9-normal {
					width: 75%;
				}

				.row > .off-9-normal {
					margin-left: 75%;
				}

				.row > .col-10-normal {
					width: 83.33333%;
				}

				.row > .off-10-normal {
					margin-left: 83.33333%;
				}

				.row > .col-11-normal {
					width: 91.66667%;
				}

				.row > .off-11-normal {
					margin-left: 91.66667%;
				}

				.row > .col-12-normal {
					width: 100%;
				}

				.row > .off-12-normal {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0px;
					margin-left: 0px;
				}

					.row.gtr-0 > * {
						padding: 0px 0 0 0px;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0px;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0px;
						}

				.row.gtr-25 {
					margin-top: -10px;
					margin-left: -10px;
				}

					.row.gtr-25 > * {
						padding: 10px 0 0 10px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -10px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 10px;
						}

				.row.gtr-50 {
					margin-top: -20px;
					margin-left: -20px;
				}

					.row.gtr-50 > * {
						padding: 20px 0 0 20px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -20px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 20px;
						}

				.row {
					margin-top: -40px;
					margin-left: -40px;
				}

					.row > * {
						padding: 40px 0 0 40px;
					}

					.row.gtr-uniform {
						margin-top: -40px;
					}

						.row.gtr-uniform > * {
							padding-top: 40px;
						}

				.row.gtr-150 {
					margin-top: -60px;
					margin-left: -60px;
				}

					.row.gtr-150 > * {
						padding: 60px 0 0 60px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -60px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 60px;
						}

				.row.gtr-200 {
					margin-top: -80px;
					margin-left: -80px;
				}

					.row.gtr-200 > * {
						padding: 80px 0 0 80px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -80px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 80px;
						}

		}

		@media screen and (max-width: 980px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-narrow {
					order: -1;
				}

				.row > .col-1-narrow {
					width: 8.33333%;
				}

				.row > .off-1-narrow {
					margin-left: 8.33333%;
				}

				.row > .col-2-narrow {
					width: 16.66667%;
				}

				.row > .off-2-narrow {
					margin-left: 16.66667%;
				}

				.row > .col-3-narrow {
					width: 25%;
				}

				.row > .off-3-narrow {
					margin-left: 25%;
				}

				.row > .col-4-narrow {
					width: 33.33333%;
				}

				.row > .off-4-narrow {
					margin-left: 33.33333%;
				}

				.row > .col-5-narrow {
					width: 41.66667%;
				}

				.row > .off-5-narrow {
					margin-left: 41.66667%;
				}

				.row > .col-6-narrow {
					width: 50%;
				}

				.row > .off-6-narrow {
					margin-left: 50%;
				}

				.row > .col-7-narrow {
					width: 58.33333%;
				}

				.row > .off-7-narrow {
					margin-left: 58.33333%;
				}

				.row > .col-8-narrow {
					width: 66.66667%;
				}

				.row > .off-8-narrow {
					margin-left: 66.66667%;
				}

				.row > .col-9-narrow {
					width: 75%;
				}

				.row > .off-9-narrow {
					margin-left: 75%;
				}

				.row > .col-10-narrow {
					width: 83.33333%;
				}

				.row > .off-10-narrow {
					margin-left: 83.33333%;
				}

				.row > .col-11-narrow {
					width: 91.66667%;
				}

				.row > .off-11-narrow {
					margin-left: 91.66667%;
				}

				.row > .col-12-narrow {
					width: 100%;
				}

				.row > .off-12-narrow {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0px;
					margin-left: 0px;
				}

					.row.gtr-0 > * {
						padding: 0px 0 0 0px;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0px;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0px;
						}

				.row.gtr-25 {
					margin-top: -7.5px;
					margin-left: -7.5px;
				}

					.row.gtr-25 > * {
						padding: 7.5px 0 0 7.5px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -7.5px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 7.5px;
						}

				.row.gtr-50 {
					margin-top: -15px;
					margin-left: -15px;
				}

					.row.gtr-50 > * {
						padding: 15px 0 0 15px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -15px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 15px;
						}

				.row {
					margin-top: -30px;
					margin-left: -30px;
				}

					.row > * {
						padding: 30px 0 0 30px;
					}

					.row.gtr-uniform {
						margin-top: -30px;
					}

						.row.gtr-uniform > * {
							padding-top: 30px;
						}

				.row.gtr-150 {
					margin-top: -45px;
					margin-left: -45px;
				}

					.row.gtr-150 > * {
						padding: 45px 0 0 45px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -45px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 45px;
						}

				.row.gtr-200 {
					margin-top: -60px;
					margin-left: -60px;
				}

					.row.gtr-200 > * {
						padding: 60px 0 0 60px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -60px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 60px;
						}

		}

		@media screen and (max-width: 840px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-narrower {
					order: -1;
				}

				.row > .col-1-narrower {
					width: 8.33333%;
				}

				.row > .off-1-narrower {
					margin-left: 8.33333%;
				}

				.row > .col-2-narrower {
					width: 16.66667%;
				}

				.row > .off-2-narrower {
					margin-left: 16.66667%;
				}

				.row > .col-3-narrower {
					width: 25%;
				}

				.row > .off-3-narrower {
					margin-left: 25%;
				}

				.row > .col-4-narrower {
					width: 33.33333%;
				}

				.row > .off-4-narrower {
					margin-left: 33.33333%;
				}

				.row > .col-5-narrower {
					width: 41.66667%;
				}

				.row > .off-5-narrower {
					margin-left: 41.66667%;
				}

				.row > .col-6-narrower {
					width: 50%;
				}

				.row > .off-6-narrower {
					margin-left: 50%;
				}

				.row > .col-7-narrower {
					width: 58.33333%;
				}

				.row > .off-7-narrower {
					margin-left: 58.33333%;
				}

				.row > .col-8-narrower {
					width: 66.66667%;
				}

				.row > .off-8-narrower {
					margin-left: 66.66667%;
				}

				.row > .col-9-narrower {
					width: 75%;
				}

				.row > .off-9-narrower {
					margin-left: 75%;
				}

				.row > .col-10-narrower {
					width: 83.33333%;
				}

				.row > .off-10-narrower {
					margin-left: 83.33333%;
				}

				.row > .col-11-narrower {
					width: 91.66667%;
				}

				.row > .off-11-narrower {
					margin-left: 91.66667%;
				}

				.row > .col-12-narrower {
					width: 100%;
				}

				.row > .off-12-narrower {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0px;
					margin-left: 0px;
				}

					.row.gtr-0 > * {
						padding: 0px 0 0 0px;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0px;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0px;
						}

				.row.gtr-25 {
					margin-top: -7.5px;
					margin-left: -7.5px;
				}

					.row.gtr-25 > * {
						padding: 7.5px 0 0 7.5px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -7.5px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 7.5px;
						}

				.row.gtr-50 {
					margin-top: -15px;
					margin-left: -15px;
				}

					.row.gtr-50 > * {
						padding: 15px 0 0 15px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -15px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 15px;
						}

				.row {
					margin-top: -30px;
					margin-left: -30px;
				}

					.row > * {
						padding: 30px 0 0 30px;
					}

					.row.gtr-uniform {
						margin-top: -30px;
					}

						.row.gtr-uniform > * {
							padding-top: 30px;
						}

				.row.gtr-150 {
					margin-top: -45px;
					margin-left: -45px;
				}

					.row.gtr-150 > * {
						padding: 45px 0 0 45px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -45px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 45px;
						}

				.row.gtr-200 {
					margin-top: -60px;
					margin-left: -60px;
				}

					.row.gtr-200 > * {
						padding: 60px 0 0 60px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -60px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 60px;
						}

		}

		@media screen and (max-width: 736px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-mobile {
					order: -1;
				}

				.row > .col-1-mobile {
					width: 8.33333%;
				}

				.row > .off-1-mobile {
					margin-left: 8.33333%;
				}

				.row > .col-2-mobile {
					width: 16.66667%;
				}

				.row > .off-2-mobile {
					margin-left: 16.66667%;
				}

				.row > .col-3-mobile {
					width: 25%;
				}

				.row > .off-3-mobile {
					margin-left: 25%;
				}

				.row > .col-4-mobile {
					width: 33.33333%;
				}

				.row > .off-4-mobile {
					margin-left: 33.33333%;
				}

				.row > .col-5-mobile {
					width: 41.66667%;
				}

				.row > .off-5-mobile {
					margin-left: 41.66667%;
				}

				.row > .col-6-mobile {
					width: 50%;
				}

				.row > .off-6-mobile {
					margin-left: 50%;
				}

				.row > .col-7-mobile {
					width: 58.33333%;
				}

				.row > .off-7-mobile {
					margin-left: 58.33333%;
				}

				.row > .col-8-mobile {
					width: 66.66667%;
				}

				.row > .off-8-mobile {
					margin-left: 66.66667%;
				}

				.row > .col-9-mobile {
					width: 75%;
				}

				.row > .off-9-mobile {
					margin-left: 75%;
				}

				.row > .col-10-mobile {
					width: 83.33333%;
				}

				.row > .off-10-mobile {
					margin-left: 83.33333%;
				}

				.row > .col-11-mobile {
					width: 91.66667%;
				}

				.row > .off-11-mobile {
					margin-left: 91.66667%;
				}

				.row > .col-12-mobile {
					width: 100%;
				}

				.row > .off-12-mobile {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0px;
					margin-left: 0px;
				}

					.row.gtr-0 > * {
						padding: 0px 0 0 0px;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0px;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0px;
						}

				.row.gtr-25 {
					margin-top: -7.5px;
					margin-left: -7.5px;
				}

					.row.gtr-25 > * {
						padding: 7.5px 0 0 7.5px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -7.5px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 7.5px;
						}

				.row.gtr-50 {
					margin-top: -15px;
					margin-left: -15px;
				}

					.row.gtr-50 > * {
						padding: 15px 0 0 15px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -15px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 15px;
						}

				.row {
					margin-top: -30px;
					margin-left: -30px;
				}

					.row > * {
						padding: 30px 0 0 30px;
					}

					.row.gtr-uniform {
						margin-top: -30px;
					}

						.row.gtr-uniform > * {
							padding-top: 30px;
						}

				.row.gtr-150 {
					margin-top: -45px;
					margin-left: -45px;
				}

					.row.gtr-150 > * {
						padding: 45px 0 0 45px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -45px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 45px;
						}

				.row.gtr-200 {
					margin-top: -60px;
					margin-left: -60px;
				}

					.row.gtr-200 > * {
						padding: 60px 0 0 60px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -60px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 60px;
						}

		}

/* Section/Article */

	section.special, article.special {
		text-align: center;
	}

	header.major {
		padding-bottom: 2em;
	}

	header.special {
		margin-bottom: 5em;
		padding-top: 7em;
		position: relative;
		text-align: center;
	}

		header.special:before, header.special:after {
			border-bottom: solid 1.5px;
			border-top: solid 1.5px;
			content: '';
			height: 7px;
			opacity: 0.1;
			position: absolute;
			top: 1.75em;
			width: 43%;
		}

		header.special:before {
			left: 0;
		}

		header.special:after {
			right: 0;
		}

		header.special h2 {
			margin-bottom: 0;
		}

		header.special h2 + p {
			margin-bottom: 0;
			padding-top: 1.5em;
		}

		header.special .icon {
			cursor: default;
			height: 7em;
			left: 0;
			position: absolute;
			text-align: center;
			top: 1em;
			width: 100%;
		}

			header.special .icon:before {
				font-size: 3.5em;
				opacity: 0.35;
			}

	footer > :last-child {
		margin-bottom: 0;
	}

	footer.major {
		padding-top: 3em;
	}

/* Form */

	input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea {
		-moz-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
		-webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
		-ms-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
		transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		background: none;
		border: solid 1px rgba(124, 128, 129, 0.2);
		border-radius: 0;
		color: inherit;
		display: block;
		padding: 0.75em;
		text-decoration: none;
		width: 100%;
		outline: 0;
	}

		input[type="text"]:focus,
		input[type="password"]:focus,
		input[type="email"]:focus,
		textarea:focus {
			border-color: #83d3c9;
		}

	input[type="text"],
	input[type="password"],
	input[type="email"] {
		line-height: 1em;
	}

	::-webkit-input-placeholder {
		color: inherit;
		opacity: 0.5;
		position: relative;
		top: 3px;
	}

	:-moz-placeholder {
		color: inherit;
		opacity: 0.5;
	}

	::-moz-placeholder {
		color: inherit;
		opacity: 0.5;
	}

	:-ms-input-placeholder {
		color: inherit;
		opacity: 0.5;
	}

/* Image */

	.image {
		border: 0;
		position: relative;
	}

		.image:before {
			background: url("images/overlay.png");
			content: '';
			height: 100%;
			left: 0;
			position: absolute;
			top: 0;
			width: 100%;
		}

		.image.fit {
			display: block;
		}

			.image.fit img {
				display: block;
				width: 100%;
			}

		.image.featured {
			display: block;
			margin: 0 0 2em 0;
		}

			.image.featured img {
				display: block;
				width: 100%;
			}

/* Icon */

	.icon {
		text-decoration: none;
		position: relative;
	}

		.icon:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			display: inline-block;
			font-style: normal;
			font-variant: normal;
			text-rendering: auto;
			line-height: 1;
			text-transform: none !important;
			font-family: 'Font Awesome 5 Free';
			font-weight: 400;
		}

		.icon.solid:before {
			font-weight: 900;
		}

		.icon:before {
			line-height: inherit;
		}

		.icon.brands:before {
			font-family: 'Font Awesome 5 Brands';
		}

		.icon.circle {
			-moz-transition: all 0.2s ease-in-out;
			-webkit-transition: all 0.2s ease-in-out;
			-ms-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
			border: 0;
			border-radius: 100%;
			display: inline-block;
			font-size: 1.25em;
			height: 2.25em;
			left: 0;
			line-height: 2.25em;
			text-align: center;
			text-decoration: none;
			top: 0;
			width: 2.25em;
		}

			.icon.circle:hover {
				top: -0.2em;
			}

			.icon.circle.fa-twitter {
				background: #70aecd;
				color: #fff;
			}

				.icon.circle.fa-twitter:hover {
					background: #7fb7d2;
				}

			.icon.circle.fa-facebook-f {
				background: #7490c3;
				color: #fff;
			}

				.icon.circle.fa-facebook-f:hover {
					background: #829bc9;
				}

			.icon.circle.fa-google-plus-g {
				background: #db6b67;
				color: #fff;
			}

				.icon.circle.fa-google-plus-g:hover {
					background: #df7b77;
				}

			.icon.circle.fa-github {
				background: #dcad8b;
				color: #fff;
			}

				.icon.circle.fa-github:hover {
					background: #e1b89b;
				}

			.icon.circle.fa-dribbble {
				background: #da83ae;
				color: #fff;
			}

				.icon.circle.fa-dribbble:hover {
					background: #df93b8;
				}

		.icon.featured {
			cursor: default;
			display: block;
			margin: 0 0 1.5em 0;
			opacity: 0.35;
			text-align: center;
		}

			.icon.featured:before {
				font-size: 5em;
				line-height: 1em;
			}

		.icon > .label {
			display: none;
		}

/* List */

	ol {
		list-style: decimal;
		padding-left: 1.25em;
	}

		ol li {
			padding-left: 0.25em;
		}

	ul {
		list-style: disc;
		padding-left: 1em;
	}

		ul li {
			padding-left: 0.5em;
		}

/* Icons */

	ul.icons {
		list-style: none;
		padding-left: 0;
		cursor: default;
	}

		ul.icons li {
			display: inline-block;
			line-height: 1em;
			padding-left: 0.5em;
		}

			ul.icons li:first-child {
				padding-left: 0;
			}

/* Featured Icons */

	ul.featured-icons {
		cursor: default;
		margin: -0.75em 0 0 0;
		opacity: 0.35;
		overflow: hidden;
		position: relative;
		list-style: none;
		padding-left: 0;
	}

		ul.featured-icons li {
			display: block;
			float: left;
			text-align: center;
			width: 50%;
			padding-left: 0;
			margin-bottom: 1em;
		}

			ul.featured-icons li .icon {
				display: inline-block;
				font-size: 5.5em;
				height: 1em;
				line-height: 1.5em;
				width: 1em;
			}

/* Buttons */

	ul.buttons {
		cursor: default;
		list-style: none;
		padding-left: 0;
	}

		ul.buttons:last-child {
			margin-bottom: 0;
		}

		ul.buttons li {
			display: inline-block;
			padding: 0 0 0 1.5em;
		}

			ul.buttons li:first-child {
				padding: 0;
			}

		ul.buttons.stacked li {
			display: block;
			padding: 1.5em 0 0 0;
		}

			ul.buttons.stacked li:first-child {
				padding: 0;
			}

/* Table */

	table {
		width: 100%;
	}

		table.default {
			width: 100%;
		}

			table.default tbody tr {
				border-bottom: solid 1px rgba(124, 128, 129, 0.2);
			}

			table.default td {
				padding: 0.5em 1em 0.5em 1em;
			}

			table.default th {
				font-weight: 400;
				padding: 0.5em 1em 0.5em 1em;
				text-align: left;
			}

			table.default thead {
				background: #7c8081;
				color: #fff;
			}

/* Button */

	input[type="button"],
	input[type="submit"],
	input[type="reset"],
	button,
	.button {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		-moz-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
		-webkit-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
		-ms-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
		transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
		background: none;
		border: solid 1px;
		border-radius: 0;
		color: inherit;
		cursor: pointer;
		display: inline-block;
		font-size: 0.8em;
		font-weight: 900;
		letter-spacing: 2px;
		min-width: 18em;
		padding: 0 0.75em;
		line-height: 3.75em;
		text-align: center;
		text-decoration: none;
		text-transform: uppercase;
	}

		input[type="button"]:hover,
		input[type="submit"]:hover,
		input[type="reset"]:hover,
		button:hover,
		.button:hover {
			background: rgba(188, 202, 206, 0.15);
			border-color: inherit;
		}

		input[type="button"].primary,
		input[type="submit"].primary,
		input[type="reset"].primary,
		button.primary,
		.button.primary {
			background: #83d3c9;
			border-color: #83d3c9;
			color: #fff !important;
		}

			input[type="button"].primary:hover,
			input[type="submit"].primary:hover,
			input[type="reset"].primary:hover,
			button.primary:hover,
			.button.primary:hover {
				background: #96dad1 !important;
				border-color: #96dad1 !important;
			}

		input[type="button"].fit,
		input[type="submit"].fit,
		input[type="reset"].fit,
		button.fit,
		.button.fit {
			width: 100%;
		}

		input[type="button"].small,
		input[type="submit"].small,
		input[type="reset"].small,
		button.small,
		.button.small {
			font-size: 0.7em;
			min-width: 14em;
			padding: 0.5em 0;
		}

/* Wrapper */

	.wrapper {
		margin-bottom: 5em;
		padding: 5em;
	}

		.wrapper.style1 {
			padding: 0;
		}

		.wrapper.style2 {
			background-color: #83d3c9;
			background-image: url("images/light-bl.svg"), url("images/light-br.svg");
			background-position: bottom left, bottom right;
			background-repeat: no-repeat, no-repeat;
			background-size: 25em, 25em;
			color: #fff;
		}

			.wrapper.style2 input[type="button"]:hover,
			.wrapper.style2 input[type="submit"]:hover,
			.wrapper.style2 input[type="reset"]:hover,
			.wrapper.style2 button:hover,
			.wrapper.style2 .button:hover {
				background: rgba(255, 255, 255, 0.15) !important;
			}

			.wrapper.style2 input[type="button"].primary,
			.wrapper.style2 input[type="submit"].primary,
			.wrapper.style2 input[type="reset"].primary,
			.wrapper.style2 button.primary,
			.wrapper.style2 .button.primary {
				background: #fff;
				border-color: #fff;
				color: #83d3c9 !important;
			}

				.wrapper.style2 input[type="button"].primary:hover,
				.wrapper.style2 input[type="submit"].primary:hover,
				.wrapper.style2 input[type="reset"].primary:hover,
				.wrapper.style2 button.primary:hover,
				.wrapper.style2 .button.primary:hover {
					border-color: inherit !important;
					color: #fff !important;
				}

		.wrapper.style3 {
			background: #fff;
			color: inherit;
		}

		.wrapper.style4 {
			background: #fff;
			color: inherit;
			padding: 4em;
		}

/* Header */

	@-moz-keyframes reveal-header {
		0% {
			top: -5em;
		}

		100% {
			top: 0;
		}
	}

	@-webkit-keyframes reveal-header {
		0% {
			top: -5em;
		}

		100% {
			top: 0;
		}
	}

	@-ms-keyframes reveal-header {
		0% {
			top: -5em;
		}

		100% {
			top: 0;
		}
	}

	@keyframes reveal-header {
		0% {
			top: -5em;
		}

		100% {
			top: 0;
		}
	}

	#header {
		background: #fff;
		box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.075);
		color: inherit;
		cursor: default;
		font-size: 0.8em;
		left: 0;
		padding: 1em 1.5em;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 10000;
	}

		#header h1 {
			font-weight: 900;
			margin: 0;
		}

			#header h1 span {
				font-weight: 300;
			}

		#header nav {
			letter-spacing: 0.075em;
			position: absolute;
			right: 1.5em;
			text-transform: uppercase;
			top: 0.75em;
		}

			#header nav ul {
				list-style: none;
				padding-left: 0;
			}

				#header nav ul li {
					display: inline-block;
					margin-left: 1.5em;
					padding-left: 0;
				}

					#header nav ul li > ul {
						display: none;
					}

					#header nav ul li a {
						border: solid 1px transparent;
						color: inherit;
						display: inline-block;
						line-height: 1em;
						padding: 0.6em 0.75em;
						text-decoration: none;
					}

					#header nav ul li input[type="button"],
					#header nav ul li input[type="submit"],
					#header nav ul li input[type="reset"],
					#header nav ul li button,
					#header nav ul li .button {
						font-size: 1em;
						min-width: 0;
						width: auto;
					}

					#header nav ul li.submenu > a {
						text-decoration: none;
					}

						#header nav ul li.submenu > a:before {
							-moz-osx-font-smoothing: grayscale;
							-webkit-font-smoothing: antialiased;
							display: inline-block;
							font-style: normal;
							font-variant: normal;
							text-rendering: auto;
							line-height: 1;
							text-transform: none !important;
							font-family: 'Font Awesome 5 Free';
							font-weight: 900;
						}

						#header nav ul li.submenu > a:before {
							content: '\f107';
							margin-right: 0.65em;
						}

					#header nav ul li.active > a, #header nav ul li:hover > a {
						-moz-transition: all 0.2s ease-in-out;
						-webkit-transition: all 0.2s ease-in-out;
						-ms-transition: all 0.2s ease-in-out;
						transition: all 0.2s ease-in-out;
						background: rgba(188, 202, 206, 0.15);
					}

					#header nav ul li.current > a {
						font-weight: 900;
					}

		#header.reveal {
			-moz-animation: reveal-header 0.5s;
			-webkit-animation: reveal-header 0.5s;
			-ms-animation: reveal-header 0.5s;
			animation: reveal-header 0.5s;
		}

		#header.alt {
			-moz-animation: none;
			-webkit-animation: none;
			-ms-animation: none;
			animation: none;
			background: transparent;
			box-shadow: none;
			color: #fff;
			padding: 2em 2.5em;
			position: absolute;
		}

			#header.alt nav {
				right: 2.5em;
				top: 1.75em;
			}

				#header.alt nav ul li.active > a, #header.alt nav ul li:hover > a {
					border: solid 1px;
				}

/* Dropotron */

	.dropotron {
		list-style: none;
		padding-left: 0;
		background: #fff;
		box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.075);
		line-height: 2.25em;
		min-width: 13em;
		padding: 1em 0;
		text-transform: uppercase;
		margin-top: calc(-1em + 1px);
	}

		.dropotron.level-0 {
			font-size: 0.7em;
			font-weight: 400;
			margin-top: 1.5em;
		}

			.dropotron.level-0:before {
				border-bottom: solid 0.5em #fff;
				border-left: solid 0.5em transparent;
				border-right: solid 0.5em transparent;
				content: '';
				left: 0.75em;
				position: absolute;
				top: -0.45em;
			}

		.dropotron > li {
			border-top: solid 1px rgba(124, 128, 129, 0.2);
			padding-left: 0;
		}

			.dropotron > li > a {
				-moz-transition: none;
				-webkit-transition: none;
				-ms-transition: none;
				transition: none;
				color: inherit;
				text-decoration: none;
				padding: 0 1em;
				border: 0;
			}

			.dropotron > li:hover > a {
				background: #83d3c9;
				color: #fff;
			}

			.dropotron > li:first-child {
				border-top: 0;
			}

/* Banner */

	@-moz-keyframes reveal-banner {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}

	@-webkit-keyframes reveal-banner {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}

	@-ms-keyframes reveal-banner {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}

	@keyframes reveal-banner {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}

	/* Ganti bagian atas kode banner kemarin dengan ini */
/* ==========================================================================
   PENGUNCIAN BANNER UTAMA - ANTI TIMPA JAVASCRIPT
   ========================================================================== */

/* Menggunakan kombinasi body dan ID agar prioritas CSS ini menjadi yang tertinggi */
body #banner, 
html body #banner, 
#page-wrapper #banner {
    background-image: linear-gradient(135deg, rgba(5, 150, 105, 0.85) 0%, rgba(11, 61, 46, 0.9) 100%), 
                      url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600&auto=format&fit=crop') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    padding: 160px 20px 140px 20px !important;
    text-align: center !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: auto !important; /* Mencegah JS memaksa tinggi banner menjadi full screen secara keliru */
    min-height: 80vh !important;
    opacity: 1 !important; /* Mencegah efek fade-out dari JavaScript */
    visibility: visible !important;
}

/* Memastikan kartu kaca di tengah tetap terkunci posisinya */
body #banner .hero-card-glass, 
#page-wrapper #banner .inner {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 50px 40px !important;
    border-radius: 24px !important;
    max-width: 680px !important;
    width: 100% !important;
    margin: 0 auto !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25) !important;
    opacity: 1 !important;
    display: block !important;
}

/* Badge Safety First */
.hero-badge {
    display: inline-block !important;
    background: #f59e0b !important;
    color: #1e293b !important;
    font-size: 0.75rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    padding: 6px 16px !important;
    border-radius: 50px !important;
    margin-bottom: 15px !important;
    letter-spacing: 2px !important;
}

/* Judul Banner */
body #banner h2 {
    color: #ffffff !important;
    font-size: 3.2rem !important;
    font-weight: 900 !important;
    letter-spacing: 2px !important;
    margin: 0 !important;
}

body #banner h2 span {
    color: #34d399 !important;
}

.hero-divider {
    width: 60px !important;
    height: 4px !important;
    background: #ffffff !important;
    margin: 20px auto !important;
    border-radius: 2px !important;
}

/* Teks Deskripsi */
body #banner p {
    color: #f0fdf4 !important;
    font-size: 1.15rem !important;
    line-height: 1.7 !important;
    margin-bottom: 30px !important;
}

body #banner p strong {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15) !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
}

/* Tombol Utama */
body #banner .button.hero-btn-primary {
    background: #ffffff !important;
    color: #10b981 !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    padding: 14px 40px !important;
    border-radius: 50px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
}

body #banner .button.hero-btn-primary:hover {
    background: #10b981 !important;
    color: #ffffff !important;
    transform: translateY(-4px) !important;
}

		#banner .inner {
			-moz-animation: reveal-banner 1s 0.25s ease-in-out;
			-webkit-animation: reveal-banner 1s 0.25s ease-in-out;
			-ms-animation: reveal-banner 1s 0.25s ease-in-out;
			animation: reveal-banner 1s 0.25s ease-in-out;
			-moz-animation-fill-mode: forwards;
			-webkit-animation-fill-mode: forwards;
			-ms-animation-fill-mode: forwards;
			animation-fill-mode: forwards;
			background: rgba(52, 27, 43, 0.5);
			color: #fff;
			display: inline-block;
			opacity: 0;
			padding: 3em;
			text-align: center;
		}

			#banner .inner header {
				display: inline-block;
				border-bottom: solid 2px;
				border-top: solid 2px;
				margin: 0 0 2em 0;
				padding: 3px 0 3px 0;
			}

				#banner .inner header h2 {
					border-bottom: solid 2px;
					border-top: solid 2px;
					font-size: 2.5em;
					font-weight: 900;
					letter-spacing: 0.2em;
					margin: 0;
					padding-left: 0.05em;
					position: relative;
					text-transform: uppercase;
				}

			#banner .inner p {
				letter-spacing: 0.1em;
				margin: 0;
				text-transform: uppercase;
			}

				#banner .inner p a {
					color: inherit;
					font-weight: 400;
					text-decoration: none;
				}

			#banner .inner footer {
				margin: 2em 0 0 0;
			}

/* Main */

	#main {
		background-image: url("images/dark-tl.svg"), url("images/dark-tr.svg"), url("images/dark-bl.svg"), url("images/dark-br.svg");
		background-position: top left, top right, bottom left, bottom right;
		background-repeat: no-repeat;
		background-size: 25em;
		padding: 7em 0;
	}

		#main > :last-child {
			margin-bottom: 0;
		}

		#main .sidebar section {
			border-top: solid 1px rgba(124, 128, 129, 0.2);
			margin: 3em 0 0 0;
			padding: 3em 0 0 0;
		}

			#main .sidebar section:first-child {
				border-top: 0;
				padding-top: 0;
				margin-top: 0;
			}

	body.index #main {
		padding-top: 5em;
	}

/* CTA */

	#cta {
		background-attachment: scroll, scroll, scroll, fixed;
		background-color: #645862;
		background-image: url("images/light-tl.svg"), url("images/light-tr.svg"), url("images/overlay.png"), url("../../images/banner.jpg");
		background-position: top left, top right, top left, bottom center;
		background-repeat: no-repeat, no-repeat, repeat, no-repeat;
		background-size: 25em, 25em, auto, cover;
		color: #fff;
		padding: 5em;
		text-align: center;
	}

		#cta header {
			margin-bottom: 2em;
		}

/* Footer */

	#footer {
		background: #E8EEF4;
		color: #7c8081;
		padding: 5em 5em 10em 5em;
		text-align: center;
	}

		#footer .copyright {
			font-size: 0.8em;
			line-height: 1em;
		}

			#footer .copyright a {
				color: inherit;
			}

			#footer .copyright li {
				display: inline-block;
				margin-left: 1em;
				padding-left: 1em;
				border-left: dotted 1px;
			}

				#footer .copyright li:first-child {
					margin: 0;
					padding: 0;
					border: 0;
				}

/* Wide */

	@media screen and (max-width: 1680px) {

		/* Basic */

			body, input, select, textarea {
				font-size: 14pt;
			}

		/* Section/Article */

			header.special {
				padding-top: 5.5em;
				margin-bottom: 4em;
			}

	}

/* Normal */

	@media screen and (max-width: 1280px) {

		/* Basic */

			body, input, select, textarea {
				font-size: 13pt;
				letter-spacing: 0.025em;
				line-height: 1.65em;
			}

			h1, h2, h3, h4, h5, h6 {
				line-height: 1.5em;
			}

		/* Section/Article */

			header.major {
				padding-bottom: 1.5em;
			}

			footer.major {
				padding-top: 2em;
			}

		/* Wrapper */

			.wrapper {
				margin-bottom: 4em;
				padding: 4em 3em;
			}

				.wrapper.style4 {
					padding: 3em;
				}

		/* Header */

			#header nav ul li {
				margin-left: 1em;
			}

		/* Banner */

			#banner {
				background-attachment: scroll;
			}

		/* CTA */

			#cta {
				padding: 4em;
				background-attachment: scroll;
			}

		/* Footer */

			#footer {
				padding: 4em;
			}

	}

/* Narrow */

	@media screen and (max-width: 980px) {

		/* Basic */

			body, input, select, textarea {
				font-size: 13pt;
				letter-spacing: 0.025em;
				line-height: 1.5em;
			}

		/* Section/Article */

			header br {
				display: none;
			}

			header.major {
				padding-bottom: 1em;
			}

			header.special {
				padding-left: 2.5em;
				padding-right: 2.5em;
			}

			footer.major {
				padding-top: 1.5em;
			}

		/* Wrapper */

			.wrapper {
				margin-bottom: 3em;
				padding: 3em 2.5em;
			}

				.wrapper.special br {
					display: none;
				}

				.wrapper.style1 {
					padding: 0 2.5em;
				}

				.wrapper.style2 {
					background-size: 15em;
				}

				.wrapper.style4 {
					padding: 2.5em;
				}

		/* Banner */

			#banner {
				background-size: 15em, 15em, auto, cover;
			}

		/* Main */

			#main {
				background-size: 15em;
			}

		/* CTA */

			#cta {
				background-size: 15em, 15em, auto, cover;
				padding: 3em;
			}

	}

/* Narrower */

	#navPanel, #navButton {
		display: none;
	}

	@media screen and (max-width: 840px) {

		/* Basic */

			html, body {
				overflow-x: hidden;
			}

			header.major {
				padding-bottom: 0.25em;
			}

			header.special {
				margin-bottom: 4em;
				padding-top: 5em;
			}

				header.special:before, header.special:after {
					width: 40%;
				}

				header.special h2 + p {
					padding-top: 1.25em;
				}

		/* Section/Article */

			section {
				margin: 1em 0 1em 0;
			}

				section:first-child {
					margin-top: 0;
				}

		/* Button */

			input[type="button"].small,
			input[type="submit"].small,
			input[type="reset"].small,
			button.small,
			.button.small {
				font-size: 0.8em;
				min-width: 18em;
				padding: 0.75em 0;
			}

		/* Featured Icons */

			ul.featured-icons {
				margin: 0;
			}

				ul.featured-icons li {
					display: inline-block;
					float: none;
					width: auto;
				}

					ul.featured-icons li .icon {
						font-size: 4em;
						width: 1.25em;
					}

		/* Buttons */

			ul.buttons li {
				display: block;
				padding: 1em 0 0 0;
			}

		/* Header */

			#header {
				display: none;
			}

		/* Banner */

			#banner {
				margin: 0;
			}

		/* Wrapper */

			.wrapper.special-alt {
				text-align: center;
			}

			.wrapper.style4 {
				padding-bottom: 3em;
			}

		/* Main */

			#main {
				padding: 5em 0;
			}

				#main .sidebar {
					border-top: solid 1px rgba(124, 128, 129, 0.1);
					padding-top: 3em;
				}

					#main .sidebar section {
						border-top: 0;
						padding-top: 0;
					}

			body.index #main {
				padding-top: 4.5em;
			}

		/* CTA */

			#cta {
				margin: 0;
			}

		/* Footer */

			#footer {
				padding: 4em 1.5em;
			}

		/* Nav */

			#page-wrapper {
				-moz-backface-visibility: hidden;
				-webkit-backface-visibility: hidden;
				-ms-backface-visibility: hidden;
				backface-visibility: hidden;
				-moz-transition: -moz-transform 0.5s ease;
				-webkit-transition: -webkit-transform 0.5s ease;
				-ms-transition: -ms-transform 0.5s ease;
				transition: transform 0.5s ease;
				padding-bottom: 1px;
			}

			#navButton {
				-moz-backface-visibility: hidden;
				-webkit-backface-visibility: hidden;
				-ms-backface-visibility: hidden;
				backface-visibility: hidden;
				-moz-transition: -moz-transform 0.5s ease;
				-webkit-transition: -webkit-transform 0.5s ease;
				-ms-transition: -ms-transform 0.5s ease;
				transition: transform 0.5s ease;
				display: block;
				height: 60px;
				left: 0;
				position: fixed;
				top: 0;
				width: 100%;
				z-index: 10001;
			}

				#navButton .toggle {
					text-decoration: none;
					height: 60px;
					left: 0;
					position: absolute;
					text-align: center;
					top: 0;
					width: 100%;
					border: 0;
					outline: 0;
				}

					#navButton .toggle:before {
						-moz-osx-font-smoothing: grayscale;
						-webkit-font-smoothing: antialiased;
						display: inline-block;
						font-style: normal;
						font-variant: normal;
						text-rendering: auto;
						line-height: 1;
						text-transform: none !important;
						font-family: 'Font Awesome 5 Free';
						font-weight: 900;
					}

					#navButton .toggle:before {
						color: #fff;
						content: '\f0c9';
						font-size: 1em;
						height: 40px;
						left: 10px;
						line-height: 40px;
						opacity: 0.5;
						position: absolute;
						top: 11px;
						width: 60px;
						z-index: 1;
					}

					#navButton .toggle:after {
						background: rgba(163, 169, 170, 0.75);
						border-radius: 2px;
						content: '';
						height: 40px;
						left: 10px;
						position: absolute;
						top: 10px;
						width: 60px;
					}

			#navPanel {
				-moz-backface-visibility: hidden;
				-webkit-backface-visibility: hidden;
				-ms-backface-visibility: hidden;
				backface-visibility: hidden;
				-moz-transform: translateX(-275px);
				-webkit-transform: translateX(-275px);
				-ms-transform: translateX(-275px);
				transform: translateX(-275px);
				-moz-transition: -moz-transform 0.5s ease;
				-webkit-transition: -webkit-transform 0.5s ease;
				-ms-transition: -ms-transform 0.5s ease;
				transition: transform 0.5s ease;
				display: block;
				height: 100%;
				left: 0;
				overflow-y: auto;
				position: fixed;
				top: 0;
				width: 275px;
				z-index: 10002;
				background: #1c2021;
				color: #fff;
				font-size: 0.8em;
				letter-spacing: 0.075em;
				text-transform: uppercase;
				padding: 0.25em 0.75em 1em 0.75em;
			}

				#navPanel .link {
					border: 0;
					border-top: solid 1px rgba(255, 255, 255, 0.05);
					color: inherit;
					display: block;
					height: 3em;
					line-height: 3em;
					opacity: 0.75;
					text-decoration: none;
				}

					#navPanel .link.depth-0 {
						font-weight: 900;
					}

					#navPanel .link:first-child {
						border-top: 0;
					}

				#navPanel .indent-1 {
					display: inline-block;
					width: 1em;
				}

				#navPanel .indent-2 {
					display: inline-block;
					width: 2em;
				}

				#navPanel .indent-3 {
					display: inline-block;
					width: 3em;
				}

				#navPanel .indent-4 {
					display: inline-block;
					width: 4em;
				}

				#navPanel .indent-5 {
					display: inline-block;
					width: 5em;
				}

			body.navPanel-visible #page-wrapper {
				-moz-transform: translateX(275px);
				-webkit-transform: translateX(275px);
				-ms-transform: translateX(275px);
				transform: translateX(275px);
			}

			body.navPanel-visible #navButton {
				-moz-transform: translateX(275px);
				-webkit-transform: translateX(275px);
				-ms-transform: translateX(275px);
				transform: translateX(275px);
			}

			body.navPanel-visible #navPanel {
				-moz-transform: translateX(0);
				-webkit-transform: translateX(0);
				-ms-transform: translateX(0);
				transform: translateX(0);
			}

	}

/* Mobile */

	@media screen and (max-width: 736px) {

		/* Basic */

			body {
				min-width: 320px;
			}

			h2 {
				font-size: 1.25em;
				letter-spacing: 0.1em;
			}

			h3 {
				font-size: 1em;
				letter-spacing: 0.025em;
			}

			p {
				text-align: justify;
			}

		/* Section/Article */

			header {
				text-align: center;
			}

				header.major {
					padding-bottom: 0;
				}

				header.special {
					margin-bottom: 3em;
					padding-left: 1.5em;
					padding-right: 1.5em;
				}

					header.special:before, header.special:after {
						width: 38%;
					}

					header.special .icon {
						font-size: 0.75em;
						top: 1.5em;
					}

				header p {
					text-align: center;
				}

			footer.major {
				padding-top: 0;
			}

		/* Icon */

			.icon.circle {
				font-size: 1em;
			}

		/* Button */

			input[type="button"],
			input[type="submit"],
			input[type="reset"],
			button,
			.button {
				max-width: 20em;
				width: 100%;
			}

				input[type="button"].fit,
				input[type="submit"].fit,
				input[type="reset"].fit,
				button.fit,
				.button.fit {
					width: auto;
				}

		/* Icons */

			ul.icons li {
				padding-left: 0.25em;
			}

		/* Featured Icons */

			ul.featured-icons li .icon {
				width: 1.1em;
			}

		/* Buttons */

			ul.buttons {
				text-align: center;
			}

		/* Wrapper */

			.wrapper {
				margin-bottom: 2.5em;
				padding: 2.25em 1.5em;
			}

				.wrapper.special br {
					display: none;
				}

				.wrapper.style1 {
					padding: 0 1.5em;
				}

				.wrapper.style2 {
					background-size: 10em;
					padding: 2.25em 1.5em;
				}

				.wrapper.style4 {
					background-size: 10em;
					padding: 1.5em 1.5em 3em 1.5em;
				}

		/* Banner */

			#banner {
				background-size: 10em, 10em, auto, cover;
				padding: 6em 0;
			}

				#banner .inner {
					background: none;
					display: block;
					padding: 0 1.5em;
				}

					#banner .inner header h2 {
						font-size: 1.5em;
					}

					#banner .inner p {
						text-align: center;
					}

					#banner .inner br {
						display: none;
					}

		/* Main */

			#main {
				background-size: 10em;
				padding: 3.5em 0 2.5em 0;
			}

			body.index #main {
				padding: 2.5em 0 0 0;
			}

			body.contact #main {
				padding-bottom: 0;
			}

		/* CTA */

			#cta {
				background-size: 10em, 10em, auto, cover;
				padding: 3em 1.5em;
			}

		/* Footer */

			#footer {
				padding: 3em 1.5em;
			}

				#footer .copyright li {
					display: block;
					margin: 1em 0 0 0;
					padding: 0;
					border: 0;
				}

		/* Nav */

			#navButton .toggle:before {
				top: 8px;
				left: 8px;
				width: 50px;
				height: 34px;
				line-height: 34px;
			}

			#navButton .toggle:after {
				top: 8px;
				left: 8px;
				width: 50px;
				height: 34px;
			}

	}

	/* ==================================================
   K3 INDONESIA PREMIUM MODERN OVERRIDE V2
   PASTE DI PALING BAWAH STYLE.CSS
================================================== */

/* BODY */
body {
    background: #f8fafc !important;
    color: #334155 !important;
}

/* HEADER */
#header {
    background: rgba(255,255,255,0.96) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 25px rgba(0,0,0,.08) !important;
}

#header h1,
#header h1 a {
    color: #10b981 !important;
    font-weight: 900 !important;
}

#header nav ul li a {
    color: #334155 !important;
    font-weight: 600 !important;
    border-radius: 8px;
}

#header nav ul li:hover > a,
#header nav ul li.active > a {
    background: rgba(16,185,129,.12) !important;
    color: #059669 !important;
}

/* HERO BANNER */
#banner {
    background:
    linear-gradient(
        135deg,
        #10b981 0%,
        #34d399 50%,
        #6ee7b7 100%
    ) !important;
}

/* GLASS CARD TENGAH */
#banner .inner {
    background: rgba(255,255,255,.18) !important;
    backdrop-filter: blur(15px);
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.25);
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

/* JUDUL */
#banner .inner header h2 {
    color: #ffffff !important;
    font-size: 4rem !important;
    font-weight: 900 !important;
    letter-spacing: 4px !important;
    border-color: rgba(255,255,255,.8) !important;
}

/* TEKS HERO */
#banner .inner p {
    color: rgba(255,255,255,.95) !important;
    font-size: 1.1rem;
    font-weight: 500;
}

/* TOMBOL */
#banner .button,
#banner .button.primary {
    background: #ffffff !important;
    color: #10b981 !important;
    border: none !important;
    border-radius: 14px !important;
    font-weight: 800 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

#banner .button:hover,
#banner .button.primary:hover {
    background: #f8fafc !important;
    transform: translateY(-3px);
}

/* SECTION TITLE */
h2 {
    color: #059669 !important;
    font-weight: 700 !important;
}

/* ICON */
.icon.featured {
    color: #10b981 !important;
    opacity: .8 !important;
}

/* KARTU / BOX */
.wrapper.style3,
.wrapper.style4 {
    background: #ffffff !important;
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(0,0,0,.05);
}

.wrapper.style3:hover,
.wrapper.style4:hover {
    transform: translateY(-4px);
}

/* SECTION HIJAU */
.wrapper.style2 {
    background: linear-gradient(
        135deg,
        #10b981,
        #34d399
    ) !important;
}

/* GARIS DEKORASI JADI HIJAU */
header.special:before,
header.special:after {
    border-color: rgba(16,185,129,.25) !important;
}

/* HAPUS KESAN JADUL PADA MAIN */
#main {
    background-image: none !important;
    background-color: #ffffff !important;
}

/* FOOTER */
#footer {
    background: #ecfdf5 !important;
}

#footer .copyright {
    color: #475569 !important;
}

/* MOBILE */
@media screen and (max-width: 736px) {

    #banner .inner {
        width: 90%;
        padding: 2em !important;
    }

    #banner .inner header h2 {
        font-size: 2rem !important;
    }

    #banner .button {
        min-width: auto !important;
        width: 100%;
    }
}

/* Section hijau */
.wrapper.style2 h2,
.wrapper.style2 p {
    color: #ffffff !important;
}

.wrapper.style2 p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Tombol */
.wrapper.style2 .button {
    background: #ffffff !important;
    color: #10b981 !important;
    border: none !important;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.wrapper.style2 .button:hover {
    background: #f8fafc !important;
}

.brand-box{
    background:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
    margin-bottom:20px;
}

.brand-box:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(16,185,129,.15);
}

.brand-box h3{
    color:#10b981;
    margin-bottom:10px;
}

#footer {
  background: linear-gradient(135deg, #0b3d2e, #146c43, #1f8f5f);
  color: #ffffff;
  margin-top: 60px;
}

/* ini kunci utama biar tidak terlalu lebar */
.footer-container {
  max-width: 1100px;
  margin: auto;
  padding: 50px 20px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* kolom lebih jelas */
.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-col p,
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.85); /* lebih jelas dari sebelumnya */
  font-size: 14px;
  line-height: 1.7;
}

/* menu */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* social lebih jelas */
.social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}

.social a:hover {
  background: #ffffff;
  color: #146c43;
}

/* bottom bar biar tidak “pucat” */
.footer-bottom {
  text-align: center;
  padding: 15px;
  font-size: 13px;
  background: rgba(0,0,0,0.25);
  color: #fff;
}

/* ==========================================================================
   K3 INDONESIA CUSTOM STYLING (MODERN & CLEAN PRESET)
   ========================================================================== */

/* 1. Global & Typography Reset */
body {
    background-color: #f8fafc; /* Warna background abu-abu yang lebih lembut */
    color: #334155; /* Kontras teks yang lebih nyaman dibaca */
    font-size: 16px;
}

/* 2. Header & Navigation Refinement */
#header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header h1#logo a {
    color: #111827;
    font-weight: 900;
    font-size: 1.25em;
    letter-spacing: 1px;
}

#header h1#logo a span {
    color: #10b981; /* Aksen hijau K3 */
    font-weight: 400;
}

#nav ul {
    display: flex;
    gap: 20px;
    margin: 0;
}

#nav ul li a {
    color: #4b5563;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 6px;
    border-bottom: none !important;
    transition: all 0.3s ease;
}

#nav ul li a:hover, 
#nav ul li.current a {
    background-color: #e6f4ea;
    color: #146c43;
}

/* 3. Hero / Banner Section Enhancement */
#banner {
    background-image: linear-gradient(135deg, rgba(11, 61, 46, 0.85), rgba(20, 108, 67, 0.75)), url('../../images/banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 180px 20px 120px 20px;
    text-align: center;
    color: #ffffff;
}

#banner h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

#banner p {
    color: #f0fdf4;
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

/* 4. Modernizing Buttons */
.button, 
input[type="submit"], 
input[type="reset"], 
input[type="button"] {
    display: inline-block;
    background-color: #10b981;
    color: #ffffff !important;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
}

.button:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.button.primary {
    background-color: #146c43;
}
.button.primary:hover {
    background-color: #0b3d2e;
}

/* 5. Content Section (Tentang & Mengapa Kami) */
#main > header.special {
    padding: 80px 20px;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

#main h2 {
    color: #1f2937;
    font-size: 2.25rem;
    line-height: 1.4;
    margin-bottom: 25px;
}

#main h2 strong {
    color: #10b981;
    font-weight: 900;
}

#main p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Container Wrapper modern style */
.wrapper.style2 {
    background: #ffffff;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 60px !important;
}

/* 6. Product / Feature Icons Grid Grid styling */

#produk {
    padding-bottom: 0px !important;  /* Memangkas bantalan bawah seksi produk */
    margin-bottom: 0px !important;   /* Menghilangkan jarak luar bawah seksi produk */
}

#produk .col-4 section {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

#produk .col-4 section:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.1);
    border-color: #e2e8f0;
}

/* Ubah warna icon bawaan agar senada */
.icon.featured {
    color: #10b981 !important;
    background-color: #f0fdf4;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-bottom: 25px;
    display: inline-block;
}

#produk h3 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

#produk p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Featured icons list style (Kanan section 'Mengapa Memilih Kami') */
.featured-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0;
}

.featured-icons li {
    background: #f0fdf4;
    color: #146c43;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.featured-icons li .icon {
    font-size: 2rem;
}

/* 7. Footer Layout Fix */
#footer {
    background: linear-gradient(135deg, #0b3d2e, #146c43);
    color: #ffffff;
    margin-top: 80px;
    padding: 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 0;
}

.footer-col p,
.footer-col ul li a {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col ul li a {
    border-bottom: none !important;
}

.footer-col ul li a:hover {
    color: #10b981;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social a {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none !important;
    font-size: 0.85rem;
    font-weight: bold;
    transition: background 0.3s;
}

.social a:hover {
    background: #10b981;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* ==========================================================================
   K3 INDONESIA CUSTOM STYLING (MODERN & CLEAN PRESET)
   ========================================================================== */

/* 1. Global & Typography Reset */
body {
    background-color: #f8fafc; /* Warna background abu-abu yang lebih lembut */
    color: #334155; /* Kontras teks yang lebih nyaman dibaca */
    font-size: 16px;
}

/* 2. Header & Navigation Refinement */
#header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header h1#logo a {
    color: #111827;
    font-weight: 900;
    font-size: 1.25em;
    letter-spacing: 1px;
}

#header h1#logo a span {
    color: #10b981; /* Aksen hijau K3 */
    font-weight: 400;
}

#nav ul {
    display: flex;
    gap: 20px;
    margin: 0;
}

#nav ul li a {
    color: #4b5563;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 6px;
    border-bottom: none !important;
    transition: all 0.3s ease;
}

#nav ul li a:hover, 
#nav ul li.current a {
    background-color: #e6f4ea;
    color: #146c43;
}

/* 3. Hero / Banner Section Enhancement */
#banner {
    background-image: linear-gradient(135deg, rgba(11, 61, 46, 0.85), rgba(20, 108, 67, 0.75)), url('../../images/banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 180px 20px 120px 20px;
    text-align: center;
    color: #ffffff;
}

#banner h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

#banner p {
    color: #f0fdf4;
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

/* 4. Modernizing Buttons */
.button, 
input[type="submit"], 
input[type="reset"], 
input[type="button"] {
    display: inline-block;
    background-color: #10b981;
    color: #ffffff !important;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
}

.button:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.button.primary {
    background-color: #146c43;
}
.button.primary:hover {
    background-color: #0b3d2e;
}

/* 5. Content Section (Tentang & Mengapa Kami) */
#main > header.special {
    padding: 80px 20px;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

#main h2 {
    color: #1f2937;
    font-size: 2.25rem;
    line-height: 1.4;
    margin-bottom: 25px;
}

#main h2 strong {
    color: #10b981;
    font-weight: 900;
}

#main p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Container Wrapper modern style */
.wrapper.style2 {
    background: #ffffff;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 60px !important;
}

/* 6. Product / Feature Icons Grid Grid styling */
#produk {
    padding: 80px 0;
}

#produk .col-4 section {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

#produk .col-4 section:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.1);
    border-color: #e2e8f0;
}

/* Ubah warna icon bawaan agar senada */
.icon.featured {
    color: #10b981 !important;
    background-color: #f0fdf4;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-bottom: 25px;
    display: inline-block;
}

#produk h3 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

#produk p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Featured icons list style (Kanan section 'Mengapa Memilih Kami') */
.featured-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0;
}

.featured-icons li {
    background: #f0fdf4;
    color: #146c43;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.featured-icons li .icon {
    font-size: 2rem;
}

/* 7. Footer Layout Fix */
#footer {
    background: linear-gradient(135deg, #0b3d2e, #146c43);
    color: #ffffff;
    margin-top: 80px;
    padding: 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 0;
}

.footer-col p,
.footer-col ul li a {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col ul li a {
    border-bottom: none !important;
}

.footer-col ul li a:hover {
    color: #10b981;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social a {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none !important;
    font-size: 0.85rem;
    font-weight: bold;
    transition: background 0.3s;
}

.social a:hover {
    background: #10b981;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* ==========================================================================
   PERBAIKAN WARNA LATAR FOOTER (HIJAU MUDA SENADA) & KONTRAS TEKS
   ========================================================================== */

#footer {
    /* Menggunakan warna hijau muda K3 yang sama dengan elemen atas */
    background: #10b981 !important; 
    color: #ffffff !important;
    margin-top: 80px;
    padding: 0 !important;
}

/* Kontainer utama di dalam footer */
.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    text-align: left;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

/* Judul kolom footer menggunakan warna putih bersih */
.footer-col h3 {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    color: #ffffff !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

/* Teks paragraf dan list menu menggunakan warna putih semi-transparan agar elegan */
.footer-col p,
.footer-col ul li,
.footer-col ul li a {
    color: #f8fafc !important; 
    font-size: 0.95rem !important;
    line-height: 1.8 !important;
    border-bottom: none !important;
    text-decoration: none !important;
}

/* Efek hover menu footer berubah menjadi hijau tua gelap */
.footer-col ul li a:hover {
    color: #0b3d2e !important; 
}

.footer-col ul li {
    margin-bottom: 10px !important;
    list-style: none !important;
}

/* Bagian Hak Cipta / Copyright paling bawah */
.footer-bottom {
    /* Garis pembatas atas menggunakan putih transparan tipis */
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 25px 20px !important;
    text-align: center !important;
    font-size: 0.85rem !important;
    background: #0d9488 !important; /* Sedikit lebih gelap di bagian paling bawah agar kontras */
}

/* Warna teks copyright diubah ke hijau tua pekat/putih agar terbaca jelas */
.footer-bottom,
.footer-bottom ul.copyright li {
    color: #ffffff !important;
    border-left: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.footer-bottom ul.copyright li:first-child {
    border-left: none !important;
}

.footer-bottom ul.copyright li a {
    color: #ffffff !important;
    font-weight: bold;
    border-bottom: none !important;
}

.footer-bottom ul.copyright li a:hover {
    color: #0b3d2e !important;
}


/* ==========================================================================
   KODE KUSTOM BARU - K3 INDONESIA FULL REFRESH
   ========================================================================== */

/* 1. Navigasi & Header Atas */
#header {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
#header h1#logo a { color: #111827 !important; }
#header h1#logo a span { color: #10b981 !important; }
#nav ul li a { color: #4b5563 !important; }
#nav ul li.current a, #nav ul li a:hover {
    background-color: #e6f4ea !important;
    color: #146c43 !important;
}

/* 2. Tombol Utama */
.button, input[type="submit"] {
    background-color: #10b981 !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}
.button:hover, input[type="submit"]:hover {
    background-color: #059669 !important;
    transform: translateY(-2px);
}

/* 3. Kotak Produk / Fitur Utama */
#produk .col-4 section {
    background: #ffffff !important;
    padding: 40px 30px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    border: 1px solid #f1f5f9 !important;
    transition: all 0.3s ease;
}
#produk .col-4 section:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15) !important;
}
.icon.featured {
    color: #10b981 !important;
    background-color: #f0fdf4 !important;
    border-radius: 50% !important;
}

/* 4. PERBAIKAN KONTRAS SEKSI "MENGAPA MEMILIH KAMI" (Sesuai Gambar) */
.wrapper.style2 {
    background: #10b981 !important; /* Latar belakang hijau K3 terang */
    border-radius: 16px !important;
    padding: 60px !important;
}

/* Memaksa semua teks judul di seksi ini menjadi Putih Bersih */
.wrapper.style2 h2,
.wrapper.style2 h2 strong {
    color: #ffffff !important;
    font-weight: 800 !important;
}
.wrapper.style2 p {
    color: #f8fafc !important; /* Teks deskripsi menjadi putih lembut */
}

/* Mengubah Kotak Ikon Sebelah Kanan Menjadi Putih Cerah & Kontras */
.featured-icons li {
    background: #ffffff !important;    /* Latar kotak menjadi putih solid */
    color: #10b981 !important;          /* Warna ikon di dalam kotak menjadi hijau */
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100px !important;
    padding: 20px !important;
}

/* Memastikan lambang ikon (seperti helm/perisai) terlihat besar dan jelas */
.featured-icons li .icon,
.featured-icons li:before {
    color: #10b981 !important;
    font-size: 2.5rem !important;
}

/* 5. PERBAIKAN FOOTER (Warna Hijau Muda Senada) */
#footer {
    background: #10b981 !important; /* Hijau muda yang sama dengan elemen atas */
    color: #ffffff !important;
    padding: 0 !important;
    margin-top: 80px !important;
}
.footer-container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    text-align: left;
}
.footer-col { flex: 1; min-width: 220px; }
.footer-col h3 {
    color: #ffffff !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
}
.footer-col p, .footer-col ul li a {
    color: #f8fafc !important; /* Teks putih bersih agar terlihat jelas */
    text-decoration: none !important;
}
.footer-col ul li a:hover { color: #0b3d2e !important; } /* Hover ganti hijau tua */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 25px 20px !important;
    text-align: center !important;
    background: #0d9488 !important; /* Sedikit gelap di bagian hak cipta agar rapi */
    color: #ffffff !important;
}

/* ==========================================================================
   OPTIMASI SEKSI "MENGAPA MEMILIH KAMI" AGAR INTERAKTIF & MODERN
   ========================================================================== */

/* Pengaturan Container Utama */
.wrapper.style2.sections-k3-modern {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    border-radius: 24px !important;
    padding: 70px 50px !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2) !important;
}

/* Dekorasi Pola Latar Belakang Lingkaran Abstrak agar tidak sepi */
.wrapper.style2.sections-k3-modern::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    pointer-events: none;
}

/* Layout Teks Kiri */
.content-k3-left {
    text-align: left !important;
}

.content-k3-left h2 {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
    color: #ffffff !important;
}

.content-k3-left h2 strong {
    font-size: 2.6rem !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    letter-spacing: 1px;
}

.subtitle-k3 {
    color: #e0f2fe !important;
    font-size: 1.05rem !important;
    margin-bottom: 35px !important;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
}

/* List Poin Keunggulan Baru */
.k3-points-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.k3-points-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px !important;
}

/* Ikon Centang Bulat Putih */
.point-icon {
    background: #ffffff;
    color: #10b981;
    font-weight: bold;
    font-size: 0.9rem;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.point-text h4 {
    color: #ffffff !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    margin: 0 0 4px 0 !important;
}

.point-text p {
    color: #f0fdf4 !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
    line-height: 1.5;
}

/* Grid Kotak Ikon Sebelah Kanan (Gaya Efek Kaca / Glassmorphism) */
.featured-icons {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.featured-icons li {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 16px !important;
    padding: 35px 20px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 130px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* Efek Animasi Mengambang & Menyala saat Kursor Mouse di atas Kotak */
.featured-icons li:hover {
    transform: translateY(-8px) scale(1.03) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Mengatur Lambang Simbol Ikon di Dalam Kotak */
.featured-icons li .icon::before,
.featured-icons li .icon {
    color: #ffffff !important;
    font-size: 2.8rem !important;
    transition: color 0.3s ease;
}

/* Saat di-hover, lambang ikon berubah warna jadi hijau mengikuti background kotak yang memutih */
.featured-icons li:hover .icon::before,
.featured-icons li:hover .icon {
    color: #059669 !important;
}

/* ==========================================================================
   RESTRUKTURISASI BANNER UTAMA (HERO SECTION) AGAR COLOFUL & PREMIUM
   ========================================================================== */

#banner.k3-hero-modern {
    /* Menggunakan gambar suasana industri/konstruksi beresolusi tinggi gratis dari Unsplash */
    background-image: linear-gradient(135deg, rgba(5, 150, 105, 0.85) 0%, rgba(11, 61, 46, 0.9) 100%), 
                      url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Memberikan efek paralaks saat di-scroll */
    padding: 160px 20px 140px 20px !important;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Kartu Tengah Bergaya Efek Kaca Premium (Glassmorphism) */
#banner.k3-hero-modern .hero-card-glass {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 50px 40px !important;
    border-radius: 24px !important;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25) !important;
    animation: fadeInUp 1s ease-out;
}

/* Badge Kecil "Safety First" di Atas Judul */
.hero-badge {
    display: inline-block;
    background: #f59e0b; /* Warna kuning K3 peringatan yang kontras */
    color: #1e293b;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

/* Tipografi Judul */
#banner.k3-hero-modern h2 {
    color: #ffffff !important;
    font-size: 3.2rem !important;
    font-weight: 900 !important;
    letter-spacing: 2px !important;
    margin: 0 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

#banner.k3-hero-modern h2 span {
    color: #34d399 !important; /* Warna hijau mint cerah sebagai pemanis */
}

/* Garis Pembatas Dekoratif di Tengah Kartu */
.hero-divider {
    width: 60px;
    height: 4px;
    background: #ffffff;
    margin: 20px auto;
    border-radius: 2px;
}

/* Teks Deskripsi */
#banner.k3-hero-modern p {
    color: #f0fdf4 !important;
    font-size: 1.15rem !important;
    line-height: 1.7 !important;
    margin-bottom: 30px !important;
}

#banner.k3-hero-modern p strong {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Desain Tombol Aksi Baru */
.button.hero-btn-primary {
    background: #ffffff !important;
    color: #10b981 !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    padding: 14px 40px !important;
    border-radius: 50px !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    display: inline-block;
}

/* Efek Tombol saat Di-hover Mouse */
.button.hero-btn-primary:hover {
    background: #10b981 !important;
    color: #ffffff !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4) !important;
}

/* Animasi Masuk saat Halaman Pertama Kali Dimuat */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   PENYEIMBANGAN TATA LETAK 3 KOTAK IKON (PROPORSIONAL EDITION)
   ========================================================================== */

/* Mengubah susunan kotak kanan menjadi 1 kolom vertikal berisi 3 kotak */
body .content-k3-right .featured-icons-3col {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 100% !important;
    justify-content: center !important; /* Membuat posisi kotak pas di tengah-tengah tinggi teks kiri */
}

/* Mengoptimalkan ukuran dan padding 3 kotak agar presisi */
body .content-k3-right .featured-icons-3col .glass-icon-card {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 16px !important;
    padding: 22px !important; /* Padding disesuaikan agar proporsional */
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 95px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* Animasi Hover saat disentuh mouse */
body .content-k3-right .featured-icons-3col .glass-icon-card:hover {
    transform: translateX(-5px) scale(1.02) !important; /* Sedikit bergeser ke kiri mendekati teks */
    background: #ffffff !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Memastikan ukuran ketiga ikon pas dan berwarna putih tajam */
body .content-k3-right .featured-icons-3col .glass-icon-card .icon::before,
body .content-k3-right .featured-icons-3col .glass-icon-card .icon {
    color: #ffffff !important;
    font-size: 2.3rem !important;
    transition: color 0.3s ease !important;
    line-height: 1 !important;
}

/* Efek warna ikon saat kotak di-hover */
body .content-k3-right .featured-icons-3col .glass-icon-card:hover .icon::before,
body .content-k3-right .featured-icons-3col .glass-icon-card:hover .icon {
    color: #0b3d2e !important;
}

/* ==========================================================================
   STYLING PRODUK UNGGULAN K3 (UKURAN GAGAH, BOLD, & PREMIUM EDITION)
   ========================================================================== */

.k3-section-header {
    margin-bottom: 50px !important;
    text-align: center !important;
}

.k3-super-title {
    color: #e59866 !important;
    font-weight: 800 !important;
    font-size: 0.85rem !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    display: block !important;
    margin-bottom: 5px !important;
}

.k3-main-title {
    font-weight: 900 !important;
    color: #111827 !important;
    font-size: 2.2rem !important; /* Judul seksi sedikit dipertegas */
    letter-spacing: 0.5px !important;
    margin: 0 !important;
}

.k3-text-green {
    color: #10b981 !important;
}

.k3-title-line {
    width: 50px !important;
    height: 4px !important;
    background: #10b981 !important;
    margin: 15px auto 0 auto !important;
    border-radius: 2px !important;
}

/* Kartu Produk Bersih */
.k3-product-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important; /* Sudut lengkung lebih modern */
    padding: 45px 30px 35px 30px !important; /* Ditambah biar kartu terlihat kokoh */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    text-align: center !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

.k3-product-card:hover {
    transform: translateY(-10px) !important; /* Angkatan lebih terasa pas di-hover */
    box-shadow: 0 20px 35px rgba(16, 185, 129, 0.18) !important;
    border-color: #10b981 !important;
}

/* Wadah Penahan Jarak Ikon Raksasa */
.k3-icon-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 30px !important; /* Jarak ekstra aman dari amukan judul h3 */
    width: 100% !important;
    height: 110px !important; /* Ditinggikan penuh agar ikon raksasanya leluasa */
}

/* UKURAN IKON RAKSASA PREMIUM (BOOM!) */
.k3-custom-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f0fdf4 !important;
    color: #10b981 !important;
    width: 105px !important;   /* Bulatan diperbesar signifikan dari 85px */
    height: 105px !important;  /* Bulatan diperbesar signifikan dari 85px */
    border-radius: 50% !important;
    font-size: 3.2rem !important; /* Lambang FontAwesome dibuat sangat besar, gagah, dan solid! */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; /* Efek pegas saat di-hover */
    line-height: 1 !important;
}

.k3-product-card:hover .k3-custom-icon {
    background: #10b981 !important;
    color: #ffffff !important;
    transform: scale(1.08) rotate(8deg) !important; /* Efek putar dan membesar yang dinamis */
}

/* Judul Produk */
.k3-product-title {
    display: block !important;
    color: #1f2937 !important;
    font-weight: 900 !important; /* Diubah jadi super tebal (Bold) */
    font-size: 1.4rem !important; /* Diperbesar agar seimbang dengan ikon raksasanya */
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Deskripsi */
.k3-product-desc {
    color: #4b5563 !important; /* Warna teks dibuat sedikit lebih kontras */
    font-size: 0.95rem !important; /* Diperbesar agar lebih enak dibaca */
    line-height: 1.6 !important;
    margin: 0 0 30px 0 !important;
    padding: 0 !important;
    flex-grow: 1 !important;
}

/* Tombol Aksi */
.k3-product-btn {
    display: inline-block !important;
    background: #f1f5f9 !important;
    color: #334155 !important;
    padding: 10px 30px !important; /* Lebih tebal dan panjang */
    border-radius: 50px !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    width: auto !important;
    min-width: 140px !important;
}

.k3-product-card:hover .k3-product-btn {
    background: #10b981 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3) !important;
}

/* ==========================================================================
   STYLING SEKSI BRAND TERPERCAYA K3 (FIX JARAK - REFF IMAGE_3A9DDB.PNG)
   ========================================================================== */

/* Memangkas paksa padding atas seksi agar nempel pas di bawah seksi produk */
.k3-brand-section {
    padding-top: 0px !important;       /* Habisi ruang kosong atas */
    margin-top: -30px !important;      /* Tarik paksa ke atas sedikit agar lebih dekat */
    padding-bottom: 50px !important;
}

.k3-brand-section .row:first-of-type {
    margin-top: 0px !important;      /* Menghapus celah kosong bawaan row templat */
}

/* Penataan Header Brand */
.k3-brand-header {
    margin-bottom: 35px !important;    /* Perkecil jarak dari judul ke kotak brand */
    text-align: center !important;
}

.k3-brand-subtitle {
    color: #e59866 !important;
    font-weight: 800 !important;
    font-size: 0.85rem !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    display: block !important;
    margin-bottom: 5px !important;
}

.k3-brand-main-title {
    font-weight: 400 !important;
    color: #1f2937 !important;
    font-size: 2rem !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
    text-transform: uppercase !important;
}

.k3-brand-main-title strong {
    font-weight: 900 !important;
    color: #10b981 !important;
}

.k3-brand-line {
    width: 45px !important;
    height: 3px !important;
    background: #10b981 !important;
    margin: 12px auto 0 auto !important;
    border-radius: 2px !important;
}

/* Kotak Brand (K3 Brand Box Style) */
.k3-brand-box {
    all: unset !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 25px 20px !important;     /* Sedikit lebih ringkas */
    height: 100% !important;
    box-sizing: border-box !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    position: relative !important;
}

.k3-brand-box:hover {
    transform: translateY(-5px) !important;
    border-color: #10b981 !important;
    box-shadow: 0 12px 20px -5px rgba(16, 185, 129, 0.12) !important;
}

/* Nama Brand */
.k3-brand-box .brand-name {
    all: unset !important;
    display: block !important;
    color: #111827 !important;
    font-size: 1.35rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.5px !important;
    margin: 0 0 6px 0 !important;
    line-height: 1.2 !important;
}

.k3-brand-box:hover .brand-name {
    color: #10b981 !important;
}

/* Deskripsi Brand */
.k3-brand-box .brand-desc {
    color: #64748b !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

/* ==========================================================================
   PERBAIKAN TOTAL MOBILE & TABLET (ANTI TABRAKAN - FIX IMAGE_3A12F6 / 3A12BE)
   ========================================================================= */

@media screen and (max-width: 980px), screen and (max-width: 736px), screen and (max-width: 480px) {
    
    /* --- 1. RESET STRUKTUR KOLOM BAWAAN TEMPLAT DI HP --- */
    #produk .row, .k3-brand-section .row {
        display: flex !important;
        flex-direction: column !important; /* Paksa menyusun ke bawah secara bersih */
        align-items: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        float: none !important;
    }

    #produk .col-4, .k3-brand-section .col-4 {
        width: 100% !important;  /* Paksa lebar penuh di HP */
        max-width: 100% !important;
        float: none !important;
        clear: both !important;
        margin: 0 0 30px 0 !important; /* Memberi jarak antar kotak ke bawah sebesar 30px */
        padding: 0 !important;
    }

    /* --- 2. FIX KARTU PRODUK (ANTI TUMPANG TINDIH ELEMEN) --- */
    body .k3-product-card {
        all: unset !important; /* Hancurkan sisa-sisa warisan style templat asli */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 20px !important;
        padding: 40px 20px 35px 20px !important; /* Ruang dalam yang longgar di HP */
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05) !important;
        box-sizing: border-box !important;
        width: 100% !important;
        height: auto !important; /* Biar memanjang otomatis mengikuti teks */
        position: relative !important;
    }

    /* Paksa wadah ikon di HP menjauh dari judul h3 */
    body .k3-product-card .k3-icon-wrapper {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        height: 100px !important; /* Kunci tinggi ruang ikon */
        margin: 0 0 25px 0 !important; /* Paksa dorong teks di bawahnya sebesar 25px */
        position: relative !important;
    }

    /* Sesuaikan ukuran lingkaran ikon di HP agar proporsional */
    body .k3-product-card .k3-custom-icon {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #f0fdf4 !important;
        color: #10b981 !important;
        width: 90px !important;   /* Sedikit disesuaikan untuk layar HP */
        height: 90px !important;  /* Sedikit disesuaikan untuk layar HP */
        border-radius: 50% !important;
        font-size: 2.8rem !important; /* Lambang ikon tetap gagah di HP */
        margin: 0 auto !important;
        position: relative !important;
    }

    /* Paksa teks judul produk turun ke bawah ikon (SOLUSI MUTLAK TABRAKAN) */
    body .k3-product-card .k3-product-title {
        all: unset !important; /* Matikan paksa tarikan margin-top minus bawaan templat */
        display: block !important;
        color: #1f2937 !important;
        font-weight: 900 !important;
        font-size: 1.3rem !important; /* Ukuran teks di HP pas */
        margin: 0 0 15px 0 !important; /* Jarak aman ke paragraf deskripsi */
        padding: 0 !important;
        line-height: 1.4 !important;
        text-transform: uppercase !important;
        position: relative !important;
    }

    /* Deskripsi produk di HP */
    body .k3-product-card .k3-product-desc {
        display: block !important;
        color: #4b5563 !important;
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin: 0 0 25px 0 !important;
        padding: 0 !important;
    }

    /* Tombol aksi di HP */
    body .k3-product-card .k3-product-btn {
        display: inline-block !important;
        background: #f1f5f9 !important;
        color: #334155 !important;
        padding: 10px 30px !important;
        border-radius: 50px !important;
        font-size: 0.8rem !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        width: auto !important;
        min-width: 140px !important;
    }


    /* --- 3. FIX SEKSI BRAND (MOBILE - ANTI MELESET & ANTI DEMPET) --- */
    
    /* Normalkan spasi seksi Brand di HP agar tidak menabrak seksi produk */
    body .k3-brand-section {
        padding-top: 30px !important;  /* Beri jarak atas yang aman */
        margin-top: 0px !important;    /* Hapus margin minus desktop */
        padding-bottom: 40px !important;
    }

    /* Kotak brand di HP agar tidak dempet */
    body .k3-brand-box {
        all: unset !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 12px !important;
        padding: 25px 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        height: auto !important;
    }

    body .k3-brand-box .brand-name {
        all: unset !important;
        display: block !important;
        color: #111827 !important;
        font-size: 1.3rem !important;
        font-weight: 900 !important;
        margin: 0 0 6px 0 !important;
    }

    body .k3-brand-box .brand-desc {
        display: block !important;
        color: #64748b !important;
        font-size: 0.85rem !important;
        margin: 0 !important;
    }
}

/* ==========================================================================
   FIX TOTAL UNTUK TAMPILAN MOBILE (ANTI-MENUMPUK & RESPONSIF)
   ========================================================================== */

@media screen and (max-width: 840px) {
    /* 1. Perbaikan Navigasi & Header Mobile */
    #header {
        display: flex !important; /* Memunculkan kembali container header */
        position: fixed !important;
        padding: 10px 20px !important;
        justify-content: space-between !important;
        height: 60px !important;
    }
    
    #header h1#logo {
        font-size: 1rem !important;
        line-height: 40px !important;
    }

    /* Menyembunyikan menu bawaan desktop agar tidak menumpuk, digantikan oleh tombol panel mobile */
    #header nav#nav {
        display: none !important; 
    }
    
    /* Menyesuaikan posisi tombol toggle menu mobile bawaan template */
    #navButton {
        display: block !important;
        top: 0 !important;
        height: 60px !important;
    }
    
    #navButton .toggle {
        height: 60px !important;
    }
    
    #navButton .toggle:before {
        color: #10b981 !important; /* Ubah warna burger menu jadi hijau K3 */
        top: 13px !important;
        left: unset !important;
        right: 15px !important; /* Geser ke kanan agar rapi */
    }
    
    #navButton .toggle:after {
        display: none !important; /* Hapus background abu-abu bawaan yang mengganggu */
    }
}

@media screen and (max-width: 736px) {
    /* 2. Reset Margin & Padding Wrapper Utama agar tidak terlalu sempit */
    .wrapper {
        padding: 40px 20px !important;
        margin-bottom: 20px !important;
    }
    
    /* 3. Perbaikan Banner / Hero Section */
    body #banner, 
    #page-wrapper #banner {
        padding: 120px 15px 80px 15px !important;
        min-height: auto !important;
    }
    
    body #banner .hero-card-glass {
        padding: 30px 20px !important;
        border-radius: 16px !important;
    }
    
    body #banner h2 {
        font-size: 2rem !important;
    }
    
    body #banner p {
        font-size: 0.95rem !important;
        br {
            display: none !important; /* Jangan dipaksa ganti baris di mobile */
        }
    }

    /* 4. Perbaikan Header Section Khusus (.special) yang sering menumpuk icon-nya */
    header.special {
        padding-top: 4em !important;
        margin-bottom: 2em !important;
    }
    
    header.special .icon {
        position: relative !important; /* Ubah dari absolute ke relative agar tidak menimpa teks */
        top: 0 !important;
        height: auto !important;
        margin-bottom: 15px !important;
        display: block !important;
    }
    
    header.special .icon:before {
        font-size: 2.5em !important;
    }
    
    header.special h2 {
        font-size: 1.35rem !important;
        line-height: 1.4 !important;
        br {
            display: none !important;
        }
    }

    /* 5. Paksa Semua Kolom Grid Baru Menjadi Full Width (1 Kolom per baris) */
    .row {
        flex-direction: column !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
    }
    
    .row > * {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-top: 20px !important; /* Beri jarak antar elemen vertikal */
    }
    
    /* 6. Perbaikan Seksi 'Mengapa Memilih Kami' (K3 Points List) */
    .k3-points-list {
        padding-left: 0 !important;
    }
    
    .k3-point-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        margin-bottom: 20px !important;
    }
    
    /* Grid 3 Icon Kaca Kanan agar berjejer rapi di mobile, bukan vertikal raksasa */
    ul.featured-icons-3col {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px !important;
        padding: 0 !important;
        list-style: none !important;
    }
    
    ul.featured-icons-3col li.glass-icon-card {
        margin-bottom: 0 !important;
        padding: 20px 10px !important;
        background: rgba(16, 185, 129, 0.1) !important;
        border-radius: 12px !important;
        text-align: center !important;
    }
    
    ul.featured-icons-3col li.glass-icon-card span.icon:before {
        font-size: 1.8em !important;
        color: #10b981 !important;
    }

    /* 7. Perbaikan Seksi Produk */
    .k3-product-card {
        margin-bottom: 15px !important;
        height: auto !important;
    }
    
    /* 8. Perbaikan Seksi Brand Kemitraan */
    .k3-brand-section .row {
        margin-top: 0 !important;
    }
    
    .k3-brand-section .row + .row {
        margin-top: 0 !important; /* Reset margin top inline HTML */
    }
    
    .k3-brand-box {
        margin-bottom: 10px !important;
        padding: 20px !important;
    }

    /* 9. Perbaikan Tombol CTA (WhatsApp & Katalog) */
    #cta footer ul.buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        align-items: center !important;
        padding: 0 !important;
    }
    
    #cta footer ul.buttons li {
        width: 100% !important;
        padding: 0 !important;
    }
    
    #cta footer ul.buttons li a.button {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        line-height: 3em !important;
    }
    
    #cta footer p {
        font-size: 0.85em !important;
        line-height: 1.6 !important;
    }

    /* 10. Perbaikan Tata Letak Footer */
    .footer-container {
        flex-direction: column !important;
        gap: 30px !important;
        padding: 40px 20px !important;
    }
    
    .footer-col {
        min-width: 100% !important;
        text-align: center !important;
    }
    
    .footer-col .social {
        justify-content: center !important;
    }
}

/* ==========================================================================
   PERBAIKAN TOTAL HEADER MENUMPUK DI MOBILE (IMAGE_BD93E6.PNG)
   ========================================================================== */

@media screen and (max-width: 840px) {
    /* 1. Paksa Container Header Mengikuti Tinggi Teks (Auto Height) */
    body #header {
        position: relative !important; /* Diubah dari fixed ke relative agar tidak menutupi banner */
        height: auto !important;
        min-height: 80px !important;
        padding: 20px 15px !important;
        display: flex !important;
        flex-direction: column !important; /* Susun logo ke atas, menu ke bawah jika tidak muat */
        align-items: center !important;
        justify-content: center !important;
        background: #ffffff !important; /* Memastikan background putih bersih */
        text-align: center !important;
    }

    /* 2. Beri Ruang Pada Teks Logo Agar Tidak Terpotong/Terbelah */
    body #header h1#logo {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        height: auto !important;
        line-height: 1.3 !important;
        font-size: 1.1rem !important;
        font-weight: 800 !important;
        display: block !important;
        width: 85% !important; /* Beri space di kanan untuk tombol burger */
        margin: 0 auto !important;
        padding-bottom: 5px !important;
    }

    /* 3. Perbaikan Tombol Hamburger Menu (Tiga Garis) */
    body #navButton {
        height: 60px !important;
        width: 60px !important;
        top: 10px !important;
        right: 10px !important;
        position: absolute !important;
    }

    body #navButton .toggle {
        height: 100% !important;
        width: 100% !important;
    }

    body #navButton .toggle:before {
        top: 15px !important;
        right: 15px !important;
        left: auto !important;
        color: #10b981 !important; /* Warna Hijau K3 */
        font-size: 1.4rem !important;
    }

    body #navButton .toggle:after {
        display: none !important; /* Buang kotak abu-abu bayangan bawaan */
    }

    /* 4. Dorong Kartu Hijau (Banner) ke Bawah Agar Tidak Tertabrak Header */
    body #banner, 
    body .wrapper.style1 {
        padding-top: 40px !important; /* Memberi ruang napas pasca header dibuat relative */
    }
    
    body #banner .hero-card-glass {
        margin-top: 10px !important;
    }
}

/* ==========================================================================
   FIX POSITION VERTICAL CENTER BADGE "SAFETY FIRST" (ANTARA GARIS ATAS BAWAH)
   ========================================================================== */

/* Mengatur ulang susunan container utama agar semua elemen sejajar vertikal */
body #banner .hero-card-glass inner,
body #banner .hero-card-glass header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

/* Memastikan Badge memiliki jarak atas & bawah yang sama rata (Simetris) */
body #banner .hero-card-glass .hero-badge {
    display: inline-block !important;
    width: max-content !important;
    margin: 15px auto !important; /* Memberi jarak 15px atas dan 15px bawah secara adil */
    padding: 6px 16px !important;
    line-height: 1.2 !important;
}

/* Menyeimbangkan posisi garis pembatas atas dan bawah */
body #banner .hero-card-glass .hero-divider {
    display: block !important;
    margin: 15px auto !important; /* Jarak konstan yang sama agar sekat garis tidak jomplang */
    width: 60px !important;       /* Sesuaikan panjang garis jika diperlukan */
}


/* ==========================================================================
   MENGUBAH TEKS JUDUL CTA MENJADI PUTIH BERSIH AGAR JELAS DIBACA
   ========================================================================== */

body #cta header h2 {
    color: #ffffff !important; /* Mengubah teks menjadi warna putih */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6) !important; /* Memberikan efek bayangan hitam halus agar teks semakin tajam dan mudah dibaca */
}
