Changed around line 1
+ :root {
+ --primary-color: #003366;
+ --secondary-color: #ff6600;
+ --background-color: #f4f4f4;
+ --text-color: #333;
+ --white: #ffffff;
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ }
+
+ .container {
+ width: 90%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .header {
+ background-color: var(--primary-color);
+ color: var(--white);
+ padding: 20px 0;
+ }
+
+ .header .logo {
+ font-size: 24px;
+ font-weight: bold;
+ }
+
+ .nav ul {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+ display: flex;
+ justify-content: flex-end;
+ }
+
+ .nav ul li {
+ margin-left: 20px;
+ }
+
+ .nav ul li a {
+ color: var(--white);
+ text-decoration: none;
+ font-weight: bold;
+ }
+
+ .hero {
+ background: url('hero-bg.jpg') no-repeat center center/cover;
+ color: var(--white);
+ padding: 100px 0;
+ text-align: center;
+ }
+
+ .hero h2 {
+ font-size: 48px;
+ margin-bottom: 20px;
+ }
+
+ .hero p {
+ font-size: 24px;
+ margin-bottom: 40px;
+ }
+
+ .btn {
+ background-color: var(--secondary-color);
+ color: var(--white);
+ padding: 10px 20px;
+ text-decoration: none;
+ border-radius: 5px;
+ font-weight: bold;
+ }
+
+ .about, .products, .contact {
+ padding: 60px 0;
+ }
+
+ .about h2, .products h2, .contact h2 {
+ text-align: center;
+ margin-bottom: 40px;
+ }
+
+ .product-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 20px;
+ }
+
+ .product-card {
+ background-color: var(--white);
+ padding: 20px;
+ border-radius: 10px;
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+ text-align: center;
+ }
+
+ .product-card h3 {
+ margin-bottom: 10px;
+ }
+
+ .contact form {
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ .contact label {
+ display: block;
+ margin-bottom: 5px;
+ }
+
+ .contact input, .contact textarea {
+ width: 100%;
+ padding: 10px;
+ margin-bottom: 20px;
+ border: 1px solid #ccc;
+ border-radius: 5px;
+ }
+
+ .contact button {
+ width: 100%;
+ padding: 10px;
+ background-color: var(--secondary-color);
+ color: var(--white);
+ border: none;
+ border-radius: 5px;
+ font-weight: bold;
+ }
+
+ .footer {
+ background-color: var(--primary-color);
+ color: var(--white);
+ text-align: center;
+ padding: 20px 0;
+ }
+
+ @media (max-width: 768px) {
+ .nav ul {
+ flex-direction: column;
+ align-items: center;
+ }
+
+ .nav ul li {
+ margin: 10px 0;
+ }
+
+ .hero h2 {
+ font-size: 36px;
+ }
+
+ .hero p {
+ font-size: 18px;
+ }
+ }