Changed around line 1
+ :root {
+ --primary-color: #6c63ff;
+ --secondary-color: #f5f5f5;
+ --text-color: #333;
+ --white: #fff;
+ --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ color: var(--text-color);
+ margin: 0;
+ padding: 0;
+ line-height: 1.6;
+ }
+
+ .container {
+ width: 90%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .header {
+ background: var(--primary-color);
+ color: var(--white);
+ padding: 20px 0;
+ }
+
+ .header .logo {
+ margin: 0;
+ font-size: 24px;
+ }
+
+ .header .nav ul {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+ display: flex;
+ gap: 20px;
+ }
+
+ .header .nav ul li a {
+ color: var(--white);
+ text-decoration: none;
+ font-weight: bold;
+ }
+
+ .hero {
+ background: var(--secondary-color);
+ padding: 100px 0;
+ text-align: center;
+ }
+
+ .hero h2 {
+ font-size: 36px;
+ margin-bottom: 20px;
+ }
+
+ .hero p {
+ font-size: 18px;
+ margin-bottom: 30px;
+ }
+
+ .cta-button {
+ background: var(--primary-color);
+ color: var(--white);
+ padding: 10px 20px;
+ text-decoration: none;
+ border-radius: 5px;
+ transition: background 0.3s ease;
+ }
+
+ .cta-button:hover {
+ background: #5751d1;
+ }
+
+ .features {
+ padding: 80px 0;
+ text-align: center;
+ }
+
+ .features h2 {
+ font-size: 32px;
+ margin-bottom: 40px;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 20px;
+ }
+
+ .feature {
+ background: var(--white);
+ padding: 20px;
+ border-radius: 10px;
+ box-shadow: var(--shadow);
+ }
+
+ .feature h3 {
+ font-size: 24px;
+ margin-bottom: 10px;
+ }
+
+ .pricing {
+ padding: 80px 0;
+ text-align: center;
+ }
+
+ .pricing h2 {
+ font-size: 32px;
+ margin-bottom: 40px;
+ }
+
+ .pricing-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 20px;
+ }
+
+ .plan {
+ background: var(--white);
+ padding: 20px;
+ border-radius: 10px;
+ box-shadow: var(--shadow);
+ }
+
+ .plan h3 {
+ font-size: 24px;
+ margin-bottom: 10px;
+ }
+
+ .plan .price {
+ font-size: 28px;
+ font-weight: bold;
+ margin-bottom: 20px;
+ }
+
+ .plan ul {
+ list-style: none;
+ padding: 0;
+ margin-bottom: 20px;
+ }
+
+ .plan ul li {
+ margin-bottom: 10px;
+ }
+
+ .contact {
+ padding: 80px 0;
+ text-align: center;
+ }
+
+ .contact h2 {
+ font-size: 32px;
+ margin-bottom: 40px;
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ gap: 15px;
+ }
+
+ .contact-form input,
+ .contact-form textarea {
+ padding: 10px;
+ border: 1px solid #ccc;
+ border-radius: 5px;
+ }
+
+ .contact-form button {
+ background: var(--primary-color);
+ color: var(--white);
+ padding: 10px 20px;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: background 0.3s ease;
+ }
+
+ .contact-form button:hover {
+ background: #5751d1;
+ }
+
+ .footer {
+ background: var(--primary-color);
+ color: var(--white);
+ text-align: center;
+ padding: 20px 0;
+ }
+
+ @media (max-width: 768px) {
+ .header .nav ul {
+ flex-direction: column;
+ align-items: center;
+ }
+
+ .hero h2 {
+ font-size: 28px;
+ }
+
+ .hero p {
+ font-size: 16px;
+ }
+
+ .features h2,
+ .pricing h2,
+ .contact h2 {
+ font-size: 28px;
+ }
+
+ .feature-grid,
+ .pricing-grid {
+ grid-template-columns: 1fr;
+ }
+ }