body {
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  color: #333;
}

header, footer {
  background-color: #4CAF50;
  color: white;
  padding: 1em;
  text-align: center;
}

nav a {
  margin: 0 1em;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #e0e0e0;
}

section {
  padding: 2em;
  line-height: 1.6;
}

.hero {
  background: url('fruits.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 1em 1em;
  text-align: left;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #C3B091;
}

/* New CSS for hero section text */
.hero .hero-title,
.hero .hero-subtitle {
  position: relative;
  z-index: 1;
  margin-bottom: 0.5em; /* Keep some spacing */
}

.hero .hero-title {
  font-size: 2.5em; /* Controls the size of the main heading */
  font-weight: 700; /* Make it bold */
  margin-top: 0; /* Remove default h2 top margin */
}

.hero .hero-subtitle {
  font-size: 1.2em; /* Controls the size of the subheading */
  font-weight: 300; /* Lighter weight for paragraph */
}

.container {
  max-width: 1000px;
  margin: auto;
}

.section-title {
  text-align: center;
  color: #4CAF50;
  margin-bottom: 1em;
  font-size: 2em;
}

/* Specific styles for index.html */
.image-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 2em;
  flex-wrap: wrap;
  gap: 1em;
}

.image-row img {
  max-width: 48%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Specific styles for why-choose-us.html and vision-mission.html */
ul {
  list-style-type: disc;
  margin-left: 2em;
  padding: 0;
}

ul li {
  margin-bottom: 0.8em;
}

strong {
  color: #4CAF50; /* Highlight strong text */
}

.image-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2em;
  gap: 1em;
}

.image-content img {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Specific styles for contact.html */
.contact-info p {
  margin-bottom: 0.5em;
}

.contact-info strong {
  display: block;
  margin-top: 1em;
}

/* Common header logo style */
.logo-header {
/*  display: flex;*/
  justify-content: center;
  align-items: center;
  gap: 1em;
  padding: 0.5em 0;
}

.logo-header img {
  height: 60px; /* Adjust logo size */
  width: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product {
    flex: 1 1 100%;
  }
  .image-row img,
  .image-content img {
    max-width: 100%;
  }
  .hero .hero-title { /* Adjusted for responsiveness */
    font-size: 2em;
  }
  .hero .hero-subtitle { /* Adjusted for responsiveness */
    font-size: 1em;
  }
  .logo-header img {
    height: 50px;
  }
}