Changed around line 1
+ :root {
+ --primary-color: #1a73e8;
+ --secondary-color: #34a853;
+ --background-color: #f8f9fa;
+ --text-color: #202124;
+ --border-radius: 8px;
+ --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ body {
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 20px;
+ }
+
+ .header {
+ background-color: white;
+ box-shadow: var(--box-shadow);
+ padding: 20px 0;
+ }
+
+ .logo {
+ font-size: 24px;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .nav {
+ display: flex;
+ align-items: center;
+ gap: 20px;
+ }
+
+ .nav a {
+ text-decoration: none;
+ color: var(--text-color);
+ font-weight: 500;
+ }
+
+ .btn {
+ padding: 10px 20px;
+ border-radius: var(--border-radius);
+ text-decoration: none;
+ font-weight: 500;
+ transition: background-color 0.3s ease;
+ }
+
+ .btn-primary {
+ background-color: var(--primary-color);
+ color: white;
+ }
+
+ .btn-primary:hover {
+ background-color: #1557b0;
+ }
+
+ .btn-secondary {
+ background-color: var(--secondary-color);
+ color: white;
+ }
+
+ .btn-secondary:hover {
+ background-color: #2a8a4a;
+ }
+
+ .hero {
+ display: flex;
+ align-items: center;
+ padding: 100px 0;
+ }
+
+ .hero-content {
+ flex: 1;
+ }
+
+ .hero-content h2 {
+ font-size: 48px;
+ margin-bottom: 20px;
+ }
+
+ .hero-content p {
+ font-size: 18px;
+ margin-bottom: 30px;
+ }
+
+ .cta-buttons {
+ display: flex;
+ gap: 20px;
+ }
+
+ .hero-image {
+ flex: 1;
+ display: flex;
+ justify-content: flex-end;
+ }
+
+ .image-container {
+ width: 100%;
+ height: 400px;
+ background-color: #e0e0e0;
+ border-radius: var(--border-radius);
+ }
+
+ .features {
+ padding: 80px 0;
+ }
+
+ .features h2 {
+ text-align: center;
+ margin-bottom: 50px;
+ font-size: 36px;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 30px;
+ }
+
+ .feature-card {
+ background-color: white;
+ padding: 30px;
+ border-radius: var(--border-radius);
+ box-shadow: var(--box-shadow);
+ text-align: center;
+ }
+
+ .feature-card .icon {
+ font-size: 48px;
+ margin-bottom: 20px;
+ }
+
+ .feature-card h3 {
+ font-size: 24px;
+ margin-bottom: 15px;
+ }
+
+ .feature-card p {
+ font-size: 16px;
+ color: #666;
+ }
+
+ .how-it-works {
+ padding: 80px 0;
+ background-color: white;
+ }
+
+ .how-it-works h2 {
+ text-align: center;
+ margin-bottom: 50px;
+ font-size: 36px;
+ }
+
+ .steps {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 30px;
+ }
+
+ .step {
+ text-align: center;
+ }
+
+ .step .number {
+ width: 50px;
+ height: 50px;
+ background-color: var(--primary-color);
+ color: white;
+ border-radius: 50%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ font-size: 24px;
+ font-weight: bold;
+ margin: 0 auto 20px;
+ }
+
+ .step h3 {
+ font-size: 24px;
+ margin-bottom: 15px;
+ }
+
+ .step p {
+ font-size: 16px;
+ color: #666;
+ }
+
+ .footer {
+ background-color: var(--text-color);
+ color: white;
+ padding: 60px 0;
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 30px;
+ }
+
+ .footer-section h3 {
+ font-size: 24px;
+ margin-bottom: 20px;
+ }
+
+ .footer-section h4 {
+ font-size: 20px;
+ margin-bottom: 15px;
+ }
+
+ .footer-section a {
+ color: white;
+ text-decoration: none;
+ display: block;
+ margin-bottom: 10px;
+ }
+
+ .footer-section a:hover {
+ color: var(--primary-color);
+ }
+
+ @media (max-width: 768px) {
+ .hero {
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .hero-image {
+ margin-top: 40px;
+ }
+
+ .cta-buttons {
+ justify-content: center;
+ }
+
+ .nav {
+ flex-direction: column;
+ gap: 10px;
+ }
+ }