:root {
  color-scheme: light;
  --green: #006600;
  --green-dark: #004f00;
  --green-mid: #0a7a0a;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: var(--white);
  background-color: var(--green);
  background-image: url("images/background2_03.gif");
}

a {
  color: var(--white);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

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

.site-shell {
  width: 797px;
  display: grid;
  grid-template-columns: 611px 186px;
  margin: 0;
}

.content-column {
  width: 611px;
}

.top-space {
  height: 110px;
}

.tabs {
  display: grid;
  grid-template-columns: 132px 115px 118px 116px 130px;
  width: 611px;
  min-height: 20px;
}

.tabs a {
  display: flex;
  min-height: 20px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: linear-gradient(var(--green-mid), var(--green-dark));
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.tabs a[aria-current="page"] {
  background: var(--white);
  color: var(--green);
}

.section-title {
  width: 611px;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding-left: 210px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(90deg, rgba(0, 50, 0, 0.42), rgba(0, 102, 0, 0.2));
}

.section-title span {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, Arial, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
}

.main-content {
  display: grid;
  grid-template-columns: 200px 411px;
}

.sprayer {
  width: 200px;
  height: 411px;
  object-fit: cover;
}

.copy {
  width: 411px;
  padding: 18px 11px 24px 0;
}

.factory {
  width: 400px;
  height: auto;
  margin-bottom: 10px;
}

p {
  margin: 0 0 10px;
}

.style1 {
  margin-top: 14px;
  margin-bottom: 4px;
  font-size: 14px;
}

.services-list {
  margin: 0 0 12px 18px;
  padding: 0;
}

.services-list li {
  margin-bottom: 2px;
}

.refurb-notice {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 58, 0, 0.48);
}

.notice-date {
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 6px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, Arial, sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.refurb-notice p:last-child,
.contact-block p:last-child {
  margin-bottom: 0;
}

.contact-block {
  margin-top: 22px;
}

.map-link {
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 10px;
}

.map-embed {
  display: block;
  width: 400px;
  max-width: 100%;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.side-column {
  width: 186px;
}

.side-column a {
  display: block;
}

.address {
  width: 186px;
  height: auto;
  margin-top: 100px;
}

.footer {
  grid-column: 1 / -1;
  width: 797px;
  padding: 30px 12px 24px;
  color: var(--white);
  text-align: center;
}

@media (max-width: 840px) {
  body {
    background-size: auto;
  }

  .site-shell {
    width: min(100%, 611px);
    display: block;
    margin: 0 auto;
  }

  .content-column,
  .tabs,
  .section-title,
  .footer {
    width: 100%;
  }

  .top-space {
    height: 24px;
  }

  .tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tabs a {
    min-height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.22);
  }

  .section-title {
    min-height: 58px;
    padding-left: 16px;
  }

  .main-content {
    grid-template-columns: 1fr;
  }

  .sprayer {
    display: none;
  }

  .copy {
    width: 100%;
    padding: 16px;
  }

  .factory {
    width: 100%;
  }

  .side-column {
    width: 100%;
    display: grid;
    grid-template-columns: 186px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 0 16px 24px;
  }

  .address {
    margin-top: 0;
  }

  .footer {
    padding-top: 12px;
  }
}

@media (max-width: 440px) {
  .tabs {
    grid-template-columns: 1fr;
  }

  .side-column {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
