css* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	background: #2a721d;
	height: 100-vh;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	text-align: center;
}

.container {
	max-width: 600px;
	padding: 40px;
}

.pre-title {
	font-size: 14px;
	letter-spacing: 4px;
	text-transform: uppercase;
	margin-bottom: 10px;
	opacity: 0.8;
}

h1 {
	font-size: 65px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.1;
}

h1 span {
	color: #ffcc00; /* Accent color */
}

.description {
	font-size: 18px;
	margin-bottom: 40px;
	line-height: 1.6;
	opacity: 0.9;
}

.email-form {
	display: flex;
	gap: 10px;
	margin-bottom: 40px;
}

input[type="email"] {
	flex: 1;
	padding: 15px 20px;
	border: none;
	border-radius: 30px;
	font-size: 16px;
	outline: none;
}

button {
	padding: 15px 30px;
	border: none;
	border-radius: 30px;
	background: #ffcc00;
	color: #1e3c72;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	transition: 0.3s;
}

button:hover {
	background: #e6b800;
	transform: translateY(-2px);
}

.social-links a {
	color: white;
	text-decoration: none;
	margin: 0 15px;
	font-size: 14px;
	opacity: 0.7;
	transition: 0.3s;
}

.social-links a:hover {
	opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 600px) {
	h1 { font-size: 40px; }
	.email-form { flex-direction: column; }
}
