html,
body {
	margin: 0;
	padding: 0;
	max-width: 100%;
	overflow-x: hidden;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Manrope', sans-serif;
	background: #20262E;
	color: #E9E8E8;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.header {
	text-align: center;
}

.main-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-bottom: 20px;
	max-width: 800px;
	margin: 0 auto;
}

.footer {
	text-align: center;
	padding: 20px;
	font-size: 0.9rem;
	color: #999;
	border-top: 1px solid #333;
}

.logo {
	padding-top: 20px;
	width: 230px;
	max-width: 100%;
}

/* Hero Section */
.hero-section {
	text-align: center;
	padding: 30px 20px;
}

.hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 12px;
	line-height: 1.2;
	background: linear-gradient(135deg, #725AA8, #EC2885);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.hero-subtitle {
	font-size: 1.2rem;
	font-weight: 300;
	color: #ccc;
	line-height: 1.6;
}

.contact-link {
	background: linear-gradient(135deg, #725AA8, #EC2885);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-link:hover {
	background: linear-gradient(135deg, #EC2885, #EC2885);
	text-decoration: underline;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	text-decoration: none;
	transition: color 0.3s ease;
}

/* Contact Info Section */
.contact-info {
	text-align: center;
	background: #252B34;
	padding: 15px 20px 25px 20px;
	border-radius: 8px;
	margin-bottom: 20px;
	max-width: 500px;
	width: 100%;
}

.contact-info h2 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 20px;
}

.contact-info p {
	margin: 8px 0;
	font-size: 1.1rem;
	color: #ddd;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-info .icon {
	margin-right: 8px;
	font-size: 1.2rem;
}

.contact-info a {
	color: #4A90E2;
	text-decoration: none;
}

.contact-info a:hover {
	text-decoration: underline;
}

/* CTA Section */
.cta-section {
	text-align: center;
	margin-top: 20px;
}

.cta-text {
	font-size: 1.1rem;
	margin-bottom: 25px;
	color: #ddd;
}

.cta-button {
	font-size: 1.2rem;
	font-weight: 600;
	padding: 15px 30px;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	text-decoration: none;
	color: #ffffff;
	background: linear-gradient(135deg, #725AA8, #EC2885);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: inline-block;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
	transform: scale(0.98);
	box-shadow: none;
}


/* Responsive */
@media (max-width: 600px) {
	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.cta-button {
		font-size: 1rem;
		padding: 12px 24px;
	}

	.contact-info h2 {
		font-size: 1.3rem;
	}

	.contact-info p {
		font-size: 1rem;
	}
}

.contact-info p strong {
	margin-right: 8px;
}
