*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* src/scss/abstracts/_index.scss */
/* Design tokens */
/* =========================================
   Typography Tokens
========================================= */
/* =========================================
   Base Typography
========================================= */
body {
  font-family: "Roboto Condensed", system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}

/* =========================================
   Headings
========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
  line-height: 1.1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1 {
  font-weight: 800;
}

h2 {
  font-weight: 700;
}

h3 {
  font-weight: 600;
}

/* =========================================
   Small text
========================================= */
small {
  font-weight: 300;
}

/* Utilities */
body {
  color: #1f1f1f;
  background: #efefef;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
}

h2.green-underline::after, .c-text-callout__title::after {
  content: "";
  display: block;
  margin: 8px auto 0 auto;
  width: 350px;
  height: 4px;
  background: #21723c;
}

.noUnderline::after {
  display: none !important;
}

.site-main {
  display: block;
}

.c-debug-fallback {
  margin: 24px 0;
  padding: 16px 0;
  background: #eeeeee;
  color: #222222;
}
.c-debug-fallback p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.c-debug-fallback code {
  font-family: monospace;
  font-size: 0.95em;
}

.c-debug-fallback--error {
  background: #f8d7da;
  color: #842029;
}

@media print {
  *,
  *::before,
  *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  .site-header {
    position: static !important;
  }
  .skip-to-content,
  .site-header__hamburger,
  .site-header__search-toggle,
  .site-search-panel,
  .home-featured-video,
  .js-featured-video {
    display: none !important;
  }
  section,
  article,
  .c-info-card,
  .c-step-card,
  .c-numbered-info-card,
  .c-recommendation-card {
    page-break-inside: avoid;
    break-inside: avoid;
  }
}
.o-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 767px) {
  .o-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 99999;
  padding: 12px 24px;
  background: #1f6b38;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  transition: top 0.15s ease;
}
.skip-to-content:focus {
  top: 0;
  outline: 3px solid #ffffff;
  outline-offset: -3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 82px;
  background: #ffffff;
  display: flex;
  align-items: center;
}
.site-header .o-container {
  position: relative;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.site-header__logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin: 0;
  padding: 0;
}
.site-header__logo img,
.site-header__logo .custom-logo {
  display: block;
  max-width: 180px;
  height: auto;
  margin: 0;
}

.site-header__logo-text {
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f1f1f;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header__nav {
  display: flex;
  align-items: center;
}

.site-header__nav-top {
  display: none;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__nav-list a {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #4a4a4a;
  text-decoration: none;
  transition: color 0.2s ease-out;
}
.site-header__nav-list a:hover {
  color: #1f6b38;
}
.site-header__nav-list .current-menu-item > a,
.site-header__nav-list .current_page_item > a,
.site-header__nav-list .current-page-ancestor > a {
  color: #1f6b38;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header__search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #f0f5f1;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #1f6b38;
  transition: background 0.2s ease;
}
.site-header__search-toggle:hover, .site-header__search-toggle[aria-expanded=true] {
  background: #d5e4d9;
}

.site-search-panel {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 999;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-search-panel[hidden] {
  display: none;
}
.site-search-panel .search-form {
  display: flex;
  gap: 8px;
  width: 360px;
}
.site-search-panel .search-field {
  flex: 1;
  height: 44px;
  padding: 0 16px;
  border: 1px solid #dddddd;
  border-radius: 999px;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: #1f1f1f;
  outline: none;
}
.site-search-panel .search-field:focus {
  border-color: #1f6b38;
}
.site-search-panel__close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: #4a4a4a;
  transition: background 0.2s ease, color 0.2s ease;
}
.site-search-panel__close:hover {
  background: #f0f5f1;
  color: #1f6b38;
}
.site-search-panel .search-submit {
  height: 44px;
  padding: 0 20px;
  background: #1f6b38;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.site-search-panel .search-submit:hover {
  background: #174f2a;
}

.site-header__hamburger {
  display: none;
}

.site-header__nav-close {
  display: none;
}

@media (max-width: 991px) {
  .site-search-panel {
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 0 0 0 0;
    padding: 16px;
  }
  .site-header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #1f6b38;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
  }
  .site-header__hamburger::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 9px 0 #fff;
  }
  .site-header__hamburger::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
  }
  .site-header__hamburger:hover {
    background: #174f2a;
  }
  .site-header__nav {
    display: none;
  }
  .site-header__nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #ffffff;
    padding: 24px;
    padding-top: 82px;
    overflow-y: auto;
  }
  .site-header__nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 82px;
    padding: 0 24px;
    background: #ffffff;
    z-index: 10001;
  }
  .site-header__nav-top .site-header__nav-logo .custom-logo,
  .site-header__nav-top .site-header__nav-logo img {
    max-width: 140px;
  }
  .site-header__nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #1f6b38;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
  }
  .site-header__nav-close::before, .site-header__nav-close::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    top: 50%;
    left: 50%;
  }
  .site-header__nav-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .site-header__nav-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .site-header__nav-close:hover {
    background: #174f2a;
  }
  .site-header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 24px;
    padding-top: 8px;
  }
  .site-header__nav-list a {
    font-size: 1.5rem;
  }
}
.site-footer {
  margin-top: 64px;
  background: #1a1a1a;
  color: #ffffff;
  padding: 48px 0 32px;
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
}

.site-footer__logo img {
  display: block;
  height: auto;
}

.site-footer__badge {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.site-footer__badge img {
  display: block;
  flex-shrink: 0;
}

.site-footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}

.site-footer__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__nav a {
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__nav a:hover {
  color: #ffffff;
}

.site-footer__copy {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 991px) {
  .site-footer__top,
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .site-footer__bottom {
    gap: 20px;
  }
}
.c-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: all 0.2s ease;
}
.c-button__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.c-button__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.c-button__label {
  display: inline-block;
}

.c-button--fill {
  background: #1f6b38;
  border-color: #1f6b38;
  color: #ffffff;
}
.c-button--fill:hover, .c-button--fill:focus-visible {
  background: #174f2a;
  border-color: #174f2a;
  color: #ffffff;
}

.c-button--outline {
  background: transparent;
  border-color: #1f6b38;
  color: #1f6b38;
}
.c-button--outline .c-button__icon svg {
  color: #1f6b38;
}
.c-button--outline:hover, .c-button--outline:focus-visible {
  background: #1f6b38;
  color: #ffffff;
}
.c-button--outline:hover .c-button__icon svg, .c-button--outline:focus-visible .c-button__icon svg {
  color: #ffffff;
}

.c-button__icon--download {
  background-image: url("../images/icon-download.svg");
}

.c-button__icon--arrow {
  background-image: url("../images/icon-arrow.svg");
}

.c-button__icon--external {
  background-image: url("../images/icon-external.svg");
}

.c-button__icon--play {
  background-image: url("../images/icon-play.svg");
}

.c-page-header {
  padding: 96px 0 0 0;
}
.c-page-header .o-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
}
.c-page-header__content {
  max-width: 720px;
}
.c-page-header__title {
  margin: 0 0 16px;
  font-size: 3rem;
  line-height: 1.05;
  color: #222222;
}
.c-page-header__intro {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #4a4a4a;
}
.c-page-header__intro p:last-child {
  margin-bottom: 0;
}
.c-page-header__media {
  width: 100%;
}
.c-page-header__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .c-page-header {
    padding: 48px 0 40px;
  }
  .c-page-header__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .c-page-header {
    padding: 40px 0 32px;
  }
  .c-page-header__title {
    font-size: 2rem;
  }
  .c-page-header__intro {
    font-size: 1rem;
  }
}
.c-search-results {
  padding: 60px 0 100px;
}
.c-search-results__title {
  font-family: "Roboto", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #222222;
  margin: 0 0 40px;
}
.c-search-results__title span {
  color: #1f6b38;
}
.c-search-results__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.c-search-results__item {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 32px;
}
.c-search-results__item-title {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.c-search-results__item-title a {
  color: #2d7d46;
  text-decoration: none;
}
.c-search-results__item-title a:hover {
  color: #1f6b38;
  text-decoration: underline;
}
.c-search-results__item-excerpt {
  color: #4a4a4a;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.c-search-results__item-excerpt mark {
  background: #e8f5ee;
  color: #1f6b38;
  font-weight: 600;
  padding: 0 2px;
  border-radius: 2px;
}

.c-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 0 120px;
}
.c-404__code {
  font-family: "Roboto", sans-serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  color: #dddddd;
  margin: 0 0 16px;
}
.c-404__title {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #222222;
  margin: 0 0 16px;
}
.c-404__message {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin: 0 0 40px;
  max-width: 480px;
}
.c-404__search {
  width: 100%;
  max-width: 640px;
}
.c-404__search .search-form {
  display: flex;
  gap: 8px;
  width: 100%;
}
.c-404__search label {
  flex: 1;
  display: flex;
}
.c-404__search .search-field {
  flex: 1;
  height: 48px;
  padding: 0 20px;
  border: 1px solid #dddddd;
  border-radius: 999px;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: #1f1f1f;
  outline: none;
}
.c-404__search .search-field:focus {
  border-color: #1f6b38;
}
.c-404__search .search-submit {
  height: 48px;
  padding: 0 24px;
  background: #1f6b38;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.c-404__search .search-submit:hover {
  background: #174f2a;
}

.c-table {
  width: 100%;
  border: 2px solid #000;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}

.c-home-hero {
  padding: 56px 0 40px;
}
.c-home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: center;
}
.c-home-hero__content {
  max-width: 440px;
}
.c-home-hero__title {
  margin: 0 0 16px;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.05;
  color: #1f6b38;
}
.c-home-hero__description {
  font-size: 1.25rem;
  line-height: 1.45;
  color: #4a4a4a;
}
.c-home-hero__description p:last-child {
  margin-bottom: 0;
}
.c-home-hero__media {
  width: 100%;
}
.c-home-hero__image-link, .c-home-hero__image {
  display: block;
  width: 100%;
}
.c-home-hero__image {
  border-radius: 16px;
}

@media (max-width: 991px) {
  .c-home-hero {
    padding-top: 40px;
  }
  .c-home-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .c-home-hero__content {
    max-width: none;
  }
  .c-home-hero__title {
    font-size: 2.5rem;
  }
  .c-home-hero__description {
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  .c-home-hero {
    padding: 32px 0 24px;
  }
  .c-home-hero__title {
    font-size: 2rem;
  }
  .c-home-hero__description {
    font-size: 1rem;
  }
}
.home-featured-video {
  padding: 24px 0 72px;
}
.home-featured-video__label {
  margin: 0 0 12px;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 400;
  color: #4a4a4a;
}
.home-featured-video__wrapper {
  position: relative;
  width: 100%;
}
.home-featured-video__button {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  cursor: pointer;
}
.home-featured-video__thumbnail {
  display: block;
  width: 100%;
  height: auto;
}
.home-featured-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 60px;
  border-radius: 16px;
  background: #ff0033;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.home-featured-video__play::before {
  content: "";
  display: block;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #ffffff;
}
.home-featured-video__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}
.home-featured-video__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 5px solid #000;
}
.home-featured-video__caption {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #4a4a4a;
}

@media (max-width: 767px) {
  .home-featured-video {
    padding-bottom: 48px;
  }
  .home-featured-video__play {
    width: 72px;
    height: 52px;
    border-radius: 14px;
  }
}
.home-featured-video__wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.home-intro-card-cta {
  padding: 72px 0;
}
.home-intro-card-cta__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}
.home-intro-card-cta__icon {
  margin-bottom: 16px;
}
.home-intro-card-cta__icon img {
  display: block;
  height: auto;
  max-width: 140px;
}
.home-intro-card-cta__title {
  margin: 0;
  font-size: 3rem;
  line-height: 1.1;
  color: #222222;
}
.home-intro-card-cta__card {
  padding: 48px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.home-intro-card-cta__content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: #303030;
}
.home-intro-card-cta__content p + p {
  margin-top: 1.25rem;
}
.home-intro-card-cta__actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

@media (max-width: 991px) {
  .home-intro-card-cta {
    padding: 56px 0;
  }
  .home-intro-card-cta__title {
    font-size: 2.5rem;
  }
  .home-intro-card-cta__card {
    padding: 32px;
  }
}
@media (max-width: 767px) {
  .home-intro-card-cta {
    padding: 48px 0;
  }
  .home-intro-card-cta__title {
    font-size: 2rem;
  }
  .home-intro-card-cta__card {
    padding: 24px;
    border-radius: 16px;
  }
}
.c-button__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-news-preview {
  padding: 72px 0;
}
.home-news-preview__header {
  margin-bottom: 32px;
  text-align: center;
}
.home-news-preview__title {
  margin: 0;
  font-size: 3rem;
  line-height: 1.1;
  color: #222222;
}
.home-news-preview__card {
  padding: 48px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.home-news-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.home-news-preview__item {
  min-width: 0;
}
.home-news-preview__item-link {
  display: block;
  text-decoration: none;
}
.home-news-preview__media {
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 12px;
}
.home-news-preview__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.home-news-preview__content {
  min-width: 0;
}
.home-news-preview__item-title {
  margin: 0 0 8px;
  font-size: 1.25rem;
  line-height: 1.3;
  color: #222222;
}
.home-news-preview__date {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #666666;
}
.home-news-preview__actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

@media (max-width: 991px) {
  .home-news-preview {
    padding: 56px 0;
  }
  .home-news-preview__title {
    font-size: 2.5rem;
  }
  .home-news-preview__card {
    padding: 32px;
  }
  .home-news-preview__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .home-news-preview {
    padding: 48px 0;
  }
  .home-news-preview__title {
    font-size: 2rem;
  }
  .home-news-preview__card {
    padding: 24px;
    border-radius: 16px;
  }
}
.section-certification-logos {
  padding: 96px 64px 0;
}
.section-certification-logos__card {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.section-certification-logos__intro {
  margin: 0 0 24px;
  font-size: 0.75rem;
  line-height: 1.4;
  text-align: center;
  color: #1f1f1f;
}
.section-certification-logos__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}
.section-certification-logos__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 24px;
}
.section-certification-logos__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 72px;
  background: #cfcfcf;
  transform: translateY(-50%);
}
.section-certification-logos__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.section-certification-logos__image {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .section-certification-logos {
    padding: 32px 0 48px;
  }
  .section-certification-logos__card {
    padding: 24px;
  }
  .section-certification-logos__intro {
    margin-bottom: 20px;
  }
  .section-certification-logos__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section-certification-logos__item {
    padding: 0;
  }
  .section-certification-logos__item:not(:last-child)::after {
    display: none;
  }
  .section-certification-logos__image {
    max-height: 60px;
  }
}
.section-contact-help {
  padding: 96px 0 0;
}
.section-contact-help__card {
  padding: 48px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.section-contact-help__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.section-contact-help__title {
  margin: 0 0 24px;
  font-size: 3rem;
  line-height: 1.1;
  color: #222222;
}
.section-contact-help__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #303030;
}
.section-contact-help__text p + p {
  margin-top: 1rem;
}
.section-contact-help__text a {
  color: #1f6b38;
  text-decoration: underline;
}
.section-contact-help__actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 32px;
}

@media (max-width: 991px) {
  .section-contact-help {
    padding: 56px 0;
  }
  .section-contact-help__card {
    padding: 32px;
  }
  .section-contact-help__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .section-contact-help {
    padding: 48px 0;
  }
  .section-contact-help__card {
    padding: 24px;
    border-radius: 16px;
  }
  .section-contact-help__title {
    font-size: 2rem;
  }
}
.c-recommendations {
  padding: 96px 0 0;
}
.c-recommendations__header {
  margin-bottom: 32px !important;
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}
.c-recommendations__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  color: inherit;
}
.c-recommendations__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 991px) {
  .c-recommendations__header {
    margin-bottom: 48px;
  }
  .c-recommendations__title {
    font-size: 2.5rem;
  }
  .c-recommendations__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .c-recommendations__header {
    margin-bottom: 32px;
  }
  .c-recommendations__title {
    font-size: 2rem;
  }
  .c-recommendations__grid {
    grid-template-columns: 1fr;
  }
}

.c-recommendation-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 48px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.c-recommendation-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.c-recommendation-card__badge {
  display: inline-flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1f7a3f;
  color: #fff;
  font-family: "Roboto Condensed", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
.c-recommendation-card__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.35;
}
.c-recommendation-card__text {
  margin: 0;
  font-family: "Roboto Condensed", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: inherit;
}
@media (max-width: 991px) {
  .c-recommendation-card {
    padding: 32px;
  }
}
@media (max-width: 767px) {
  .c-recommendation-card__header {
    gap: 16px;
    margin-bottom: 24px;
  }
  .c-recommendation-card__title {
    font-size: 1.5rem;
  }
}

.c-intro {
  padding: 96px 0;
}
.c-intro__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.c-intro__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.c-intro__icon-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 48px;
  max-height: 48px;
}
.c-intro__title {
  margin: 0 0 24px;
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
}
.c-intro__text {
  max-width: 640px;
  margin: 0 auto;
}
.c-intro__text p {
  margin: 0;
  font-family: "Roboto Condensed", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.35;
}
@media (max-width: 991px) {
  .c-intro__title {
    font-size: 2.5rem;
  }
  .c-intro__text {
    max-width: 100%;
  }
  .c-intro__text p {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .c-intro {
    padding: 64px 0 0;
  }
  .c-intro__icon {
    margin-bottom: 16px;
  }
  .c-intro__icon-image {
    max-width: 40px;
    max-height: 40px;
  }
  .c-intro__title {
    margin-bottom: 16px;
    font-size: 2rem;
  }
  .c-intro__text p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.c-info-cards-grid__header {
  margin-bottom: 48px;
  text-align: center;
}
.c-info-cards-grid__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
}
.c-info-cards-grid__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.c-info-cards-grid__grid--cols-1 {
  grid-template-columns: 1fr;
}
.c-info-cards-grid__grid--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.c-info-cards-grid__grid--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.c-info-cards-grid__grid--cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 767px) {
  .c-info-cards-grid__header {
    margin-bottom: 32px;
  }
  .c-info-cards-grid__title {
    font-size: 2rem;
  }
  .c-info-cards-grid__grid, .c-info-cards-grid__grid--cols-1, .c-info-cards-grid__grid--cols-2, .c-info-cards-grid__grid--cols-3, .c-info-cards-grid__grid--cols-4 {
    grid-template-columns: 1fr;
  }
}

.c-info-card {
  height: 100%;
  padding: 48px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.c-info-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.c-info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
}
.c-info-card__icon img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.c-info-card__heading-group {
  min-width: 0;
}
.c-info-card__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
}
.c-info-card__subtitle {
  margin: 8px 0 0;
  font-family: "Roboto Condensed", system-ui, sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  color: inherit;
}
.c-info-card__content {
  font-family: "Roboto Condensed", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.c-info-card__content > *:first-child {
  margin-top: 0;
}
.c-info-card__content > *:last-child {
  margin-bottom: 0;
}
.c-info-card__content p {
  margin: 0 0 24px;
}
.c-info-card__content ul,
.c-info-card__content ol {
  margin: 0 0 24px;
  padding-left: 1.25rem;
}
.c-info-card__content li + li {
  margin-top: 8px;
}
.c-info-card__content a {
  color: #2d7d46;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 991px) {
  .c-info-card {
    padding: 32px;
  }
}

.c-page-navigation {
  padding: 96px 0 0;
}
.c-page-navigation__inner {
  text-align: center;
}
.c-page-navigation__title {
  margin: 0 0 48px;
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  color: #2d7d46;
}
.c-page-navigation__nav {
  display: flex;
  justify-content: center;
}
.c-page-navigation__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-page-navigation__item {
  margin: 0;
}
.c-page-navigation__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Roboto Condensed", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.35;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.c-page-navigation__link:hover, .c-page-navigation__link:focus-visible {
  opacity: 0.72;
}
.c-page-navigation__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: translateY(1px);
}
@media (max-width: 991px) {
  .c-page-navigation__title {
    font-size: 2.5rem;
  }
  .c-page-navigation__list {
    gap: 24px 32px;
  }
  .c-page-navigation__link {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .c-page-navigation__title {
    margin-bottom: 32px;
    font-size: 2rem;
  }
  .c-page-navigation__list {
    flex-direction: column;
    gap: 16px;
  }
  .c-page-navigation__link {
    justify-content: center;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.c-text-callout {
  padding: 96px 0 0;
}
.c-text-callout__inner {
  text-align: center;
}
.c-text-callout__title {
  margin: 0 0 48px;
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
}
.c-text-callout__card {
  max-width: 100%;
  padding: 48px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.c-text-callout__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  font-family: "Roboto Condensed", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.c-text-callout__content > *:first-child {
  margin-top: 0;
}
.c-text-callout__content > *:last-child {
  margin-bottom: 0;
}
.c-text-callout__content p {
  margin: 0 0 24px;
}
.c-text-callout__content a {
  text-decoration: underline;
}
@media (max-width: 991px) {
  .c-text-callout__title {
    font-size: 2.5rem;
  }
  .c-text-callout__card {
    padding: 32px;
  }
}
@media (max-width: 767px) {
  .c-text-callout__title {
    margin-bottom: 32px;
    font-size: 2rem;
  }
}

.c-text-callout__shortcode {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.c-section-intro-cta {
  padding: 96px 0 0;
}
.c-section-intro-cta__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.c-section-intro-cta__title {
  margin: 0 0 24px;
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
}
.c-section-intro-cta__text {
  margin: 0 auto;
}
.c-section-intro-cta__text p {
  margin: 0;
  font-family: "Roboto Condensed", system-ui, sans-serif;
  font-size: 1.5rem;
  line-height: 1.35;
}
.c-section-intro-cta__text a {
  color: #1f6b38;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.c-section-intro-cta__text a:hover, .c-section-intro-cta__text a:focus-visible {
  opacity: 0.8;
  text-decoration: underline;
}
.c-section-intro-cta__text a:visited {
  color: #1f6b38;
}
.c-section-intro-cta__actions {
  margin-top: 32px;
}
.c-section-intro-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  background: transparent;
  border: 2px solid #1f6b38;
  border-radius: 999px;
  font-family: "Roboto Condensed", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: #1f6b38;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.c-section-intro-cta__button:hover, .c-section-intro-cta__button:focus-visible {
  background: #1f6b38;
  color: #ffffff;
}
.c-section-intro-cta__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
.c-section-intro-cta__button-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  color: inherit;
}
.c-section-intro-cta__button-label {
  display: inline-block;
}
@media (max-width: 991px) {
  .c-section-intro-cta__title {
    font-size: 2.5rem;
  }
  .c-section-intro-cta__text p {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .c-section-intro-cta__title {
    font-size: 2rem;
  }
  .c-section-intro-cta__text p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.c-numbered-info-cards {
  padding: 48px 0 0;
}
.c-numbered-info-cards__list {
  display: grid;
  gap: 32px;
}

.c-numbered-info-card {
  padding: 48px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.c-numbered-info-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 32px;
  border-radius: 50%;
  background: #2d7d46;
  color: #fff;
  font-family: "Roboto Condensed", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}
.c-numbered-info-card__title {
  margin: 0 0 32px;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
}
.c-numbered-info-card__content {
  font-family: "Roboto Condensed", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.c-numbered-info-card__content > *:first-child {
  margin-top: 0;
}
.c-numbered-info-card__content > *:last-child {
  margin-bottom: 0;
}
.c-numbered-info-card__content p {
  margin: 0 0 24px;
}
.c-numbered-info-card__content ul,
.c-numbered-info-card__content ol {
  margin: 0 0 24px;
  padding-left: 1.25rem;
}
.c-numbered-info-card__content li + li {
  margin-top: 8px;
}
.c-numbered-info-card__content {
  /* 
  a {
    color: $color-green;
    text-decoration: underline;
    text-underline-offset: 2px;

    &:hover,
    &:focus-visible {
      opacity: 0.8;
      text-decoration: underline;
    }
  */
}
.c-numbered-info-card__content a {
  color: #2d7d46;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.c-numbered-info-card__content a:hover, .c-numbered-info-card__content a:focus-visible {
  color: #50d67a;
  text-decoration: underline;
}
.c-numbered-info-card__content a:visited {
  color: #2d7d46;
}
.c-numbered-info-card__highlight {
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 32px;
  padding: 32px;
  border-radius: 16px;
  font-family: "Roboto Condensed", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.c-numbered-info-card__highlight--warning {
  background: #f3e7b8;
  border-left: 4px solid #f2c94c;
}
.c-numbered-info-card__highlight--success {
  background: #dceacc;
  border-left: 4px solid #2d7d46;
}
.c-numbered-info-card__highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
}
.c-numbered-info-card__highlight-icon img {
  display: block;
  width: 32px;
  height: 32px;
}
.c-numbered-info-card__highlight-text {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}
.c-numbered-info-card__highlight-text > *:first-child {
  margin-top: 0;
}
.c-numbered-info-card__highlight-text > *:last-child {
  margin-bottom: 0;
}
.c-numbered-info-card__highlight-text p {
  margin: 0;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}
@media (max-width: 991px) {
  .c-numbered-info-card__highlight {
    gap: 16px;
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .c-numbered-info-card__highlight-icon {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }
  .c-numbered-info-card__highlight-icon img {
    width: 24px;
    height: 24px;
  }
}

.c-notice-box {
  padding: 32px 0 0;
}
.c-notice-box__inner {
  padding: 32px;
  border-radius: 24px;
}
.c-notice-box__title {
  margin: 0 0 16px;
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
}
.c-notice-box__content {
  font-family: "Roboto Condensed", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.c-notice-box__content > *:first-child {
  margin-top: 0;
}
.c-notice-box__content > *:last-child {
  margin-bottom: 0;
}
.c-notice-box__content p {
  margin: 0 0 16px;
}
.c-notice-box__content ul,
.c-notice-box__content ol {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}
.c-notice-box__content li + li {
  margin-top: 8px;
}
.c-notice-box__content a {
  text-decoration: underline;
}
.c-notice-box--success-light .c-notice-box__inner {
  background: #dceacc;
  color: #1e1e1e;
}
.c-notice-box--success-dark .c-notice-box__inner {
  background: #2d7d46;
  color: #fff;
}
.c-notice-box--warning-light .c-notice-box__inner {
  background: #f3e4ad;
  color: #1e1e1e;
}

.c-steps-cards {
  padding: 48px 0 0;
}
.c-steps-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 991px) {
  .c-steps-cards__grid {
    grid-template-columns: 1fr;
  }
}

.c-step-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.c-step-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #2d7d46;
  color: #fff;
  font-family: "Roboto Condensed", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}
.c-step-card__title {
  margin: 0 0 16px;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
}
.c-step-card__text {
  margin: 0;
  font-family: "Roboto Condensed", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.c-page-updated-date {
  text-align: right;
}

/*# sourceMappingURL=main.css.map */
