body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header and navigation fixes */
.header_mid_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 0 12px;
  gap: 10px;
  position: relative;
  z-index: 6;
}

.header_mid_inner .logo_wrap {
  display: block;
  text-align: center;
}

.logo_wrap img {
  display: inline-block;
  max-height: 90px;
  width: auto;
  height: auto;
}

.header_bot {
  background: rgba(0, 0, 0, 0.55);
  margin-top: 40px;
  position: relative;
  z-index: 5;
}

.header_bot .navigation_wrap {
  width: 100%;
}

#navigation {
  list-style: none;
  margin: 0;
  padding: 10px 24px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

#navigation > li {
  display: block;
}

#navigation > li > a {
  display: block;
  padding: 14px 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

#navigation > li > a:hover {
  color: #ffb15e;
  transform: translateY(-2px);
}

/* Force logo visibility over theme absolute styles */
#header .header_mid .logo_wrap {
  display: flex;
  justify-content: center;
}

#header .header_mid .logo_wrap img {
  position: static !important;
  margin: 0 auto !important;
  max-height: 90px !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  box-shadow: none !important;
}

.page_title_block {
  background: #ffffff;
  padding: 24px 20px 10px;
}

.page_title_block .wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.page_title_block h1 {
  margin: 0;
  font-size: 36px;
  line-height: 1.2;
  color: #212121;
}

.headline {
  position: relative;
}

.headline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.headline_table_wrap {
  padding: 48px 0 28px;
}

.headline_text h1 {
  margin: 0;
  padding: 48px 20px 24px;
  color: #fff;
  font-size: 46px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

/* Simple mobile nav toggle */
body.nav-open #navigation {
  display: block;
}

@media (max-width: 1024px) {
  #navigation {
    display: none;
  }

  .responsive_nav {
    cursor: pointer;
  }
}

/* Local background for the hero section */
.top_img {
  background-image: url('../img/kd_green_peas_3-820x490.jpg');
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

/* Intro text block */
#middle{
  padding: 20px 0;
  background: #ffffff;
}
.intro_block {
  background: #f7f9f7;
  padding: 40px 20px;
}

.intro_block .wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.intro_block h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.3;
}

.intro_block p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

