:root {
  --clr-bg: #f6f8f5;
  --clr-green: #2a7f3e;
  --clr-dark: #333;
  --clr-hover-bg: #f0fcf4;
  --transition: 0.4s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Roboto", sans-serif;
  background: var(--clr-bg);
  color: var(--clr-dark);
}
a {
  text-decoration: none;
}
.gt-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.gt-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gt-logo {
  color: var(--clr-green);
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
}

.gt-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}
.gt-nav-list > li {
  position: relative;
}
.gt-nav-list a,
.gt-dropdown-toggle {
  font-family: sans-serif;
  color: var(--clr-dark);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.gt-nav-list a:hover,
.gt-dropdown-toggle:hover {
  color: var(--clr-green);
}

.gt-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  list-style: none;
  background: #fff;
  padding: 12px 0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 90vw;
  columns: 2;
  column-gap: 1rem;
  white-space: nowrap;
}
.gt-dropdown-menu li {
  break-inside: avoid;
  margin: 4px 0;
}
.gt-dropdown-menu a {
  display: block;
  padding: 6px 16px;
  color: var(--clr-dark);
  text-decoration: none;
  transition: background var(--transition);
}
.gt-dropdown-menu a:hover {
  background: var(--clr-hover-bg);
}

.gt-has-dropdown:hover .gt-dropdown-menu,
.gt-has-dropdown:focus-within .gt-dropdown-menu {
  display: block;
}

.gt-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.gt-menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--clr-dark);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .gt-menu-toggle {
    display: flex;
  }

  .gt-nav-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .gt-nav-list.open {
    display: flex;
  }

  .gt-dropdown-menu {
    position: static;
    transform: none;
    columns: 1;
    width: 100%;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
  }
  .gt-dropdown-menu li {
    margin: 0;
  }
  .gt-dropdown-menu a {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
  }
}

.gt-hero {
  position: relative;
  height: 75vh;
  background: url("../assets/images/hero.jpeg") center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gt-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.gt-hero__content {
  position: relative;
  text-align: center;
  color: #fff;
}
.gt-hero__content h1 {
  font-size: 3rem;
  background: var(--clr-green);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.gt-hero__content p {
  margin: 16px 0;
}
.gt-btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--clr-green);
  color: #fff;
  border-radius: 30px;
  transition: opacity var(--transition);
}
.gt-btn:hover {
  opacity: 0.8;
}

.gt-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition);
}
.gt-show {
  opacity: 1;
  transform: translateY(0);
}

.gt-about {
  position: relative;
  padding: 80px 0;
  background: #f3faf3;
  overflow: hidden;
}
.gt-about__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.gt-about__title {
  font-size: 2.8rem;
  color: var(--clr-green);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.gt-about__decor {
  position: absolute;
  top: 20px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(152, 230, 152, 0.4), transparent);
  filter: blur(60px);
  transform: rotate(30deg);
  z-index: 0;
}
.gt-about__lead {
  font-size: 1.1rem;
  color: var(--clr-dark);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

.gt-about__blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}
.gt-about__block {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}
.gt-about__block:nth-child(1) {
  animation-delay: 0.6s;
}
.gt-about__block:nth-child(2) {
  animation-delay: 0.8s;
}
.gt-about__block:nth-child(3) {
  animation-delay: 1s;
}

.gt-about__block h3 {
  font-size: 1.4rem;
  color: var(--clr-green);
  margin-bottom: 12px;
}
.gt-about__block ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.gt-about__block ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 24px;
}
.gt-about__block ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--clr-green);
}
.gt-about__block blockquote {
  font-style: italic;
  color: var(--clr-dark);
  border-left: 4px solid var(--clr-green);
  padding-left: 12px;
  margin: 12px 0 0;
}
.gt-about__block blockquote span {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 500;
  color: var(--clr-dark);
}

.gt-about__cta {
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.2s forwards;
}
.gt-about__cta .gt-btn {
  background: var(--clr-green);
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  transition: background 0.3s;
}
.gt-about__cta .gt-btn:hover {
  background: darken(var(--clr-green), 10%);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .gt-about__blocks {
    grid-template-columns: 1fr;
  }
}

.gt-services {
  padding: 80px 0;
  text-align: center;
}
.gt-services h2 {
  font-size: 2rem;
  color: var(--clr-green);
  margin-bottom: 24px;
}
.gt-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.gt-service-card {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition);
}
.gt-service-card:hover {
  transform: translateY(-6px);
}
.gt-services .gt-btn {
  margin-top: 32px;
}

.gt-testimonials {
  padding: 80px 0;
  background: #eef5ee;
  text-align: center;
}
.gt-testimonials h2 {
  font-size: 2rem;
  color: var(--clr-green);
  margin-bottom: 40px;
}
.gt-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.gt-testimonials blockquote {
  background: #fff;
  padding: 24px;
  border-left: 4px solid var(--clr-green);
  font-style: italic;
  position: relative;
  animation: fade-in 0.8s ease both;
}
.gt-testimonials cite {
  display: block;
  margin-top: 12px;
  font-weight: bold;
  color: var(--clr-dark);
}

.gt-contact {
  padding: 80px 0;
  background: #f5fff9;
}
.gt-contact h2 {
  text-align: center;
  color: var(--clr-green);
  font-size: 2.4rem;
  margin-bottom: 32px;
}
.gt-contact__info p {
  text-align: center;
  margin-bottom: 8px;
  font-size: 1rem;
}
.gt-contact__info a {
  color: var(--clr-green);
  text-decoration: none;
}
.gt-contact__hours,
.gt-contact__departments {
  max-width: 600px;
  margin: 32px auto;
}
.gt-contact__hours h3,
.gt-contact__departments h3 {
  font-size: 1.6rem;
  color: var(--clr-dark);
  margin-bottom: 12px;
}
.gt-contact__hours ul,
.gt-contact__departments ul {
  list-style: none;
  padding: 0;
}
.gt-contact__hours li,
.gt-contact__departments li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 1rem;
}
.gt-contact__hours li::before,
.gt-contact__departments li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--clr-green);
}
.gt-contact__social {
  text-align: center;
  margin-top: 40px;
}
.gt-contact__social h3 {
  font-size: 1.6rem;
  color: var(--clr-dark);
  margin-bottom: 16px;
}
.gt-social-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 0;
  margin: 0;
}
.gt-social-list li a img {
  width: 32px;
  height: 32px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}
.gt-social-list li a:hover img {
  filter: none;
}

@media (max-width: 768px) {
  .gt-contact__hours,
  .gt-contact__departments {
    margin: 24px 16px;
  }
  .gt-contact h2 {
    font-size: 2rem;
  }
}

.gt-footer {
  padding: 24px 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--clr-dark);
}
.gt-footer-nav a {
  color: var(--clr-dark);
  text-decoration: none;
  margin: 0 8px;
}
.gt-footer-nav a:hover {
  color: var(--clr-green);
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gt-works-section {
  padding: 80px 0;
  background: #f9fff9;
}
.gt-section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--clr-green);
  margin-bottom: 40px;
}

.gt-works-swiper {
  position: relative;
}
.gt-work-slide {
  text-align: center;
}
.gt-work-slide img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: 200px;
  transition: transform 0.3s;
}
.gt-work-slide:hover img {
  transform: scale(1.05);
}
.gt-slide-caption {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--clr-dark);
}

.gt-swiper-button-prev,
.gt-swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--clr-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition);
}
.gt-swiper-button-prev:hover,
.gt-swiper-button-next:hover {
  background: darken(var(--clr-green), 10%);
}
.gt-swiper-button-prev {
  left: 8px;
}
.gt-swiper-button-next {
  right: 8px;
}

.gt-swiper-pagination {
  margin-top: 16px;
  text-align: center;
}
.gt-swiper-pagination .swiper-pagination-bullet {
  background: var(--clr-green);
  opacity: 0.6;
}
.gt-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 768px) {
  .gt-work-slide img {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .gt-work-slide img {
    height: 150px;
  }
}

.gt-why-we-rock {
  padding: 80px 0;
  background: #f9fffa;
  position: relative;
}
.gt-why-we-rock__title {
  font-size: 2.8rem;
  color: var(--clr-green);
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.gt-why-we-rock__content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--clr-dark);
  line-height: 1.6;
  font-size: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}
.gt-why-we-rock__content p {
  margin-bottom: 16px;
}
.gt-why-we-rock__content ul {
  list-style: none;
  margin: 16px 0 24px 0;
  padding: 0;
}
.gt-why-we-rock__content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}
.gt-why-we-rock__content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--clr-green);
}
.gt-why-we-rock__closing {
  font-weight: 500;
  margin-top: 24px;
  text-align: center;
  font-style: italic;
  color: var(--clr-dark);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .gt-why-we-rock__title {
    font-size: 2.2rem;
  }
  .gt-why-we-rock__content {
    font-size: 0.95rem;
    padding: 0 16px;
  }
}

.gt-services {
  padding: 80px 0;
  background: #f5fff9;
}
.gt-services__title {
  text-align: center;
  font-size: 2.6rem;
  color: var(--clr-green);
  margin-bottom: 40px;
}
.gt-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.gt-service-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.gt-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.gt-service-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.gt-service-card__name {
  font-size: 1.25rem;
  color: var(--clr-dark);
  margin: 16px 0;
}
.gt-service-card__btn {
  margin: 0 0 24px;
  padding: 10px 24px;
  background: var(--clr-green);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}
.gt-service-card__btn:hover {
  background: darken(var(--clr-green), 10%);
}

@media (max-width: 768px) {
  .gt-services {
    padding: 60px 16px;
  }
  .gt-services__title {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
  .gt-services__grid {
    gap: 24px;
  }
}

.gt-parallax-section {
  position: relative;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.gt-parallax-bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background: url("../assets/images/gallery2.jpg") center/cover no-repeat fixed;
  transform: translateX(-50%);
  will-change: transform;
  z-index: 1;
}

.gt-parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 50, 0, 0.4);
  z-index: 2;
}

.gt-parallax-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  animation: fadeInUp 1s ease-out forwards;
}

.gt-parallax-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #e0ffe0;
}

.gt-parallax-text {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  color: #d4f1d4;
}

.gt-btn--light {
  background: rgba(255, 255, 255, 0.85);
  color: var(--clr-green);
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .gt-parallax-section {
    height: 50vh;
  }
  .gt-parallax-title {
    font-size: 2.2rem;
  }
  .gt-parallax-text {
    font-size: 1rem;
  }
}

.gt-about-full {
  padding: 80px 0;
  background: #f9fff9;
}
.gt-about-full__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.gt-about-full__media img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
.gt-about-full__content h2 {
  font-size: 2.8rem;
  color: var(--clr-green);
  margin-bottom: 16px;
}
.gt-about-full__content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--clr-dark);
}
.gt-about-full__list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.gt-about-full__list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--clr-dark);
}
.gt-about-full__gallery {
  display: flex;
  gap: 16px;
  margin: 32px 0;
}
.gt-about-full__gallery img {
  width: calc(33.333% - 10.66px);
  border-radius: 6px;
  transition: transform 0.3s;
}
.gt-about-full__gallery img:hover {
  transform: scale(1.05);
}
.gt-about-full__quote {
  font-style: italic;
  background: #e6f7e6;
  padding: 20px;
  border-left: 4px solid var(--clr-green);
  margin: 40px 0;
  color: var(--clr-dark);
  position: relative;
}
.gt-about-full__quote span {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  color: var(--clr-dark);
}
.gt-about-full__content a.gt-btn--green {
  background: var(--clr-green);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}
.gt-about-full__content a.gt-btn--green:hover {
  background: darken(var(--clr-green), 10%);
}

@media (max-width: 992px) {
  .gt-about-full__inner {
    grid-template-columns: 1fr;
  }
  .gt-about-full__gallery {
    flex-direction: column;
  }
  .gt-about-full__gallery img {
    width: 100%;
  }
}

.gt-faq-full {
  padding: 80px 0;
  background: #f0fff4;
}
.gt-faq-full__title {
  text-align: center;
  font-size: 2.8rem;
  color: var(--clr-green);
  margin-bottom: 40px;
  position: relative;
}
.gt-faq-full__title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: var(--clr-green);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.gt-faq-full__list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.gt-faq-full__item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.gt-faq-full__item:hover {
  transform: translateY(-4px);
}

.gt-faq-full__question {
  width: 100%;
  background: #e6f9ea;
  border: none;
  padding: 20px 24px;
  font-size: 1.1rem;
  text-align: left;
  cursor: pointer;
  position: relative;
  color: var(--clr-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gt-faq-full__question:hover {
  background: #d4f3d8;
}

.gt-faq-full__icon {
  font-size: 1.6rem;
  transition: transform 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045);
  color: var(--clr-green);
}

.gt-faq-full__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  background: #fff;
  transition: max-height 0.6s ease, padding 0.6s ease;
}

.gt-faq-full__item.active .gt-faq-full__answer {
  max-height: 200px;
  padding: 16px 24px;
}
.gt-faq-full__item.active .gt-faq-full__icon {
  transform: rotate(45deg);
}

.gt-faq-full__answer p {
  margin: 0;
  line-height: 1.6;
  color: var(--clr-dark);
  opacity: 0;
  animation: fadeInText 0.4s 0.2s forwards;
}

@keyframes fadeInText {
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .gt-faq-full__title {
    font-size: 2.4rem;
  }
  .gt-faq-full__question {
    font-size: 1rem;
    padding: 16px;
  }
}

.svc-hero {
  position: relative;
  height: 60vh;
  background: center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.svc-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 100, 0, 0.5);
}
.svc-hero__content {
  position: relative;
  text-align: center;
  color: #fff;
  animation: slideIn 1s ease-out;
}
.svc-hero__title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.svc-hero__subtitle {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.svc-btn {
  display: inline-block;
  background: var(--clr-green);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: opacity 0.3s;
}
.svc-btn:hover {
  opacity: 0.8;
}

@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.svc-overview {
  padding: 60px 0;
  text-align: center;
}
.svc-overview__title {
  font-size: 2.4rem;
  color: var(--clr-green);
  margin-bottom: 16px;
}
.svc-overview__text {
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.svc-overview__list {
  list-style: none;
  display: inline-grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
}
.svc-overview__list li {
  background: #f9fff9;
  padding: 12px 16px;
  border-left: 4px solid var(--clr-green);
}

.svc-benefits {
  background: #f3fffa;
  padding: 60px 0;
}
.svc-benefits__title {
  text-align: center;
  font-size: 2.4rem;
  color: var(--clr-green);
  margin-bottom: 32px;
}
.svc-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.svc-benefit {
  background: #fff;
  padding: 24px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.svc-benefit:hover {
  transform: translateY(-4px);
}

.svc-process {
  padding: 60px 0;
}
.svc-process__title {
  text-align: center;
  font-size: 2.4rem;
  color: var(--clr-green);
  margin-bottom: 24px;
}
.svc-process__steps {
  max-width: 700px;
  margin: 0 auto;
  counter-reset: step;
}
.svc-process__steps li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
}

.svc-contact {
  text-align: center;
  padding: 60px 0;
}
.svc-contact__title {
  font-size: 2.4rem;
  color: var(--clr-green);
  margin-bottom: 16px;
}
.svc-contact__text {
  margin-bottom: 24px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .svc-hero__title {
    font-size: 2.4rem;
  }
  .svc-overview__list {
    grid-template-columns: 1fr;
  }
  .svc-benefits__grid {
    grid-template-columns: 1fr;
  }
  .svc-process__steps li {
    padding-left: 32px;
  }
}

.svc-detail {
  padding: 60px 60px;
  background: #f7fdf8;
}
.svc-detail__container {
  display: flex;
  align-items: center;
  gap: 40px;
}
.svc-detail__image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
.svc-detail__text {
  flex: 1;
}
.svc-detail__title {
  font-size: 2.4rem;
  color: var(--clr-green);
  margin-bottom: 16px;
}
.svc-detail__lead {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #444;
}
.svc-detail__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.svc-detail__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
}
.svc-detail__bottom-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 768px) {
  .svc-detail__container {
    flex-direction: column;
    text-align: center;
  }
  .svc-detail__image img {
    max-width: 100%;
  }
  .svc-detail__text {
    margin-top: 24px;
  }
}

.title_background {
  background: linear-gradient(135deg, rgba(42,127,62,0.85), rgba(72,177,102,0.85));
  padding: 60px 0;
}
.title_background .container {
  text-align: center;
}
.title_background .title {
  font-family: 'Roboto', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  position: relative;
}
.title_background .title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #fff;
  margin: 12px auto 0;
  border-radius: 2px;
}

.text_background {
  background: #f0f9f5;
  padding: 40px 0 80px;
}
.text_background .container {
  max-width: 800px;
  margin: 0 auto;
}
.text_background .text {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  text-align: left;
  white-space: pre-line;
}
.text_background .text p + p {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .title_background {
    padding: 40px 0;
  }
  .title_background .title {
    font-size: 2.2rem;
  }
  .text_background {
    padding: 30px 0 60px;
  }
  .text_background .text {
    font-size: 0.95rem;
  }
}

.order-terms-section {
  background: #fafafa;
  padding: 100px 0;
}
.order-terms-section .container {
  max-width: 1100px;
  margin: 0 auto;
}
.order-terms__title {
  font-size: 3rem;
  color: var(--clr-green);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.order-terms__title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--clr-green);
  margin: 16px auto 0;
  border-radius: 2px;
}

.order-terms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.order-terms__item {
  background: #ffffff;
  border: 1px solid #e0f0e8;
  border-radius: 8px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.order-terms__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.order-terms__item h3 {
  font-size: 1.4rem;
  color: var(--clr-green);
  margin-bottom: 16px;
}
.order-terms__item p,
.order-terms__item ul {
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
}
.order-terms__item ul {
  list-style: inside disc;
  margin-left: 1rem;
}
.order-terms__item ul li {
  margin-bottom: 0.8rem;
}

.order-terms__item a {
  color: var(--clr-green);
  text-decoration: underline;
}
.order-terms__item a:hover {
  color: var(--clr-dark);
}

@media (max-width: 768px) {
  .order-terms-section {
    padding: 60px 0;
  }
  .order-terms__title {
    font-size: 2.4rem;
  }
  .order-terms__grid {
    gap: 24px;
  }
  .order-terms__item {
    padding: 24px;
  }
}