Changed around line 1
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ line-height: 1.6;
+ color: #333;
+ }
+
+ .header {
+ background: #333;
+ color: #fff;
+ padding: 1rem 0;
+ }
+
+ .navbar {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ }
+
+ .nav-link {
+ color: #fff;
+ text-decoration: none;
+ font-size: 1.1rem;
+ }
+
+ .hero-section {
+ background: url('images/hero.jpg') no-repeat center center/cover;
+ height: 100vh;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ color: #fff;
+ text-align: center;
+ }
+
+ .hero-content {
+ max-width: 600px;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .cta-button {
+ background: #007aff;
+ color: #fff;
+ padding: 0.8rem 2rem;
+ text-decoration: none;
+ border-radius: 5px;
+ font-size: 1.1rem;
+ }
+
+ .products-section {
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .product-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .product-card {
+ background: #f4f4f4;
+ padding: 1rem;
+ border-radius: 5px;
+ text-align: center;
+ }
+
+ .product-card img {
+ max-width: 100%;
+ border-radius: 5px;
+ }
+
+ .about-section, .contact-section {
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .contact-form input, .contact-form textarea {
+ padding: 0.8rem;
+ border: 1px solid #ccc;
+ border-radius: 5px;
+ }
+
+ .contact-form button {
+ background: #007aff;
+ color: #fff;
+ padding: 0.8rem;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ }
+
+ .footer {
+ background: #333;
+ color: #fff;
+ text-align: center;
+ padding: 1rem 0;
+ }
+
+ @media (max-width: 768px) {
+ .navbar {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .cta-button {
+ padding: 0.6rem 1.5rem;
+ }
+
+ .product-grid {
+ grid-template-columns: 1fr;
+ }
+ }