Changed around line 1
+ :root {
+ --primary-color: #2563eb;
+ --secondary-color: #1e40af;
+ --background-color: #ffffff;
+ --text-color: #1e293b;
+ --shadow-color: rgba(0, 0, 0, 0.1);
+ }
+
+ [data-theme="dark"] {
+ --primary-color: #3b82f6;
+ --secondary-color: #1e40af;
+ --background-color: #1e293b;
+ --text-color: #f8fafc;
+ --shadow-color: rgba(255, 255, 255, 0.1);
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ background-color: var(--background-color);
+ color: var(--text-color);
+ margin: 0;
+ padding: 0;
+ transition: background-color 0.3s, color 0.3s;
+ }
+
+ header {
+ background-color: var(--primary-color);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ nav {
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ margin-bottom: 1rem;
+ }
+
+ nav a {
+ color: white;
+ text-decoration: none;
+ font-weight: bold;
+ }
+
+ #theme-toggle {
+ background-color: var(--secondary-color);
+ color: white;
+ border: none;
+ padding: 0.5rem 1rem;
+ cursor: pointer;
+ }
+
+ #hero {
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .carousel {
+ display: flex;
+ overflow: hidden;
+ width: 100%;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .slide {
+ min-width: 100%;
+ transition: transform 0.5s ease;
+ }
+
+ #testimonials {
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .testimonial {
+ background-color: var(--shadow-color);
+ padding: 1rem;
+ margin: 1rem auto;
+ max-width: 600px;
+ border-radius: 8px;
+ }
+
+ #cta {
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .cta-button {
+ background-color: var(--primary-color);
+ color: white;
+ padding: 1rem 2rem;
+ text-decoration: none;
+ border-radius: 8px;
+ font-weight: bold;
+ }
+
+ footer {
+ background-color: var(--primary-color);
+ color: white;
+ text-align: center;
+ padding: 1rem;
+ margin-top: 2rem;
+ }
+
+ @media (max-width: 768px) {
+ nav {
+ flex-direction: column;
+ }
+
+ .carousel {
+ flex-direction: column;
+ }
+
+ .slide {
+ min-width: 100%;
+ }
+ }