/* Reset and base styles */
<style>
	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

	body {
		font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
		line-height: 1.6;
		color: #333;
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		min-height: 100vh;
		display: flex;
		flex-direction: column;
	}

	/* Header Styles */
	header {
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(10px);
		padding: 1rem 0;
		box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
		position: sticky;
		top: 0;
		z-index: 100;
	}

	.header-container {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 1rem;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.logo {
		font-size: 1.8rem;
		font-weight: bold;
		color: #667eea;
		text-decoration: none;
		transition: color 0.3s ease;
	}

	.logo:hover {
		color: #764ba2;
	}

	nav ul {
		list-style: none;
		display: flex;
		gap: 2rem;
	}

	nav a {
		text-decoration: none;
		color: #333;
		font-weight: 500;
		transition: color 0.3s ease;
		position: relative;
	}

	nav a:hover {
		color: #667eea;
	}

	nav a::after {
		content: '';
		position: absolute;
		width: 0;
		height: 2px;
		bottom: -5px;
		left: 0;
		background-color: #667eea;
		transition: width 0.3s ease;
	}

	nav a:hover::after {
		width: 100%;
	}

	/* Main Content Styles */
	main {
		flex: 1;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 1rem 1rem;
		text-align: center;
	}

	.hero-section {
		max-width: 1200px;
		margin-bottom: .5rem;
	}

	.hero-title {
		font-size: 2rem;
		font-weight: 600;
		color: rgba(255, 255, 255, 0.9);
		margin-bottom: 1rem;
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
		animation: fadeInUp 1s ease-out;
	}

	.hero-subtitle {
		font-size: 1.5rem;
		color: rgba(255, 255, 255, 0.9);
		margin-bottom: .5rem;
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
		animation: fadeInUp 1s ease-out 0.2s both;
	}

	.hero-box {
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		padding-top: .25rem;
		border-radius: 20px;
		background: #667eea;
		width: 1000px;
		margin-bottom: .5rem;

	}

	.image-container {
		position: relative;
		max-width: 1200px;
		margin: 0 auto;
		border-radius: 20px;
		overflow: hidden;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
		transition: transform 0.3s ease, box-shadow 0.3s ease;
		animation: fadeInUp 1s ease-out 0.4s both;
	}

	.image-container:hover {
		transform: translateY(-10px);
		box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
	}

	.hero-image {
		width: 100%;
		height: auto;
		display: block;
		transition: transform 0.3s ease;
	}

	.image-container:hover .hero-image {
		transform: scale(1.05);
	}

	.cta-button {
		display: inline-block;
		background: linear-gradient(45deg, #667eea, #764ba2);
		color: white;
		padding: .5rem 1rem;
		text-decoration: none;
		border-radius: 50px;
		font-weight: 600;
		margin-top: 2rem;
		transition: all 0.5s ease;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
		animation: fadeInUp 1s ease-out 0.6s both;
	}

	.cta-button:hover {
		transform: translateY(-3px);
		box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	}

	/* Footer Styles */
	footer {
		background: rgba(0, 0, 0, 0.8);
		color: white;
		text-align: center;
		padding: 2rem 0;
		backdrop-filter: blur(10px);
	}

	.footer-container {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 2rem;
	}

	.footer-content {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 2rem;
		margin-bottom: 2rem;
	}

	.footer-section h3 {
		color: #667eea;
		margin-bottom: 1rem;
	}

	.footer-section p, .footer-section a {
		color: rgba(255, 255, 255, 0.8);
		text-decoration: none;
		transition: color 0.3s ease;
	}

	.footer-section a:hover {
		color: #667eea;
	}

	.footer-bottom {
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		padding-top: 1rem;
		color: rgba(255, 255, 255, 0.6);
	}

	/* Animations */
	@keyframes fadeInUp {
		from {
			opacity: 0;
			transform: translateY(30px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	/* Responsive Design */
	@media (max-width: 800px) {
		.header-container {
			flex-direction: column;
			gap: 1rem;
		}

		nav ul {
			gap: 1rem;
		}

		.hero-title {
			font-size: 2.5rem;
		}

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

		main {
			padding: 2rem 1rem;
		}

		.footer-content {
			grid-template-columns: 1fr;
			text-align: center;
		}
	}

	@media (max-width: 480px) {
		.hero-title {
			font-size: 2rem;
		}

		.cta-button {
			padding: 0.8rem 1.5rem;
		}
	}

</style>

