Changed around line 1
+ body {
+ font-family: 'Arial', sans-serif;
+ margin: 0;
+ padding: 0;
+ color: #333;
+ background-color: #f4f4f4;
+ }
+
+ header {
+ background: linear-gradient(135deg, #6a11cb, #2575fc);
+ color: white;
+ padding: 20px 0;
+ text-align: center;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 0 20px;
+ }
+
+ .logo {
+ font-size: 24px;
+ font-weight: bold;
+ }
+
+ .nav-links {
+ list-style: none;
+ display: flex;
+ gap: 20px;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: bold;
+ }
+
+ .hero {
+ padding: 100px 20px;
+ }
+
+ .hero h1 {
+ font-size: 48px;
+ margin-bottom: 20px;
+ }
+
+ .hero p {
+ font-size: 20px;
+ margin-bottom: 40px;
+ }
+
+ .cta {
+ background: #ff6f61;
+ color: white;
+ padding: 10px 20px;
+ text-decoration: none;
+ border-radius: 5px;
+ font-weight: bold;
+ }
+
+ section {
+ padding: 60px 20px;
+ text-align: center;
+ }
+
+ h2 {
+ font-size: 36px;
+ margin-bottom: 40px;
+ }
+
+ .product-grid, .service-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 20px;
+ }
+
+ .product-card, .service-card {
+ background: white;
+ padding: 20px;
+ border-radius: 10px;
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+ }
+
+ .product-card img {
+ width: 100%;
+ border-radius: 10px;
+ }
+
+ .btn {
+ background: #2575fc;
+ color: white;
+ padding: 10px 20px;
+ text-decoration: none;
+ border-radius: 5px;
+ font-weight: bold;
+ }
+
+ footer {
+ background: #333;
+ color: white;
+ text-align: center;
+ padding: 20px 0;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ flex-direction: column;
+ gap: 10px;
+ }
+
+ .hero h1 {
+ font-size: 36px;
+ }
+
+ .hero p {
+ font-size: 18px;
+ }
+
+ h2 {
+ font-size: 28px;
+ }
+ }