.page-title {
  background: #f4f4f4;
  border-bottom: 1px solid #e7e7e7;
  padding: 28px 0;
}

.page-title .title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.page-title h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1c;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #5c5c5c;
}

.breadcrumbs a {
  color: #5c5c5c;
}

.breadcrumbs svg {
  width: 14px;
  height: 14px;
  display: block;
}

.breadcrumbs .crumb-sep {
  color: #9a9a9a;
}

.page-content {
  padding: 70px 0 120px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.text-block h2,
.text-block h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1c;
}

.text-block p {
  margin: 0 0 18px;
  line-height: 1.7;
  color: #3b3b3b;
}

.text-block strong {
  font-weight: 700;
}

.image-frame img {
  border-radius: 6px;
  box-shadow: 0 0 0 0 transparent;
}

.section-spacer {
  height: 36px;
}

.center-image {
  display: flex;
  justify-content: center;
}

.center-image img {
  width: 500px;
  border-radius: 6px;
}

.video-frame {
  display: flex;
  justify-content: center;
}

.video-frame video {
  width: min(960px, 100%);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  background: #000;
}

.contact-title {
  margin-bottom: 26px;
}

.contact-title h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  color: #1c1c1c;
}

.contact-title h2 span {
  color: #439a0d;
}

.contact-title .title-underline {
  width: 48px;
  height: 3px;
  background: #439a0d;
  border-radius: 2px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  font-size: 14px;
  color: #2b2b2b;
  font-weight: 600;
}

.hp-field {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}


.contact-form button {
  justify-self: start;
  background: #196730;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(25, 103, 48, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-form button:hover,
.contact-form button:focus {
  transform: scale(1.03);
  box-shadow: 0 10px 22px rgba(25, 103, 48, 0.25);
  filter: brightness(1.05);
}

.contact-side img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 20px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: #2f2f2f;
}

.contact-list .icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(90deg, #196730, #439a0d);
  display: grid;
  place-items: center;
  color: #ffffff;
  flex: 0 0 auto;
}

.contact-list small {
  display: block;
  color: #5c5c5c;
  margin-top: 4px;
}

@media (max-width: 980px) {
  .page-title .title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-content {
    padding: 50px 0 100px;
  }
}

@media (max-width: 640px) {
  .page-title {
    padding: 20px 0;
  }

  .page-content {
    padding: 40px 0 90px;
  }

  .center-image img {
    width: min(420px, 100%);
  }

  .contact-title h2 {
    font-size: 22px;
  }
}
