Changed around line 1
+ :root {
+ --primary-color: #1a73e8;
+ --secondary-color: #fbbc05;
+ --background-color: #f5f5f5;
+ --text-color: #333;
+ --font-family: 'Arial', sans-serif;
+ }
+
+ body {
+ font-family: var(--font-family);
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ line-height: 1.6;
+ }
+
+ .container {
+ width: 90%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .header {
+ background-color: var(--primary-color);
+ color: white;
+ padding: 20px 0;
+ }
+
+ .header .logo {
+ font-size: 24px;
+ font-weight: bold;
+ }
+
+ .header .nav ul {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+ display: flex;
+ justify-content: flex-end;
+ }
+
+ .header .nav ul li {
+ margin-left: 20px;
+ }
+
+ .header .nav ul li a {
+ color: white;
+ text-decoration: none;
+ font-weight: bold;
+ }
+
+ .hero {
+ background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero-bg.jpg');
+ background-size: cover;
+ background-position: center;
+ color: white;
+ padding: 100px 0;
+ text-align: center;
+ }
+
+ .hero h2 {
+ font-size: 48px;
+ margin-bottom: 20px;
+ }
+
+ .hero p {
+ font-size: 24px;
+ margin-bottom: 40px;
+ }
+
+ .cta-button {
+ background-color: var(--secondary-color);
+ color: white;
+ padding: 15px 30px;
+ text-decoration: none;
+ font-weight: bold;
+ border-radius: 5px;
+ transition: background-color 0.3s ease;
+ }
+
+ .cta-button:hover {
+ background-color: #e6a800;
+ }
+
+ .features, .how-it-works, .testimonials, .contact {
+ padding: 60px 0;
+ }
+
+ .features h2, .how-it-works h2, .testimonials h2, .contact h2 {
+ text-align: center;
+ margin-bottom: 40px;
+ font-size: 36px;
+ }
+
+ .feature-grid, .steps, .testimonial-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 20px;
+ }
+
+ .feature, .step, .testimonial {
+ background: white;
+ padding: 20px;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ text-align: center;
+ }
+
+ .feature h3, .step h3 {
+ font-size: 24px;
+ margin-bottom: 10px;
+ }
+
+ .testimonial p {
+ font-style: italic;
+ margin-bottom: 10px;
+ }
+
+ .testimonial cite {
+ font-weight: bold;
+ }
+
+ .contact form {
+ display: flex;
+ flex-direction: column;
+ gap: 15px;
+ }
+
+ .contact form input, .contact form textarea {
+ padding: 10px;
+ border: 1px solid #ccc;
+ border-radius: 5px;
+ }
+
+ .contact form button {
+ background-color: var(--primary-color);
+ color: white;
+ padding: 15px;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: background-color 0.3s ease;
+ }
+
+ .contact form button:hover {
+ background-color: #1557b3;
+ }
+
+ .footer {
+ background-color: var(--primary-color);
+ color: white;
+ text-align: center;
+ padding: 20px 0;
+ }
+
+ @media (max-width: 768px) {
+ .header .nav ul {
+ flex-direction: column;
+ align-items: center;
+ }
+
+ .header .nav ul li {
+ margin: 10px 0;
+ }
+
+ .hero h2 {
+ font-size: 36px;
+ }
+
+ .hero p {
+ font-size: 18px;
+ }
+
+ .feature-grid, .steps, .testimonial-grid {
+ grid-template-columns: 1fr;
+ }
+ }