Changed around line 1
+ :root {
+ --primary-color: #3498db;
+ --secondary-color: #2ecc71;
+ --background-color: #f4f4f4;
+ --text-color: #333;
+ --header-height: 80px;
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ }
+
+ header {
+ background: var(--primary-color);
+ color: white;
+ padding: 1rem 0;
+ text-align: center;
+ }
+
+ nav {
+ display: flex;
+ justify-content: center;
+ gap: 20px;
+ margin-bottom: 20px;
+ }
+
+ nav a {
+ color: white;
+ text-decoration: none;
+ font-weight: bold;
+ }
+
+ .hero {
+ padding: 2rem;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .hero p {
+ font-size: 1.2rem;
+ margin-bottom: 2rem;
+ }
+
+ .cta {
+ background: var(--secondary-color);
+ color: white;
+ padding: 0.5rem 1rem;
+ text-decoration: none;
+ border-radius: 5px;
+ }
+
+ section {
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .feature-grid, .pricing-grid, .testimonial-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 20px;
+ margin-top: 2rem;
+ }
+
+ .feature, .plan, .testimonial {
+ background: white;
+ padding: 1rem;
+ border-radius: 5px;
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
+ }
+
+ .plan.featured {
+ border: 2px solid var(--primary-color);
+ }
+
+ .price {
+ font-size: 2rem;
+ color: var(--primary-color);
+ margin: 1rem 0;
+ }
+
+ form {
+ max-width: 400px;
+ margin: 0 auto;
+ text-align: left;
+ }
+
+ form input, form textarea {
+ width: 100%;
+ padding: 0.5rem;
+ margin-bottom: 1rem;
+ border: 1px solid #ccc;
+ border-radius: 5px;
+ }
+
+ form button {
+ width: 100%;
+ }
+
+ footer {
+ background: var(--primary-color);
+ color: white;
+ text-align: center;
+ padding: 1rem 0;
+ }
+
+ .social-links {
+ display: flex;
+ justify-content: center;
+ gap: 20px;
+ margin-top: 1rem;
+ }
+
+ .social-links a {
+ color: white;
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ nav {
+ flex-direction: column;
+ }
+
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ .hero p {
+ font-size: 1rem;
+ }
+ }