* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-size: 2rem; /* Increased font size */
  color: #14532d;
  font-weight: bold;
  display: flex; /* Use flexbox to align image and text */
  align-items: center; /* Vertically align items */
}

.navbar-logo {
  height: 40px; /* Adjust height as needed */
  margin-right: 10px; /* Space between logo and text */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  font-size: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #800020;
}

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  background-color: #fff; /* White background for the section */
}

.hero-content-left {
  flex: 1;
  padding-right: 2rem;
  text-align: left;
}

.hero-content-left h1 {
  font-size: 2.5rem;
  color: #14532d;
  margin-bottom: 1rem;
}

.hero-content-left p {
  color: #333;
  margin-bottom: 2rem;
}

.hero-image-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-right img {
  max-width: 100%;
  height: auto;
  border-radius: 0; /* Remove border-radius */
  box-shadow: none; /* Remove box-shadow */
}

.btn {
  background-color: #800020;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #14532d;
}

.services {
  padding: 4rem 2rem;
  text-align: center;
}

.services h2 {
  color: #14532d;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
  font-size: 1.5rem; /* Increased font size */
  color: #14532d;
  margin-bottom: 0.75rem;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.core-values {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #f9f9f9;
}

.core-values h2 {
  color: #14532d;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 250px; /* Set a minimum height for consistent card size */
  justify-content: space-between; /* Distribute content vertically */
}

.value-icon {
  height: 100px; /* Default icon size */
  width: auto;
  margin-bottom: 1rem; /* Space between icon and heading */
}

.collaboration-icon,
.growth-icon {
  height: 100px; /* Doubled size for specific icons */
}

.value-card h3 {
  font-size: 1.5rem; /* Increased font size */
  color: #14532d;
  margin-bottom: 0.5rem;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.about h2 {
  color: #14532d;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact {
  padding: 4rem 2rem;
  text-align: center;
}

.contact h2 {
  color: #14532d;
  margin-bottom: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

input,
textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
}

button {
  border: none;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #fff;
  border-top: 1px solid #eee;
  color: #555;
}
