.full-page-container {
	background: linear-gradient(to right, white 0%, #87cefa 50%, white 100%);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	min-height: 100vh;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	box-sizing: border-box;
	padding: 1rem;
	overflow-x: hidden;
}

.container {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
	padding: 1rem;
	color: #222;
	text-align: left;
	box-sizing: border-box;
}

.container h2 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: #1a1a1a;
}

.container p {
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 1.2rem;
}

.container .video-container {
	position: relative;
	padding-bottom: 56.25%;
	/* 16:9 */
	height: 0;
	overflow: hidden;
	margin-bottom: 2rem;
}

.container .video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.container ul {
	padding-left: 1rem;
	margin-bottom: 2rem;
}

.container ul li {
	margin-bottom: 1rem;
	font-size: 1rem;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.full-page-container {
		background: linear-gradient(to bottom, white 0%, #87cefa 50%, white 100%);
		padding: 1rem;
	}

	.container {
		padding: 1rem;
		text-align: left;
	}

	.container h2 {
		font-size: 1.5rem;
	}

	.container p,
	.container ul li {
		font-size: 0.95rem;
	}

	.container ul {
		padding-left: 1.2rem;
	}
}