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

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  position: relative;
}

.navbar {
  width: 100%;
  margin: 0;
  background: #fff;
  border: 0;
  padding: clamp(14px, 1.8vw, 22px) clamp(14px, 1.6vw, 20px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 40;
  transition: padding 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.navbar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: 1px solid #d9d9d9;
}

.utility-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
  overflow: visible;
  padding-bottom: clamp(6px, 0.9vw, 12px);
  transition: max-height 0.28s ease, opacity 0.28s ease, transform 0.28s ease, padding-bottom 0.28s ease;
}

.navbar.is-condensed {
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 12px;
}

.navbar.is-condensed .main-row {
  align-items: center;
}

.navbar.is-condensed .utility-row {
  max-height: 0;
  opacity: 0;
  transform: translateY(-12px);
  padding-bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.navbar.utility-hidden {
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 12px;
}

.navbar.utility-hidden .main-row {
  align-items: center;
}

.navbar.utility-hidden .utility-row {
  max-height: 0;
  opacity: 0;
  transform: translateY(-12px);
  padding-bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.utility-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1vw, 14px);
}

.lang-select {
  position: relative;
}

.lang-current {
  font: inherit;
  font-size: clamp(14px, 1vw, 15px);
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 110px;
  background: #fff;
  border: 1px solid #dadada;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  transform-origin: top right;
  z-index: 10;
}

.lang-menu a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #202020;
  font-size: 14px;
}

.lang-select:hover .lang-menu,
.lang-select:focus-within .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.social-links {
  display: flex;
  gap: clamp(8px, 1vw, 14px);
}

.social-links a {
  width: clamp(28px, 2vw, 30px);
  height: clamp(28px, 2vw, 30px);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111;
  border: 1px solid #111;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1;
}

.main-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 56px);
}

.brand {
  margin-left: clamp(0px, 5vw, 72px);
  margin-top: -6px;
  padding-right: clamp(12px, 3vw, 48px);
  text-align: left;
}

.brand a {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 18px);
}

.brand-logo {
  flex-shrink: 0;
  width: auto;
  height: clamp(44px, 4.8vw, 58px);
  margin-top: 7px;
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: clamp(4px, 0.4vw, 6px);
}

.brand h1 {
  margin: 0;
  font-size: clamp(16px, 2vw, 36px);
  line-height: 1.05;
}

.brand p {
  margin: 0;
  font-size: clamp(11px, 0.95vw, 15px);
  color: #4a4a4a;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.4vw, 18px);
  flex-wrap: wrap;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.4vw, 18px);
}

.nav-toggle {
  display: none;
  border: 1px solid #111;
  background: #fff;
  border-radius: 10px;
  width: 44px;
  height: 40px;
  padding: 7px 9px;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #111;
}

.nav-toggle-line + .nav-toggle-line {
  margin-top: 6px;
}

.menu {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 14px);
  flex-wrap: wrap;
}

.menu a {
  text-decoration: none;
  color: #202020;
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 700;
}

.actions {
  display: flex;
  gap: clamp(8px, 0.8vw, 10px);
}

.btn {
  text-decoration: none;
  border: 2px solid #000;
  font-weight: 700;
  font-size: clamp(13px, 1.05vw, 16px);
  padding: clamp(9px, 0.9vw, 12px) clamp(13px, 1.3vw, 19px);
  transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.btn-light {
  background: #fff;
  color: #000;
}

.btn-light:hover {
  background: #000;
  color: #fff;
}

.btn-dark {
  background: #000;
  color: #fff;
}

.btn-dark:hover {
  background: #fff;
  color: #000;
}

.banner {
  width: 100%;
  height: 100vh;
  margin-top: 0;
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  background-image: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  text-align: right;
  width: 100%;
  min-height: 100vh;
  padding-right: clamp(28px, 7vw, 120px);
  padding-top: 10vh;
  overflow: hidden;
}

.banner-cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 1;
  margin-left: auto;
  right: clamp(16px, 5vw, 140px);
  width: min(clamp(320px, 38vw, 500px), 100%);
  max-width: 500px;
  text-align: left;
}

.banner-right h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 5.6vw, 96px);
  line-height: 0.9;
  letter-spacing: 0.03em;
  font-weight: 900;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  max-width: 12ch;
}

.banner-right p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(12px, 1.35vw, 20px);
  line-height: 1.35;
  max-width: 100%;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
  display: inline-block;
  background: var(--homepage-offset-box-color, #3AA06D);
  border-radius: 12px;
  padding: 8px 12px;
}

.section-two {
  background: #fff;
  padding: clamp(96px, 13vh, 170px) 0 clamp(64px, 9vh, 120px);
}

.section-two-inner {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
}

.section-two-inner--no-media {
  grid-template-columns: 1fr;
}

.section-two-media {
  position: relative;
  width: min(100%, 430px);
}

.section-two-bg {
  position: absolute;
  inset: 0;
  background: var(--homepage-offset-box-color, #3AA06D);
  transform: translate(-24px, 24px);
  z-index: 1;
}

.section-two-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.section-two-content h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.15;
  font-weight: 800;
  color: #101010;
}

.section-two-content p {
  margin: 20px 0 0;
  color: #3a3a3a;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.62;
  max-width: 760px;
}

.read-more {
  margin-top: 26px;
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #111;
  border: 2px solid #111;
  padding: 12px 20px;
}

.read-more-toggle {
  cursor: pointer;
}

.section-two-more-text {
  margin-top: 22px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.45s ease, opacity 0.3s ease, transform 0.3s ease, margin-bottom 0.3s ease;
  margin-bottom: 0;
  pointer-events: none;
}

.section-two-more-text[aria-hidden="false"] {
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 22px;
  pointer-events: auto;
}

.section-two-more-text-inner {
  max-width: 760px;
}

.section-two-more-text p {
  margin: 0;
}

.section-features {
  background: #fff;
  padding: clamp(56px, 8vh, 110px) 0;
}

.section-features-inner {
  width: min(1020px, 82vw);
  margin: 0 auto 50px auto;
}

.section-features-inner h3 {
  margin: 0;
  color: #111;
  font-size: clamp(30px, 2.8vw, 44px);
  line-height: 1.12;
  font-weight: 800;
}

.section-features-inner p {
  margin: 16px 0 0;
  color: #3f3f3f;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.6;
  max-width: 860px;
}

.feature-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(34px, 4vw, 56px);
  row-gap: clamp(34px, 4.5vw, 64px);
}

.feature-card-wrap {
  position: relative;
}

.feature-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.feature-card-bg {
  position: absolute;
  inset: 0;
  background: var(--homepage-offset-box-color, #3AA06D);
  transform: translate(-14px, 14px);
  z-index: 1;
}

.feature-card {
  position: relative;
  z-index: 2;
  min-height: 0;
  background: #f2f2f2;
  color: #1f1f1f;
  padding: 14px 16px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.feature-link:hover {
  transform: scale(1.02);
}

.section-support {
  width: 100%;
  position: relative;
  background: var(--support-bg-image, none);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: clamp(640px, 84vh, 980px);
  padding: clamp(96px, 15vh, 200px) 0 clamp(86px, 12vh, 160px);
}

.section-support::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

.section-support-inner {
  width: min(1040px, 86vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-support-inner h3 {
  margin: 0;
  color: #111;
  font-size: clamp(30px, 2.8vw, 44px);
  line-height: 1.12;
  font-weight: 800;
}

.support-grid {
  margin-top: clamp(56px, 8vh, 110px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 44px);
  align-items: stretch;
}

.support-card-wrap {
  position: relative;
  min-height: 320px;
  padding-left: 14px;
  padding-bottom: 14px;
}

.support-card-bg {
  position: absolute;
  top: 14px;
  left: 0;
  width: calc(100% - 14px);
  bottom: 0;
  background: var(--homepage-offset-box-color, #3AA06D);
  z-index: 1;
}

.support-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #1f1f1f;
  background: #f2f2f2;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  padding: 22px 20px;
  min-height: 320px;
  height: 100%;
  box-shadow: 0 14px 30px rgba(20, 52, 28, 0.12);
  z-index: 2;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.support-card h4 {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-card h4 i {
  color: var(--homepage-offset-box-color, #3AA06D);
  font-size: 22px;
}

.support-card p {
  margin: 10px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: #3a3a3a;
  flex: 1 1 auto;
}

.support-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #1f1f1f;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.support-card:hover {
  background: #ebebeb;
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 18px 36px rgba(20, 52, 28, 0.18);
}

.section-newsletter {
  width: 100%;
  background: #f1f1f1;
  margin-top: 0;
  padding: clamp(56px, 8vh, 90px) 0;
}

.section-newsletter-inner {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.section-newsletter-inner h3 {
  margin: 0;
  color: #111;
  font-size: clamp(30px, 2.8vw, 44px);
  line-height: 1.12;
  font-weight: 800;
}

.section-newsletter-inner p {
  margin: 16px 0 0;
  color: #3f3f3f;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.6;
  max-width: 840px;
}

.newsletter-form {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.newsletter-fields {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.newsletter-fields label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 600;
}

.newsletter-fields input {
  height: 48px;
  border: 1px solid #c9c9c9;
  background: #fff;
  padding: 0 12px;
  font-size: 16px;
}

.newsletter-checkbox {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2f2f2f;
  font-size: 15px;
}

.newsletter-checkbox a {
  color: inherit;
}

.newsletter-submit {
  margin-top: 18px;
  display: block;
  border: 2px solid #111;
  background: #111;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 20px;
  cursor: pointer;
}

.section-news {
  background: #fff;
  padding: clamp(48px, 8vh, 110px) 0 clamp(70px, 9vh, 120px);
}

.section-news-inner {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.section-news-inner h3 {
  margin: 0;
  font-size: clamp(30px, 2.7vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  color: #111;
}

.news-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.news-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.news-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
  padding: 10px;
  border-radius: 0;
  background: transparent;
  transition: background-color 0.2s ease;
}

.news-link h4 {
  transition: color 0.2s ease;
}

.news-link:hover h4 {
  color: #2f7d5a;
}

.news-link:hover {
  background: #f1f8f4;
  box-shadow: none;
  transform: none;
}

.news-tags {
  margin: 14px 0 0;
  color: #111;
  font-size: 13px;
  line-height: 1.3;
}

.news-date {
  margin: 8px 0 0;
  color: #7b7b7b;
  font-size: 13px;
  line-height: 1.3;
}

.news-card h4 {
  margin: 10px 0 0;
  color: #151515;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 800;
}

.page-rich-content,
.page-rich-content *:not(i),
.news-show-content,
.news-show-content *:not(i) {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  word-spacing: normal;
  font-kerning: normal;
}

.page-rich-content,
.news-show-content {
  color: #3a3a3a;
  line-height: 1.6;
}

.page-rich-content p,
.page-rich-content li,
.news-show-content p,
.news-show-content li {
  line-height: 1.6;
}

.news-more {
  margin: 48px auto 0;
  display: table;
  text-decoration: none;
  border: 2px solid #111;
  background: #111;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 20px;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.55) 9%, rgba(255, 255, 255, 0.22) 18%),
    #688d1b url("images/footer.png") center 62%/cover no-repeat;
  min-height: clamp(520px, 70vh, 860px);
  padding: clamp(72px, 12vh, 150px) 0 18px;
}

.site-footer-inner {
  width: min(1240px, 92vw);
  margin: 0 auto;
  padding-top: clamp(40px, 6vh, 78px);
}

.footer-brand h3 {
  margin: 0;
  padding-bottom: 8px;
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.1;
  color: #1b1b1b;
  font-weight: 800;
}

.footer-brand p {
  margin: 0;
  padding-bottom: 6px;
  font-size: clamp(14px, 1.3vw, 18px);
  color: #2f2f2f;
}

.footer-social {
  margin-top: 14px;
  margin-bottom: 20px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #303030;
  border: 1px solid #303030;
  font-size: 16px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.25);
}

.footer-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 230px));
  justify-content: start;
  column-gap: 20px;
  row-gap: 24px;
}

.footer-col h4 {
  margin: 0;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 800;
  color: #1f1f1f;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #2b2b2b;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 4px;
  padding-bottom: 2px;
}

.footer-cookie-settings {
  display: block;
  margin-top: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2b2b2b;
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
}

.footer-copy {
  margin: 34px 0 0;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 760px) {
  .site-footer {
    background-position: center top, 68% 62%;
  }

  .navbar {
    width: 100%;
    margin: 0;
    position: sticky;
    top: 0;
    padding: 14px 14px 12px;
    gap: 12px;
  }

  .main-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    position: relative;
  }

  .brand {
    margin-left: 0;
    margin-top: 0;
    padding-right: 10px;
    text-align: left;
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand a {
    align-items: flex-start;
    gap: 10px;
  }

  .brand-logo {
    height: 32px;
    margin-top: 0;
  }

  .brand h1 {
    font-size: clamp(16px, 4vw, 22px);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .brand p {
    font-size: 11px;
    line-height: 1.2;
  }

  .nav-right {
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    gap: 8px;
    position: static;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
  }

  .nav-panel {
    display: none;
  }

  .nav-right.is-open .nav-panel {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
    background: #fff;
    border: 1px solid #d9d9d9;
    padding: 12px;
    z-index: 45;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .menu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .menu a {
    font-size: 18px;
    display: block;
    width: 100%;
  }

  .actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .actions .btn {
    display: block;
    text-align: center;
  }

  .banner {
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .banner-right {
    position: relative;
    width: 100%;
    min-height: 0;
    display: block;
    text-align: left;
    padding: 0;
  }

  .banner-cover-image {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .banner-content {
    width: 100%;
    max-width: none;
    margin: 0;
    right: auto;
    padding: 14px 16px 0;
    text-align: left;
  }

  .banner-right h2 {
    color: #111;
    text-shadow: none;
    max-width: 11ch;
    font-size: clamp(28px, 8.2vw, 42px);
    line-height: 1;
  }

  .banner-right p {
    margin-top: 10px;
    color: #111;
    background: transparent;
    border-radius: 0;
    padding: 0;
    text-shadow: none;
    font-size: clamp(14px, 3.5vw, 18px);
    line-height: 1.35;
    max-width: 34ch;
  }

  .section-two-inner {
    grid-template-columns: 1fr;
  }

  .section-two-media {
    margin: 0 auto;
  }

  .section-two-bg {
    transform: translate(-14px, 14px);
  }

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

  .newsletter-fields {
    grid-template-columns: 1fr;
  }

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

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

@media (min-width: 761px) and (max-width: 1400px) {
  .banner-content {
    text-align: left;
    transform: translateX(clamp(0px, 4vw, 120px));
  }
}

@media (max-width: 620px) {
  .utility-right {
    gap: 10px;
    flex-wrap: wrap;
  }

  .social-links {
    gap: 8px;
  }

  .social-links a {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .lang-current {
    font-size: 14px;
  }

  .nav-toggle {
    width: 40px;
    height: 38px;
    padding: 7px 8px;
  }

  .menu a {
    font-size: 16px;
  }

  .actions .btn {
    width: 100%;
  }

  .banner-right h2 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .banner-right p {
    font-size: 14px;
  }

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

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

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