Changed around line 1
+ :root {
+ --primary-color: #3498db;
+ --secondary-color: #2ecc71;
+ --background-color: #f4f4f4;
+ --text-color: #333;
+ --white: #fff;
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: var(--white);
+ padding: 100px 20px;
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 20px;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ margin-bottom: 30px;
+ }
+
+ .cta-button {
+ background-color: var(--white);
+ color: var(--primary-color);
+ padding: 10px 20px;
+ text-decoration: none;
+ border-radius: 5px;
+ font-weight: bold;
+ transition: background-color 0.3s ease;
+ }
+
+ .cta-button:hover {
+ background-color: var(--secondary-color);
+ color: var(--white);
+ }
+
+ .features {
+ padding: 50px 20px;
+ text-align: center;
+ }
+
+ .features h2 {
+ font-size: 2.5rem;
+ margin-bottom: 40px;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 20px;
+ }
+
+ .feature-card {
+ background: var(--white);
+ padding: 20px;
+ border-radius: 10px;
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .feature-card .icon {
+ font-size: 3rem;
+ margin-bottom: 20px;
+ }
+
+ .feature-card h3 {
+ font-size: 1.5rem;
+ margin-bottom: 10px;
+ }
+
+ .feature-card p {
+ font-size: 1rem;
+ }
+
+ .testimonials {
+ background: var(--white);
+ padding: 50px 20px;
+ text-align: center;
+ }
+
+ .testimonials h2 {
+ font-size: 2.5rem;
+ margin-bottom: 40px;
+ }
+
+ .testimonial-slider {
+ display: flex;
+ justify-content: center;
+ gap: 20px;
+ }
+
+ .testimonial {
+ background: var(--background-color);
+ padding: 20px;
+ border-radius: 10px;
+ max-width: 400px;
+ }
+
+ .testimonial p {
+ font-size: 1rem;
+ margin-bottom: 10px;
+ }
+
+ .testimonial .author {
+ font-weight: bold;
+ }
+
+ footer {
+ background: var(--primary-color);
+ color: var(--white);
+ padding: 20px;
+ text-align: center;
+ }
+
+ footer p {
+ margin-bottom: 10px;
+ }
+
+ .social-links a {
+ color: var(--white);
+ text-decoration: none;
+ margin: 0 10px;
+ transition: color 0.3s ease;
+ }
+
+ .social-links a:hover {
+ color: var(--secondary-color);
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .hero-content p {
+ font-size: 1rem;
+ }
+
+ .features h2, .testimonials h2 {
+ font-size: 2rem;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .testimonial-slider {
+ flex-direction: column;
+ align-items: center;
+ }
+ }