.main-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: 100%;
  background-color: var(--bg-color);
  color: var(--text-color);
  border-bottom: 1px solid rgba(36, 88, 42, 0.15);
}
.main-header .main-header-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 14px 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  position: relative;
}
.main-header .main-header-logo-wrap {
  justify-self: start;
  position: relative;
  z-index: 1250;
}
.main-header .main-header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  z-index: 1251;
}
.main-header .main-header-logo .main-header-logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.main-header .main-header-nav {
  justify-self: center;
}
.main-header .main-header-menu-toggle {
  display: none;
}
.main-header .main-header-menu-button {
  display: none;
}
.main-header .main-header-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.main-header .main-header-nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.2;
  transition: opacity 0.2s ease;
}
.main-header .main-header-nav-link:hover {
  opacity: 0.7;
}
.main-header .main-header-nav-link.is-active {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.main-header .main-header-spacer {
  justify-self: end;
}

.main-footer {
  background-color: var(--bg-color);
  color: var(--text-color);
}
.main-footer .main-footer-inner {
  padding: 70px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.main-footer .main-footer-brand {
  display: block;
  text-decoration: none;
}
.main-footer .main-footer-brand .main-footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.main-footer .main-footer-contact {
  margin-top: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 300;
}
.main-footer .main-footer-right {
  justify-self: end;
  width: 100%;
  max-width: 520px;
}
.main-footer .main-footer-title {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.15;
  font-weight: 400;
}
.main-footer .main-footer-nav {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.main-footer .main-footer-nav a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1.25;
}
.main-footer .main-footer-links {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.main-footer .main-footer-links a {
  color: var(--text-color);
  font-size: 1rem;
  text-decoration: none;
}
.main-footer .main-footer-copy {
  margin-top: 26px;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 300;
}
.main-footer .main-footer-copy a {
  color: var(--text-color);
}

@media (max-width: 998px) {
  .main-header .main-header-inner {
    grid-template-columns: 1fr auto;
    padding: 12px 10px;
    gap: 12px;
  }
  .main-header .main-header-logo {
    font-size: 16px;
  }
  .main-header .main-header-nav {
    justify-self: end;
  }
  .main-header .main-header-nav-list {
    gap: 16px;
    justify-content: flex-end;
  }
  .main-header .main-header-spacer {
    display: none;
  }
  .main-header .main-header-nav-link {
    font-size: 15px;
  }
  .main-footer .main-footer-inner {
    padding: 54px 24px;
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .main-footer .main-footer-contact,
  .main-footer .main-footer-links {
    margin-top: 32px;
  }
  .main-footer .main-footer-right {
    justify-self: start;
    max-width: 620px;
  }
}
@media (max-width: 768px) {
  .main-header .main-header-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
  }
  .main-header .main-header-logo-wrap {
    justify-self: start;
  }
  .main-header .main-header-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--text-color);
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
    position: relative;
    z-index: 1250;
  }
  .main-header .main-header-nav {
    display: block;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background-color: var(--bg-color);
    border: none;
    border-radius: 0;
    padding: calc(var(--header-height) + 20px) 16px 24px;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1240;
  }
  .main-header .main-header-menu-toggle:checked ~ .main-header-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-header .main-header-nav-list {
    width: 100%;
    min-height: calc(100dvh - var(--header-height) - 44px);
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
  }
  .main-header .main-header-nav-link {
    font-size: 1rem;
  }
  .main-footer .main-footer-inner {
    padding: 40px 16px;
    gap: 24px;
  }
  .main-footer .main-footer-contact {
    margin-top: 18px;
    font-size: 0.95rem;
  }
  .main-footer .main-footer-title {
    font-size: 1.4rem;
  }
  .main-footer .main-footer-nav a {
    font-size: 1rem;
  }
  .main-footer .main-footer-links {
    margin-top: 28px;
  }
  .main-footer .main-footer-copy {
    margin-top: 16px;
    font-size: 0.92rem;
  }
}
:root {
  --bg-color: #FFFAF1;
  --text-color: #24582A;
  --header-height: 68px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Georgia", "Times New Roman", serif;
  padding-top: 0;
}

[data-aos][data-aos][data-aos] {
  will-change: transform, opacity;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-aos=fade-up] {
  transform: translate3d(0, 18px, 0);
}

[data-aos=fade-down] {
  transform: translate3d(0, -18px, 0);
}

[data-aos=fade-left] {
  transform: translate3d(-18px, 0, 0);
}

[data-aos=fade-right] {
  transform: translate3d(18px, 0, 0);
}

.aos-stagger-words .aos-word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--aos-word-delay, 0ms);
}

[data-aos].aos-animate .aos-stagger-words .aos-word {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.home-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 120px 16px 100px;
  background-image: url("/assets/images/1.1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home-banner .home-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
}
.home-banner .home-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 760px;
}
.home-banner .home-banner-title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 12px;
}
.home-banner .home-banner-subtitle {
  font-size: clamp(1rem, 2vw, 1.35rem);
  margin-bottom: 32px;
}
.home-banner .home-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.home-banner .home-banner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.home-banner .home-banner-button:hover {
  background-color: rgba(255, 255, 255, 0.92);
  color: #1f1f1f;
}

.mission-section {
  background-color: var(--bg-color);
}
.mission-section .mission-section-inner {
  padding: 70px 80px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}
.mission-section .mission-section-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  max-width: 470px;
}
.mission-section .mission-section-title {
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  line-height: 0.95;
  color: var(--text-color);
}
.mission-section .mission-section-text {
  max-width: 420px;
  font-size: clamp(0.95rem, 1.35vw, 1.25rem);
  line-height: 1.55;
  color: var(--text-color);
}
.mission-section .mission-section-image-small {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.mission-section .mission-section-right {
  height: 100%;
}
.mission-section .mission-section-image-large {
  width: 100%;
  height: 100%;
  min-height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@keyframes heart-pop {
  0% {
    transform: scale(0.1);
  }
  40% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(0.9);
  }
  90% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.blog-section {
  background-color: var(--bg-color);
}
.blog-section .blog-section-inner {
  padding: 70px 80px;
}
.blog-section .blog-section-title {
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 0.95;
  color: var(--text-color);
  margin-bottom: 24px;
}
.blog-section .blog-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-section .blog-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-section .blog-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.blog-section .blog-card-body {
  padding: 14px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-section .blog-card-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #5b7561;
  font-size: 0.72rem;
  font-weight: 400;
  margin-bottom: 0;
}
.blog-section .blog-card-author, .blog-section .blog-card-date {
  font-weight: 400;
  line-height: 1.2;
}
.blog-section .blog-card-title {
  color: var(--text-color);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 400;
}
.blog-section .blog-card-title a {
  color: inherit;
  text-decoration: none;
}
.blog-section .blog-card-description {
  color: #5b7561;
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 400;
}
.blog-section .blog-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 12px;
  color: #5b7561;
  font-size: 0.78rem;
  font-weight: 400;
  border-top: 1px solid rgba(36, 88, 42, 0.15);
}
.blog-section .blog-card-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-section .blog-card-like {
  color: #e84a43;
  cursor: pointer;
  transition: transform 0.18s ease;
}
.blog-section .blog-card-like.is-liked {
  animation: heart-pop 0.45s ease;
}
.blog-section .blog-section-button {
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 128px;
  padding: 10px 20px;
  background-color: #24582A;
  color: #ffffff;
  border: 1px solid #24582A;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.blog-section .blog-section-button:hover {
  background-color: transparent;
  color: #24582A;
  border-color: #24582A;
}

.gallery-section {
  background-color: var(--bg-color);
}
.gallery-section .gallery-section-inner {
  padding: 70px 80px;
}
.gallery-section .gallery-section-title {
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 0.95;
  color: var(--text-color);
  margin-bottom: 24px;
  font-weight: 400;
}
.gallery-section .gallery-section-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-section .gallery-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.gallery-section .gallery-section-button {
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 128px;
  padding: 10px 20px;
  background-color: #24582A;
  color: #ffffff;
  border: 1px solid #24582A;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.gallery-section .gallery-section-button:hover {
  background-color: transparent;
  color: #24582A;
  border-color: #24582A;
}

.updates-section {
  background-color: #DFEEDC;
  color: #24582A;
}
.updates-section .updates-section-inner {
  padding: 70px 80px;
}
.updates-section .updates-section-title {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 0.95;
  margin-bottom: 26px;
  color: #24582A;
  font-weight: 400;
}
.updates-section .updates-section-content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.updates-section .updates-section-inner > .updates-section-content:nth-of-type(even) .updates-section-image {
  order: 2;
}
.updates-section .updates-section-inner > .updates-section-content:nth-of-type(even) .updates-section-text {
  order: 1;
  justify-self: center;
  padding-left: 0;
  padding-right: 18px;
}
.updates-section .updates-section-image {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.updates-section .updates-section-text {
  max-width: 420px;
  justify-self: center;
  padding-left: 18px;
}
.updates-section .updates-section-heading {
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  line-height: 1.08;
  margin-bottom: 10px;
  color: #24582A;
  font-weight: 400;
}
.updates-section .updates-section-subheading {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #24582A;
  font-weight: 400;
}
.updates-section .updates-section-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #24582A;
  font-weight: 400;
}

.faq-section {
  background-color: var(--bg-color);
}
.faq-section .faq-section-inner {
  padding: 70px 80px;
}
.faq-section .faq-section-title {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 0.95;
  text-align: center;
  color: var(--text-color);
  font-weight: 400;
}
.faq-section .faq-section-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 90px;
  justify-items: center;
}
.faq-section .faq-section-item {
  max-width: 560px;
  text-align: center;
}
.faq-section .faq-section-question {
  font-size: 22px;
  line-height: 1.2;
  color: var(--text-color);
  font-weight: 300;
  margin-bottom: 14px;
}
.faq-section .faq-section-answer {
  font-size: 18px;
  line-height: 1.45;
  color: var(--text-color);
  font-weight: 300;
}

.contact-section {
  background-color: #DFEEDC;
  color: #24582A;
}
.contact-section .contact-section-inner {
  padding: 70px 80px;
  display: grid;
  grid-template-columns: minmax(420px, 640px) 1fr;
  gap: 48px;
  align-items: start;
}
.contact-section .contact-section-title {
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 0.95;
  font-weight: 400;
  color: #24582A;
}
.contact-section .contact-section-subtitle {
  margin-top: 8px;
  font-size: 1.45rem;
  font-weight: 300;
  color: #24582A;
}
.contact-section .contact-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-section .contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-section .contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-section .contact-field label {
  font-size: 1.35rem;
  font-weight: 300;
  color: #24582A;
}
.contact-section .contact-field input,
.contact-section .contact-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(36, 88, 42, 0.8);
  background: transparent;
  color: #24582A;
  padding: 8px 0;
  font-size: 1.2rem;
  font-family: inherit;
}
.contact-section .contact-field input:focus,
.contact-section .contact-field textarea:focus {
  outline: none;
}
.contact-section .contact-field textarea {
  resize: vertical;
  min-height: 56px;
}
.contact-section .contact-form-button {
  margin-top: 8px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 200px;
  padding: 12px 28px;
  border: 1px solid #24582A;
  border-radius: 999px;
  background-color: #24582A;
  color: #ffffff;
  font-size: 18px;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.contact-section .contact-form-button:hover {
  background-color: transparent;
  color: #24582A;
}
.contact-section .contact-section-right {
  justify-self: end;
  max-width: 420px;
  padding-top: 8px;
}
.contact-section .contact-section-description {
  font-size: 1.45rem;
  line-height: 1.45;
  font-weight: 300;
  color: #24582A;
}
.contact-section .contact-form-status {
  margin-top: 18px;
  min-height: 24px;
  font-size: 1rem;
  color: #24582A;
}
.contact-section .contact-section-image {
  margin-top: 22px;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (max-width: 998px) {
  .home-banner {
    min-height: 75vh;
    padding-bottom: 80px;
  }
  .mission-section .mission-section-inner {
    padding: 54px 24px;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .mission-section .mission-section-image-large {
    min-height: 390px;
  }
  .blog-section .blog-section-inner {
    padding: 54px 24px;
  }
  .blog-section .blog-section-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-section .blog-card-title {
    font-size: 1.2rem;
  }
  .blog-section .blog-card-description {
    font-size: 0.86rem;
  }
  .gallery-section .gallery-section-inner {
    padding: 54px 24px;
  }
  .gallery-section .gallery-section-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .updates-section .updates-section-inner {
    padding: 54px 24px;
  }
  .updates-section .updates-section-content {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .updates-section .updates-section-text {
    max-width: 100%;
    padding-left: 10px;
  }
  .updates-section .updates-section-inner > .updates-section-content:nth-of-type(even) .updates-section-text {
    padding-right: 10px;
  }
  .faq-section .faq-section-inner {
    padding: 54px 24px;
  }
  .faq-section .faq-section-grid {
    gap: 34px 26px;
  }
  .faq-section .faq-section-item {
    max-width: 100%;
  }
  .contact-section .contact-section-inner {
    padding: 54px 24px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-section .contact-section-right {
    justify-self: start;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }
  .contact-section .contact-section-image {
    max-width: 100%;
  }
  .contact-section .contact-form-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }
  .home-banner {
    min-height: 70vh;
    padding-bottom: 60px;
  }
  .home-banner .home-banner-title {
    margin-bottom: 10px;
  }
  .home-banner .home-banner-subtitle {
    margin-bottom: 18px;
  }
  .mission-section .mission-section-inner {
    padding: 40px 16px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .mission-section .mission-section-left {
    gap: 14px;
  }
  .mission-section .mission-section-text {
    max-width: 100%;
  }
  .mission-section .mission-section-image-small {
    max-width: 100%;
  }
  .mission-section .mission-section-image-large {
    min-height: 300px;
  }
  .blog-section .blog-section-inner {
    padding: 40px 16px;
  }
  .blog-section .blog-section-title {
    margin-bottom: 18px;
  }
  .blog-section .blog-section-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .blog-section .blog-card-title {
    font-size: 1.08rem;
  }
  .blog-section .blog-card-description {
    font-size: 0.84rem;
  }
  .blog-section .blog-section-button {
    margin-top: 22px;
  }
  .gallery-section .gallery-section-inner {
    padding: 40px 16px;
  }
  .gallery-section .gallery-section-title {
    margin-bottom: 18px;
  }
  .gallery-section .gallery-section-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gallery-section .gallery-section-button {
    margin-top: 22px;
  }
  .updates-section .updates-section-inner {
    padding: 40px 16px;
  }
  .updates-section .updates-section-title {
    margin-bottom: 18px;
  }
  .updates-section .updates-section-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .updates-section .updates-section-text {
    justify-self: start;
    padding-left: 0;
  }
  .updates-section .updates-section-inner > .updates-section-content:nth-of-type(even) .updates-section-image,
  .updates-section .updates-section-inner > .updates-section-content:nth-of-type(even) .updates-section-text {
    order: initial;
    padding-right: 0;
  }
  .updates-section .updates-section-subheading {
    font-size: 1.05rem;
  }
  .updates-section .updates-section-description {
    font-size: 0.92rem;
  }
  .faq-section .faq-section-inner {
    padding: 40px 16px;
  }
  .faq-section .faq-section-grid {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .faq-section .faq-section-question {
    margin-bottom: 10px;
  }
  .contact-section .contact-section-inner {
    padding: 40px 16px;
    gap: 18px;
  }
  .contact-section .contact-section-subtitle {
    font-size: 1.2rem;
  }
  .contact-section .contact-form {
    margin-top: 24px;
    gap: 14px;
  }
  .contact-section .contact-form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contact-section .contact-field label {
    font-size: 1.15rem;
  }
  .contact-section .contact-field input,
  .contact-section .contact-field textarea {
    font-size: 1rem;
  }
  .contact-section .contact-form-button {
    min-width: 150px;
    font-size: 16px;
    padding: 10px 15px;
  }
  .contact-section .contact-section-description {
    font-size: 1rem;
  }
  .contact-section .contact-section-right {
    width: 100%;
  }
  .contact-section .contact-section-image {
    max-width: 100%;
    margin-top: 16px;
  }
}/*# sourceMappingURL=styles.css.map */