Changed around line 1
+ :root {
+ --primary-color: #4a90e2;
+ --secondary-color: #333;
+ --background-color: #f9f9f9;
+ --text-color: #333;
+ --cta-color: #ff6f61;
+ --font-family: 'Arial', sans-serif;
+ }
+
+ body {
+ font-family: var(--font-family);
+ color: var(--text-color);
+ margin: 0;
+ padding: 0;
+ background-color: var(--background-color);
+ line-height: 1.6;
+ }
+
+ .container {
+ width: 90%;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 20px;
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), #6a11cb);
+ color: white;
+ padding: 100px 0;
+ text-align: center;
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 20px;
+ }
+
+ .hero .subtitle {
+ font-size: 1.5rem;
+ margin-bottom: 40px;
+ }
+
+ .cta-button {
+ background-color: var(--cta-color);
+ color: white;
+ padding: 15px 30px;
+ text-decoration: none;
+ border-radius: 5px;
+ font-size: 1.2rem;
+ transition: background-color 0.3s ease;
+ }
+
+ .cta-button:hover {
+ background-color: #ff3b2f;
+ }
+
+ .features {
+ padding: 80px 0;
+ background-color: white;
+ }
+
+ .features h2 {
+ text-align: center;
+ font-size: 2.5rem;
+ margin-bottom: 60px;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 30px;
+ }
+
+ .feature {
+ text-align: center;
+ padding: 20px;
+ background-color: var(--background-color);
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .feature .icon {
+ font-size: 3rem;
+ margin-bottom: 20px;
+ }
+
+ .feature h3 {
+ font-size: 1.5rem;
+ margin-bottom: 15px;
+ }
+
+ .feature p {
+ font-size: 1rem;
+ color: #666;
+ }
+
+ .cta {
+ background: linear-gradient(135deg, var(--primary-color), #6a11cb);
+ color: white;
+ padding: 100px 0;
+ text-align: center;
+ }
+
+ .cta h2 {
+ font-size: 2.5rem;
+ margin-bottom: 20px;
+ }
+
+ .cta p {
+ font-size: 1.5rem;
+ margin-bottom: 40px;
+ }
+
+ footer {
+ background-color: var(--secondary-color);
+ color: white;
+ text-align: center;
+ padding: 20px 0;
+ }
+
+ footer p {
+ margin: 0;
+ }
+
+ @media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero .subtitle {
+ font-size: 1.2rem;
+ }
+
+ .features h2 {
+ font-size: 2rem;
+ }
+
+ .cta h2 {
+ font-size: 2rem;
+ }
+
+ .cta p {
+ font-size: 1.2rem;
+ }
+ }