Changed around line 1
+ :root {
+ --primary-color: #6366f1;
+ --secondary-color: #818cf8;
+ --background-color: #f8fafc;
+ --text-color: #1e293b;
+ --card-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background: var(--background-color);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 2rem;
+ background: white;
+ box-shadow: var(--card-shadow);
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text-color);
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ #hero {
+ text-align: center;
+ padding: 4rem 2rem;
+ background: linear-gradient(135deg, #6366f1, #818cf8);
+ color: white;
+ }
+
+ #hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .tagline {
+ font-size: 1.5rem;
+ margin-bottom: 2rem;
+ }
+
+ .hero-cta {
+ display: flex;
+ gap: 1rem;
+ justify-content: center;
+ }
+
+ button {
+ padding: 0.75rem 1.5rem;
+ border-radius: 0.5rem;
+ font-weight: 600;
+ cursor: pointer;
+ transition: transform 0.2s ease;
+ }
+
+ button:hover {
+ transform: translateY(-2px);
+ }
+
+ .primary-btn {
+ background: white;
+ color: var(--primary-color);
+ border: none;
+ }
+
+ .secondary-btn {
+ background: transparent;
+ color: white;
+ border: 2px solid white;
+ }
+
+ .card-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .card {
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: var(--card-shadow);
+ transition: transform 0.3s ease;
+ }
+
+ .card:hover {
+ transform: translateY(-5px);
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .feature {
+ text-align: center;
+ padding: 2rem;
+ }
+
+ section {
+ padding: 4rem 2rem;
+ }
+
+ h2 {
+ text-align: center;
+ margin-bottom: 2rem;
+ color: var(--primary-color);
+ }
+
+ footer {
+ background: white;
+ padding: 2rem;
+ margin-top: 4rem;
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .footer-section ul {
+ list-style: none;
+ }
+
+ .footer-section a {
+ text-decoration: none;
+ color: var(--text-color);
+ transition: color 0.3s ease;
+ }
+
+ .footer-section a:hover {
+ color: var(--primary-color);
+ }
+
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: block;
+ width: 30px;
+ height: 20px;
+ background: linear-gradient(
+ to bottom,
+ var(--text-color) 20%,
+ transparent 20% 40%,
+ var(--text-color) 40% 60%,
+ transparent 60% 80%,
+ var(--text-color) 80%
+ );
+ }
+
+ .nav-links {
+ display: none;
+ }
+
+ #hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero-cta {
+ flex-direction: column;
+ align-items: center;
+ }
+ }