Changed around line 1
+ :root {
+ --primary: #FF7F50;
+ --secondary: #FFA07A;
+ --background: #FFF8DC;
+ --text: #2F4F4F;
+ }
+
+ body {
+ font-family: 'Georgia', serif;
+ line-height: 1.6;
+ color: var(--text);
+ background: var(--background);
+ margin: 0;
+ padding: 0;
+ }
+
+ .hero {
+ background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/orange-grove.jpg');
+ background-size: cover;
+ background-position: center;
+ color: white;
+ padding: 4rem 2rem;
+ text-align: center;
+ }
+
+ .nav-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: bold;
+ }
+
+ .hero-content {
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .primary-button {
+ background: var(--primary);
+ color: white;
+ padding: 1rem 2rem;
+ border: none;
+ border-radius: 5px;
+ text-decoration: none;
+ display: inline-block;
+ margin-top: 1rem;
+ }
+
+ .about-grid, .product-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .about-card, .product-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 2px 5px rgba(0,0,0,0.1);
+ text-align: center;
+ }
+
+ .about-icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .product-card img {
+ width: 100%;
+ height: 200px;
+ object-fit: cover;
+ border-radius: 5px;
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 2rem auto;
+ padding: 2rem;
+ background: white;
+ border-radius: 10px;
+ box-shadow: 0 2px 5px rgba(0,0,0,0.1);
+ }
+
+ .contact-form input, .contact-form textarea {
+ width: 100%;
+ padding: 1rem;
+ margin-bottom: 1rem;
+ border: 1px solid #ddd;
+ border-radius: 5px;
+ }
+
+ .footer-content {
+ background: var(--text);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+ }