		@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
		
		:root {
			--violet: #8A2BE2;
			--beige: #F5E6D3;
			--dark: #1A1A2E;
			--light: #FFFFFF;
		}
		
		* {
			margin: 0;
			padding: 0;
			box-sizing: border-box;
		}
		
		body {
			font-family: 'Poppins', sans-serif;
			background-color: var(--dark);
			color: var(--light);
			overflow-x: hidden;
		}
		
		.container {
			max-width: 1200px;
			margin: 0 auto;
			padding: 0 20px;
		}
		
		header {
			position: fixed;
			width: 100%;
			z-index: 1000;
			padding: 20px 0;
			transition: background-color 0.3s ease;
		}
		
		header.scrolled {
			background-color: rgba(26, 26, 46, 0.9);
			backdrop-filter: blur(10px);
		}
		
		.header-content {
			display: flex;
			justify-content: space-between;
			align-items: center;
		}
		
		.logo {
			font-size: 24px;
			font-weight: 700;
			color: var(--violet);
			text-decoration: none;
		}
		
		nav ul {
			display: flex;
			list-style: none;
		}
		
		nav ul li {
			margin-left: 30px;
		}
		
		nav ul li a {
			color: var(--light);
			text-decoration: none;
			font-weight: 500;
			transition: color 0.3s ease;
		}
		
		nav ul li a:hover {
			color: var(--violet);
		}
		
		.hero {
			height: 100vh;
			display: flex;
			align-items: center;
			position: relative;
			overflow: hidden;
		}
		
		.hero-content {
			position: relative;
			z-index: 1;
		}
		
		.hero h1 {
			font-size: 4rem;
			font-weight: 700;
			margin-bottom: 20px;
			line-height: 1.2;
		}
		
		.hero p {
			font-size: 1.2rem;
			margin-bottom: 30px;
			max-width: 600px;
		}
		
		.cta-button {
			display: inline-block;
			background-color: var(--violet);
			color: var(--light);
			padding: 15px 30px;
			border-radius: 30px;
			text-decoration: none;
			font-weight: 600;
			transition: transform 0.3s ease, box-shadow 0.3s ease;
		}
		
		.cta-button:hover {
			transform: translateY(-5px);
			box-shadow: 0 10px 20px rgba(138, 43, 226, 0.4);
		}
		
		.hero-bg {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: linear-gradient(45deg, var(--violet), var(--dark));
			opacity: 0.8;
			z-index: 0;
		}
		
		.hero-particles {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			overflow: hidden;
		}
		
		.particle {
			position: absolute;
			display: block;
			background-color: var(--beige);
			pointer-events: none;
			opacity: 0.5;
		}
		
		@keyframes float-up {
			0% {
				transform: translateY(100vh) scale(0);
				opacity: 0;
			}
			100% {
				transform: translateY(-10vh) scale(1);
				opacity: 0.5;
			}
		}
		
		.services {
			padding: 100px 0;
			background-color: var(--beige);
			color: var(--dark);
		}
		
		.services h2 {
			font-size: 2.5rem;
			text-align: center;
			margin-bottom: 50px;
		}
		
		.services-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
			gap: 30px;
		}
		
		.service-card {
			background-color: var(--light);
			border-radius: 15px;
			padding: 30px;
			text-align: center;
			transition: transform 0.3s ease, box-shadow 0.3s ease;
		}
		
		.service-card:hover {
			transform: translateY(-10px);
			box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
		}
		
		.service-icon {
			font-size: 3rem;
			color: var(--violet);
			margin-bottom: 20px;
		}
		
		.service-card h3 {
			font-size: 1.5rem;
			margin-bottom: 15px;
		}
		
		.service-card p {
			font-size: 1rem;
			color: #666;
		}
		
		@media (max-width: 768px) {
			.hero h1 {
				font-size: 3rem;
			}
			
			.hero p {
				font-size: 1rem;
			}
			
			.services-grid {
				grid-template-columns: 1fr;
			}
		}
