Changed around line 1
+ :root {
+ --primary-color: #6366f1;
+ --secondary-color: #818cf8;
+ --text-color: #1f2937;
+ --bg-color: #ffffff;
+ --accent-color: #4f46e5;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
+ color: var(--text-color);
+ line-height: 1.6;
+ overflow-x: hidden;
+ }
+
+ header {
+ position: fixed;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.9);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem;
+ display: flex;
+ gap: 2rem;
+ justify-content: center;
+ }
+
+ nav a {
+ text-decoration: none;
+ color: var(--text-color);
+ font-weight: 500;
+ transition: color 0.3s ease;
+ position: relative;
+ }
+
+ nav a::after {
+ content: '';
+ position: absolute;
+ bottom: -5px;
+ left: 0;
+ width: 0;
+ height: 2px;
+ background: var(--primary-color);
+ transition: width 0.3s ease;
+ }
+
+ nav a:hover::after,
+ nav a.active::after {
+ width: 100%;
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ padding: 2rem;
+ }
+
+ h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ animation: fadeInUp 1s ease;
+ }
+
+ .tagline {
+ font-size: 1.5rem;
+ margin-bottom: 2rem;
+ animation: fadeInUp 1s ease 0.2s backwards;
+ }
+
+ .cta-button {
+ padding: 1rem 2rem;
+ font-size: 1.1rem;
+ background: white;
+ color: var(--primary-color);
+ border: none;
+ border-radius: 50px;
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ animation: fadeInUp 1s ease 0.4s backwards;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-3px);
+ }
+
+ .features {
+ padding: 5rem 2rem;
+ background: var(--bg-color);
+ }
+
+ .cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 2rem auto;
+ }
+
+ .card {
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ text-align: center;
+ }
+
+ .card:hover {
+ transform: translateY(-10px);
+ }
+
+ .card-icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .contact {
+ padding: 5rem 2rem;
+ background: #f3f4f6;
+ }
+
+ form {
+ max-width: 600px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ input,
+ textarea {
+ padding: 1rem;
+ border: 2px solid #e5e7eb;
+ border-radius: 0.5rem;
+ font-size: 1rem;
+ transition: border-color 0.3s ease;
+ }
+
+ input:focus,
+ textarea:focus {
+ border-color: var(--primary-color);
+ outline: none;
+ }
+
+ textarea {
+ min-height: 150px;
+ }
+
+ button[type="submit"] {
+ padding: 1rem;
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ border-radius: 0.5rem;
+ cursor: pointer;
+ transition: background-color 0.3s ease;
+ }
+
+ button[type="submit"]:hover {
+ background: var(--accent-color);
+ }
+
+ footer {
+ padding: 2rem;
+ text-align: center;
+ background: var(--text-color);
+ color: white;
+ }
+
+ @keyframes fadeInUp {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ .tagline {
+ font-size: 1.2rem;
+ }
+
+ .cards {
+ grid-template-columns: 1fr;
+ }
+ }