Changed around line 1
+ :root {
+ --primary-color: #6366f1;
+ --secondary-color: #818cf8;
+ --text-color: #1f2937;
+ --background-color: #ffffff;
+ --accent-color: #c7d2fe;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ color: var(--text-color);
+ line-height: 1.6;
+ }
+
+ .main-header {
+ padding: 1rem 2rem;
+ background: var(--background-color);
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ }
+
+ .nav-container {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo h1 {
+ font-size: 1.8rem;
+ 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;
+ align-items: center;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text-color);
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ .cta-button, .primary-button {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ border: none;
+ padding: 0.8rem 1.5rem;
+ border-radius: 25px;
+ cursor: pointer;
+ font-weight: 600;
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
+ }
+
+ .cta-button:hover, .primary-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
+ }
+
+ .hero {
+ margin-top: 80px;
+ padding: 4rem 2rem;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ max-width: 1200px;
+ margin: 80px auto 0;
+ min-height: 80vh;
+ }
+
+ .hero-content {
+ flex: 1;
+ padding-right: 2rem;
+ }
+
+ .hero-content h2 {
+ font-size: 3.5rem;
+ margin-bottom: 1.5rem;
+ line-height: 1.2;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .hero-image {
+ flex: 1;
+ position: relative;
+ height: 500px;
+ }
+
+ .floating-card {
+ position: absolute;
+ background: white;
+ border-radius: 15px;
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
+ animation: float 6s ease-in-out infinite;
+ }
+
+ .card-1 {
+ width: 300px;
+ height: 400px;
+ top: 0;
+ right: 50px;
+ animation-delay: 0s;
+ }
+
+ .card-2 {
+ width: 250px;
+ height: 350px;
+ top: 100px;
+ right: 250px;
+ animation-delay: -3s;
+ }
+
+ @keyframes float {
+ 0% { transform: translateY(0px); }
+ 50% { transform: translateY(-20px); }
+ 100% { transform: translateY(0px); }
+ }
+
+ .features {
+ padding: 4rem 2rem;
+ background: linear-gradient(135deg, #f8fafc, #f1f5f9);
+ }
+
+ .features h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ font-size: 2.5rem;
+ }
+
+ .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .feature-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 15px;
+ text-align: center;
+ transition: transform 0.3s ease;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .feature-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ footer {
+ background: var(--text-color);
+ color: white;
+ padding: 4rem 2rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ }
+
+ .footer-section a {
+ display: block;
+ color: #e5e7eb;
+ text-decoration: none;
+ margin: 0.5rem 0;
+ transition: color 0.3s ease;
+ }
+
+ .footer-section a:hover {
+ color: var(--accent-color);
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero {
+ flex-direction: column;
+ text-align: center;
+ padding: 2rem 1rem;
+ }
+
+ .hero-content {
+ padding-right: 0;
+ margin-bottom: 2rem;
+ }
+
+ .hero-content h2 {
+ font-size: 2.5rem;
+ }
+
+ .hero-image {
+ height: 300px;
+ }
+
+ .floating-card {
+ transform: scale(0.8);
+ }
+ }