.section-header-left {
	justify-content: flex-start !important;
	margin: 0;
	width: 100%;
	max-width: 100%;
}

.section-header-left h2 {
	font-weight: normal;
	line-height: 1.4;
	margin: 2rem;
}

.word-highlight {
	background-color: #d784a6;
	color: white;
	font-weight: bold;
	padding: 0 4px;
}

#hero-subtitle-wrapper {
	position: relative;
	z-index: 1;
	margin-top: -2rem;
	display: flex;
	justify-content: center;
}

#hero-subtitle {
	background-color: var(--color-primary);
	color: white;
	font-style: italic;
	border-radius: 50px;
	padding: 1rem 3rem;
	margin: 0;
	font-size: 1.6rem;
	max-width: 85%;
	text-align: center;
	font-weight: 600;
}

#home-header {
	display: block;
	width: 100%;
	height: auto;
}

#section-1-image {
	display: block;
	width: 100%;
	height: auto;
}

#section-2 {
	position: relative;
	width: 100%;
}

#section-2::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 80px;
	background-color: #F184A9;
	clip-path: ellipse(100% 100% at 50% 0%);
	z-index: 0;
}

#section-2-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	text-align: center;
	color: white;
	width: 1000px;
	max-width: 85%;
	margin: 0 auto;
	padding: 3rem 0 0;
}

#section-2-content p {
	margin: 0;
}

#section-2-cta {
	font-size: 2.2rem;
	font-weight: bold;
	font-family: "Tahoma", sans-serif;
}

#section-2-videos {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	padding: 3rem 4rem 0;
}

.section-2-video-item {
	flex: 1;
	max-width: 360px;
	display: block;
	overflow: hidden;
	border-radius: 50px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-2-video-item:nth-child(2) {
	max-width: 420px;
	flex: 1.1;
}

.section-2-video-item img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.3s ease;
	scale: 1.01;
}

.section-2-video-item:hover {
	transform: translateY(-10px) scale(1.03);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

#section-3-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 5%;
}

#section-3-header h2 {
	font-weight: bold;
	margin: 0;
	text-align: left;
	line-height: 1.3;
}

.header-highlight {
	background-color: var(--color-primary);
	color: white;
	padding: 0 6px;
}

#section-3-logo {
	height: 120px;
	width: auto;
	flex-shrink: 0;
}

#section-4 {
	width: 100%;
}

#section-4-1 {
	display: block;
	width: 100%;
	height: auto;
}

#section-4-2-link {
	display: block;
	width: 100%;
	margin-top: -6%;
}

#section-4-2 {
	display: block;
	width: 100%;
	height: auto;
}

#section-3-content {
	padding: 2rem 5%;

	p {
		text-align: left;
		padding: 0 6px;
	}
}

/* ── Responsive ── */

@media all and (max-width: 850px) {
	#hero-subtitle {
		font-size: 1.3rem;
		padding: 0.8rem 2rem;
	}

	#section-2-content {
		gap: 1rem;
	}

	#section-2-cta {
		font-size: 1.8rem;
	}

	#section-3-logo {
		height: 80px;
	}
}

@media all and (max-width: 600px) {
	#hero-subtitle {
		font-size: 1.1rem;
		padding: 0.7rem 1.2rem;
	}

	.section-header-left h2 {
		margin: 2rem 0.5rem;
		font-size: 1.8rem;
	}

	#section-1-image {
		scale: 1.06;
	}

	#section-2-content {
		gap: 0.6rem;
		font-size: 0.85rem;

		#section-2-text {
			font-size: 0.8rem;
		}
	}

	#section-2-cta {
		font-size: 1.2rem;
	}

	#section-2-videos {
		flex-direction: column;
		align-items: center;
		padding: 2rem 1.5rem 0;
	}

	.section-2-video-item {
		max-width: 100%;
		width: 100%;
	}

	/* Stack logo below header text on small screens */
	#section-3-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;

		h2 {
			font-size: 1.8rem;
		}
	}

	#section-3-logo {
		height: 80px;
		align-self: center;
		margin-top: 2rem;
	}

}

@media all and (max-width: 400px) {
	#hero-subtitle {
		font-size: 0.95rem;
		padding: 0.6rem 1rem;
	}

	#section-2-content {
		font-size: 0.75rem;
	}

	#section-2-cta {
		font-size: 1rem;
	}

	#section-3-logo {
		height: 50px;
	}
}