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;
+ line-height: 1.6;
+ }
+
+ .hero {
+ background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjZmZmIi8+PC9zdmc+') no-repeat center center/cover;
+ color: white;
+ padding: 100px 20px;
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 20px;
+ }
+
+ .hero-content p {
+ font-size: 1.5rem;
+ margin-bottom: 30px;
+ }
+
+ .cta-button {
+ background-color: var(--cta-color);
+ color: white;
+ padding: 10px 20px;
+ text-decoration: none;
+ border-radius: 5px;
+ font-size: 1.2rem;
+ }
+
+ .cta-button:hover {
+ background-color: darken(var(--cta-color), 10%);
+ }
+
+ .about-section, .features-section {
+ padding: 60px 20px;
+ background-color: var(--background-color);
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 20px;
+ }
+
+ .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 20px;
+ }
+
+ .feature {
+ background: white;
+ padding: 20px;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ text-align: center;
+ }
+
+ .feature h3 {
+ font-size: 1.5rem;
+ margin-bottom: 10px;
+ }
+
+ .footer {
+ background-color: var(--secondary-color);
+ color: white;
+ text-align: center;
+ padding: 20px 0;
+ }
+
+ .footer a {
+ color: var(--primary-color);
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ }
+
+ .features-grid {
+ grid-template-columns: 1fr;
+ }
+ }