Changed around line 1
+ :root {
+ --primary-color: #2c3e50;
+ --secondary-color: #3498db;
+ --accent-color: #e74c3c;
+ --text-color: #333;
+ --light-bg: #f5f5f5;
+ --white: #fff;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 20px;
+ }
+
+ .header {
+ background: var(--primary-color);
+ color: var(--white);
+ padding: 20px 0;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: bold;
+ }
+
+ .nav ul {
+ list-style: none;
+ display: flex;
+ gap: 20px;
+ }
+
+ .nav a {
+ color: var(--white);
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .nav a:hover {
+ color: var(--secondary-color);
+ }
+
+ .hero {
+ background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero-bg.jpg');
+ background-size: cover;
+ background-position: center;
+ color: var(--white);
+ padding: 100px 0;
+ text-align: center;
+ }
+
+ .hero h2 {
+ font-size: 3rem;
+ margin-bottom: 20px;
+ }
+
+ .hero p {
+ font-size: 1.2rem;
+ margin-bottom: 40px;
+ }
+
+ .btn {
+ background: var(--secondary-color);
+ color: var(--white);
+ padding: 10px 30px;
+ text-decoration: none;
+ border-radius: 5px;
+ transition: var(--transition);
+ }
+
+ .btn:hover {
+ background: var(--accent-color);
+ }
+
+ .about, .products, .services, .contact {
+ padding: 80px 0;
+ }
+
+ .about h2, .products h2, .services h2, .contact h2 {
+ text-align: center;
+ margin-bottom: 40px;
+ font-size: 2.5rem;
+ }
+
+ .product-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 30px;
+ }
+
+ .product-card {
+ background: var(--light-bg);
+ padding: 30px;
+ border-radius: 10px;
+ text-align: center;
+ transition: var(--transition);
+ }
+
+ .product-card:hover {
+ transform: translateY(-10px);
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ }
+
+ .services ul {
+ list-style: none;
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ .services li {
+ background: var(--light-bg);
+ margin: 10px 0;
+ padding: 15px;
+ border-radius: 5px;
+ }
+
+ .contact form {
+ max-width: 600px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ gap: 20px;
+ }
+
+ .contact input, .contact textarea {
+ padding: 10px;
+ border: 1px solid #ddd;
+ border-radius: 5px;
+ }
+
+ .contact button {
+ background: var(--secondary-color);
+ color: var(--white);
+ padding: 15px;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .contact button:hover {
+ background: var(--accent-color);
+ }
+
+ .footer {
+ background: var(--primary-color);
+ color: var(--white);
+ text-align: center;
+ padding: 20px 0;
+ }
+
+ @media (max-width: 768px) {
+ .nav ul {
+ flex-direction: column;
+ align-items: center;
+ }
+
+ .hero h2 {
+ font-size: 2rem;
+ }
+
+ .hero p {
+ font-size: 1rem;
+ }
+
+ .product-grid {
+ grid-template-columns: 1fr;
+ }
+ }