Changed around line 1
+ :root {
+ --primary-color: #2563eb;
+ --secondary-color: #1e40af;
+ --background-color: #f8fafc;
+ --text-color: #1e293b;
+ --white: #ffffff;
+ }
+
+ * {
+ 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-color: var(--background-color);
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 20px;
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: var(--white);
+ padding: 100px 0;
+ text-align: center;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .subtitle {
+ font-size: 1.25rem;
+ margin-bottom: 2rem;
+ }
+
+ .cta-button {
+ display: inline-block;
+ padding: 12px 24px;
+ background-color: var(--white);
+ color: var(--primary-color);
+ text-decoration: none;
+ border-radius: 25px;
+ font-weight: 600;
+ transition: all 0.3s ease;
+ }
+
+ .cta-button:hover {
+ background-color: var(--secondary-color);
+ color: var(--white);
+ }
+
+ .features-section {
+ padding: 80px 0;
+ }
+
+ .features-section h2 {
+ text-align: center;
+ margin-bottom: 40px;
+ font-size: 2rem;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 30px;
+ }
+
+ .feature-card {
+ background: var(--white);
+ padding: 30px;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ text-align: center;
+ }
+
+ .feature-card .icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .feature-card h3 {
+ font-size: 1.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .cta-section {
+ background: var(--primary-color);
+ color: var(--white);
+ padding: 60px 0;
+ text-align: center;
+ }
+
+ .cta-section h2 {
+ margin-bottom: 30px;
+ font-size: 2rem;
+ }
+
+ footer {
+ background: var(--secondary-color);
+ color: var(--white);
+ padding: 40px 0;
+ text-align: center;
+ }
+
+ footer nav {
+ margin-bottom: 20px;
+ }
+
+ footer nav a {
+ color: var(--white);
+ text-decoration: none;
+ margin: 0 15px;
+ }
+
+ @media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+ }