Changed around line 1
+ :root {
+ --primary-color: #FFD700;
+ --secondary-color: #4CAF50;
+ --background-color: #F5F5F5;
+ --text-color: #333;
+ --font-family: 'Arial', sans-serif;
+ }
+
+ body {
+ font-family: var(--font-family);
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ }
+
+ header {
+ background-color: var(--primary-color);
+ padding: 20px;
+ text-align: center;
+ }
+
+ header h1 {
+ margin: 0;
+ font-size: 2.5rem;
+ }
+
+ header p {
+ font-size: 1.2rem;
+ }
+
+ .hero {
+ background: url('banana-hero.jpg') no-repeat center center/cover;
+ height: 60vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ color: white;
+ text-align: center;
+ }
+
+ .hero-content {
+ background: rgba(0, 0, 0, 0.5);
+ padding: 20px;
+ border-radius: 10px;
+ }
+
+ .hero h2 {
+ font-size: 2rem;
+ }
+
+ .cta-button {
+ background-color: var(--secondary-color);
+ color: white;
+ padding: 10px 20px;
+ text-decoration: none;
+ border-radius: 5px;
+ font-size: 1.2rem;
+ }
+
+ .features {
+ padding: 40px 20px;
+ text-align: center;
+ }
+
+ .features h2 {
+ font-size: 2rem;
+ margin-bottom: 20px;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 20px;
+ }
+
+ .feature {
+ background: white;
+ padding: 20px;
+ border-radius: 10px;
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+ }
+
+ .feature h3 {
+ font-size: 1.5rem;
+ margin-bottom: 10px;
+ }
+
+ .gallery {
+ padding: 40px 20px;
+ text-align: center;
+ }
+
+ .gallery h2 {
+ font-size: 2rem;
+ margin-bottom: 20px;
+ }
+
+ .gallery-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 20px;
+ }
+
+ .gallery img {
+ width: 100%;
+ border-radius: 10px;
+ }
+
+ .testimonials {
+ padding: 40px 20px;
+ text-align: center;
+ }
+
+ .testimonials h2 {
+ font-size: 2rem;
+ margin-bottom: 20px;
+ }
+
+ .testimonial {
+ background: white;
+ padding: 20px;
+ border-radius: 10px;
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+ margin-bottom: 20px;
+ }
+
+ footer {
+ background-color: var(--primary-color);
+ padding: 20px;
+ text-align: center;
+ }
+
+ @media (max-width: 768px) {
+ .hero {
+ height: 40vh;
+ }
+
+ .hero h2 {
+ font-size: 1.5rem;
+ }
+
+ .cta-button {
+ font-size: 1rem;
+ }
+
+ .features h2, .gallery h2, .testimonials h2 {
+ font-size: 1.5rem;
+ }
+
+ .feature h3 {
+ font-size: 1.2rem;
+ }
+ }