/* =========================
   HOME HERO SECTION
========================= */

.home-hero{
  background: linear-gradient(180deg, #4EC234 0%, #C9E8BD 100%);
  padding: 56px 0 70px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.home-hero__card{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.home-hero__hero{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  background: #111;
}

.home-hero__hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.home-hero__hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.22) 55%,
    rgba(0,0,0,.05) 100%
  );
}

.home-hero__hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 18px 78px;
  text-align: center;
}

.home-hero__title{
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 58px;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
}

.home-hero__subtitle{
  margin: 12px 0 0;
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,.9);
}

.home-hero__hero-shadow{
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 3;
  width: 150px;
  height: auto;
  opacity: .95;
}

.home-hero__below{
  margin-top: 26px;
}

.home-hero__graph{
  width: 100%;
  display: block;
  margin: 0 auto;
  max-width: 760px;
}

@media (max-width: 900px){
  .home-hero__graph{ display: none; }
}

/* BOXES */
.home-hero__cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
  margin-top: 26px;
  align-items: stretch;
}

.home-card{
  background: #fff;
  border: 2px solid #D4DF00;
  border-radius: 10px;
  padding: 42px 22px;
  text-align: center;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);

  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 140px;
}

.home-card__title{
  margin: 0;
  font-family: "Mulish", sans-serif;
  font-weight: 670;
  color: #006832;
  font-size: 26px;
}

.home-card__text{
  margin: 10px 0 0;
  font-family: "Mulish", sans-serif;
  color: #033215;
  font-size: 15px;
  line-height: 1.35;
}

.home-hero__text{
  margin: 54px auto 0;
  max-width: 760px;
  font-family: "Mulish", sans-serif;
  color: #033215;
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}

.home-hero__text strong{ font-weight: 800; }

/* Responsive */
@media (max-width: 900px){
  .home-hero{
    padding: 28px 0 44px;
  }

  .home-hero__hero{
    border-radius: 18px;
    min-height: 280px;
  }

  .home-hero__hero-content{
    min-height: 480px;
    padding: 38px 14px 64px;
  }

  .home-hero__title{
    font-size: 40px;
  }

  .home-hero__cards{
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .home-card{
    min-height: 0;
    padding: 32px 18px;
  }

  .home-hero__text{
    margin-top: 26px;
    text-align: left;
  }
}

/* =========================
   SHADOW-H SECTION
========================= */

.shadow-h-section{
  background-color: #ffffff;
  padding: 40px 0;
}

.shadow-h-section__inner{
  background-color: #EFF5ED;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 50px;
  border-radius: 30px;
}

.shadow-h-section__title{
  margin: 0 0 20px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 48px;
  color: #033215;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}

.shadow-h-section__subtitle{
  margin: 0 0 40px;
  font-family: "Mulish", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #006832;
  text-align: center;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.shadow-h-section__icon{
  text-align: center;
  margin: 0 0 50px;
}

.shadow-h-section__icon img{
  max-width: 200px;
  height: auto;
  margin: 0 auto;
}

.shadow-h-section__content{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.shadow-h-section__left{
  position: relative;
  display: flex;
}

.shadow-h-section__image-wrapper{
  position: relative;
  width: 100%;
  height: 100%;
}

.shadow-h-section__image-wrapper img{
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

@media (min-width: 901px){
  .shadow-h-section__image-wrapper img{
    height: 100%;
  }
}

.shadow-h-section__feature-box{
  position: absolute;
  background: #FFF7ED;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  max-width: 280px;
  z-index: 2;
}

.shadow-h-section__feature-box--top-left{
  top: 20px;
  left: 20px;
}

.shadow-h-section__feature-box--middle-right{
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.shadow-h-section__feature-box--bottom-left{
  bottom: 20px;
  left: 20px;
}

.shadow-h-section__feature-box img.shadow-h-section__checkmark {
    width: 32px;
    height: 32px;
}

.shadow-h-section__feature-box span{
  font-family: "Mulish", sans-serif;
  font-size: 13px;
  color: #033215;
  line-height: 1.4;
  font-weight: 400;
}

.shadow-h-section__right{
  display: flex;
  align-items: flex-start;
  height: 100%;
}

.shadow-h-section__text{
  font-family: "Mulish", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #000000;
  line-height: 1.8;
}

.shadow-h-section__text p{
  margin: 0 0 20px;
}

.shadow-h-section__text p:last-child{
  margin-bottom: 0;
}

.shadow-h-section__text strong{
  font-weight: 700;
}

/* Photo Section */
.shadow-h-photo-section{
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

.shadow-h-photo-section .container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

.shadow-h-photo-section img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
}

/* Responsive */
@media (max-width: 1024px){
  .shadow-h-section__content{
    gap: 40px;
  }
  
  .shadow-h-section__feature-box{
    max-width: 240px;
    padding: 12px 16px;
  }
  
  .shadow-h-section__feature-box span{
    font-size: 12px;
  }
}

@media (min-width: 1200px){
  .shadow-h-section{
    padding: 40px 0;
  }
  
  .shadow-h-section__inner{
    padding: 100px 50px;
  }
}

@media (max-width: 900px){
  .shadow-h-section{
    padding: 40px 0;
  }
  
  .shadow-h-section__title{
    font-size: 36px;
  }
  
  .shadow-h-section__subtitle{
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .shadow-h-section__icon{
    margin-bottom: 30px;
  }
  
  .shadow-h-section__icon img{
    max-width: 150px;
  }
  
  .shadow-h-section__content{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .shadow-h-section__feature-box{
    position: static;
    transform: none;
    max-width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
  }
  
  .shadow-h-section__feature-box:first-of-type{
    margin-top: 20px;
  }
  
  .shadow-h-section__image-wrapper img{
    height: auto;
    object-fit: contain;
  }
  
  .shadow-h-section__feature-box--top-left,
  .shadow-h-section__feature-box--middle-right,
  .shadow-h-section__feature-box--bottom-left{
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
  }
  
  .shadow-h-section__text{
    font-size: 14px;
  }
  
  .shadow-h-section__inner{
    padding: 40px 16px;
  }
  
  .shadow-h-section{
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .shadow-h-photo-section{
    padding: 28px 0 44px;
  }
  
  .shadow-h-photo-section img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 30px;
  }
}

/* =========================
   SHADOW-S SECTION
========================= */

.shadow-s-section{
  background-color: #ffffff;
  padding: 40px 0;
}

.shadow-s-section__inner{
  background-color: #EFF5ED;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 50px;
  border-radius: 30px;
}

.shadow-s-section__title{
  margin: 0 0 20px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 48px;
  color: #033215;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}

.shadow-s-section__subtitle{
  margin: 0 0 40px;
  font-family: "Mulish", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #006832;
  text-align: center;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.shadow-s-section__icon{
  text-align: center;
  margin: 0 0 50px;
}

.shadow-s-section__icon img{
  max-width: 200px;
  height: auto;
  margin: 0 auto;
}

.shadow-s-section__content{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.shadow-s-section__content > .shadow-s-section__right{
  order: 1;
}

.shadow-s-section__content > .shadow-s-section__left{
  order: 2;
}

.shadow-s-section__left{
  position: relative;
  display: flex;
}

.shadow-s-section__image-wrapper{
  position: relative;
  width: 100%;
  height: 100%;
}

.shadow-s-section__image-wrapper img{
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

@media (min-width: 901px){
  .shadow-s-section__image-wrapper img{
    height: 100%;
  }
}

.shadow-s-section__feature-box{
  position: absolute;
  background: #FFF7ED;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  max-width: 280px;
  z-index: 2;
}

.shadow-s-section__feature-box--1{
  top: 20px;
  left: 20px;
}

.shadow-s-section__feature-box--2{
  top: 25%;
  right: 20px;
}

.shadow-s-section__feature-box--3{
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.shadow-s-section__feature-box--4{
  bottom: 25%;
  right: 20px;
}

.shadow-s-section__feature-box--5{
  bottom: 20px;
  left: 20px;
}

.shadow-s-section__feature-box img.shadow-s-section__checkmark {
    width: 32px;
    height: 32px;
}

.shadow-s-section__feature-box span{
  font-family: "Mulish", sans-serif;
  font-size: 13px;
  color: #033215;
  line-height: 1.4;
  font-weight: 400;
}

.shadow-s-section__feature-box div{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shadow-s-section__feature-box ul{
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.shadow-s-section__feature-box li{
  font-family: "Mulish", sans-serif;
  font-size: 13px;
  color: #033215;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 4px;
}

.shadow-s-section__right{
  display: flex;
  align-items: flex-start;
  height: 100%;
}

.shadow-s-section__text{
  font-family: "Mulish", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #000000;
  line-height: 1.8;
}

.shadow-s-section__text p{
  margin: 0 0 20px;
}

.shadow-s-section__text p:last-child{
  margin-bottom: 0;
}

.shadow-s-section__text strong{
  font-weight: 700;
}

@media (min-width: 1200px){
  .shadow-s-section{
    padding: 40px 0;
  }
  
  .shadow-s-section__inner{
    padding: 100px 50px;
  }
}

@media (max-width: 1024px){
  .shadow-s-section__content{
    gap: 40px;
  }
  
  .shadow-s-section__feature-box{
    max-width: 240px;
    padding: 12px 16px;
  }
  
  .shadow-s-section__feature-box span{
    font-size: 12px;
  }
}

@media (max-width: 900px){
  .shadow-s-section{
    padding: 40px 0;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .shadow-s-section__title{
    font-size: 36px;
  }
  
  .shadow-s-section__subtitle{
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .shadow-s-section__icon{
    margin-bottom: 30px;
  }
  
  .shadow-s-section__icon img{
    max-width: 150px;
  }
  
  .shadow-s-section__content{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .shadow-s-section__feature-box{
    position: static;
    transform: none;
    max-width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
  }
  
  .shadow-s-section__feature-box:first-of-type{
    margin-top: 20px;
  }
  
  .shadow-s-section__image-wrapper img{
    height: auto;
    object-fit: contain;
  }
  
  .shadow-s-section__feature-box--1,
  .shadow-s-section__feature-box--2,
  .shadow-s-section__feature-box--3,
  .shadow-s-section__feature-box--4,
  .shadow-s-section__feature-box--5{
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
  }
  
  .shadow-s-section__text{
    font-size: 14px;
  }
  
  .shadow-s-section__inner{
    padding: 40px 16px;
  }
}

@media (max-width: 600px){
  .shadow-s-section__title{
    font-size: 28px;
  }
  
  .shadow-s-section__subtitle{
    font-size: 14px;
  }
  
  .shadow-s-section__icon img{
    max-width: 120px;
  }
  
  .shadow-s-section__feature-box{
    padding: 10px 14px;
  }
  
  .shadow-s-section__feature-box span{
    font-size: 11px;
  }
  
  .shadow-s-section__feature-box li{
    font-size: 11px;
  }
  
  .shadow-s-section__text{
    font-size: 13px;
  }
}


@media (max-width: 600px){
  .shadow-h-section__title{
    font-size: 28px;
  }
  
  .shadow-h-section__subtitle{
    font-size: 14px;
  }
  
  .shadow-h-section__icon img{
    max-width: 120px;
  }
  
  .shadow-h-section__feature-box{
    padding: 10px 14px;
  }
  
  .shadow-h-section__feature-box span{
    font-size: 11px;
  }
  
  .shadow-h-section__text{
    font-size: 13px;
  }
}

/* =========================
   LOCATION SECTION
========================= */

.location-section{
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.location-section__background{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.location-section__background img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.location-section__overlay{
  position: relative;
  z-index: 2;
  width: 50%;
  min-width: 400px;
  padding-right: 50px;
  padding-left: 50px;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  align-items: flex-start;
}

.location-section__content{
  background: rgba(78, 194, 52, 0.5);
  border-radius: 20px;
  padding: 60px 80px 60px 50px;
  width: 100%;
  height: auto;
}

.location-section__content-inner{
  width: 100%;
}

.location-section__title{
  margin: 0 0 30px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 48px;
  color: #fff;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 1px;
  line-height: 1.1;
}

.location-section__text{
  font-family: "Mulish", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
  width: 60%;
  max-width: 100%;
}

.location-section__text p{
  margin: 0 0 20px;
}

.location-section__text p:last-child{
  margin-bottom: 0;
}

.location-section__text strong{
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1200px){
  .location-section__overlay{
    width: 55%;
    padding-right: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .location-section__content{
    padding: 50px 60px 50px 40px;
  }
  
  .location-section__title{
    font-size: 42px;
  }
  
  .location-section__text{
    width: 65%;
    font-size: 15px;
  }
}

@media (max-width: 900px){
  .location-section{
    min-height: 400px;
    justify-content: center;
  }
  
  .location-section__overlay{
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .location-section__content{
    padding: 40px 50px 40px 30px;
    border-radius: 16px;
  }
  
  .location-section__title{
    font-size: 36px;
    margin-bottom: 24px;
  }
  
  .location-section__text{
    width: 70%;
    font-size: 15px;
  }
}

@media (max-width: 600px){
  .location-section{
    min-height: 350px;
  }
  
  .location-section__overlay{
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .location-section__content{
    padding: 30px 40px 30px 24px;
    border-radius: 12px;
  }
  
  .location-section__title{
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .location-section__text{
    width: 85%;
    font-size: 14px;
  }
}

@media (max-width: 480px){
  .location-section__overlay{
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .location-section__content{
    padding: 24px 32px 24px 20px;
  }
  
  .location-section__title{
    font-size: 24px;
  }
  
  .location-section__text{
    width: 100%;
    font-size: 13px;
  }
}

/* =========================
   LOCATION COORDINATES SECTION
========================= */

.location-coordinates-section{
  position: relative;
  width: 100%;
  overflow: visible;
  margin-bottom: 250px;
}

.location-coordinates-section__container{
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  min-height: 500px;
  background: #4EC234;
}

.location-coordinates-section__left{
  background: #4EC234;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 50px;
  position: relative;
  z-index: 1;
}

.location-coordinates-section__content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.location-coordinates-section__pin{
  width: 60px;
  height: auto;
  margin-bottom: 20px;
  display: block;
}

.location-coordinates-section__coordinates{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.location-coordinates-section__coord-row{
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 1px;
}

.location-coordinates-section__right{
  flex: 1;
  position: relative;
  padding-right: 50px;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.location-coordinates-section__map-wrapper{
  position: absolute;
  right: 50px;
  top: 80px;
  height: 600px;
  bottom: 80px;
  width: calc(100% - 100px);
  min-width: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  z-index: 2;
}

.location-coordinates-section__map-wrapper iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Responsive */
@media (max-width: 1200px){
  .location-coordinates-section__left{
    width: 45%;
    padding: 50px 40px;
  }
  
  .location-coordinates-section__right{
    padding-right: 40px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .location-coordinates-section__map-wrapper{
    right: 40px;
    top: 60px;
    bottom: 60px;
    width: calc(100% - 80px);
    min-width: 400px;
    border-radius: 18px;
  }
  
  .location-coordinates-section__coord-row{
    font-size: 36px;
  }
}

@media (max-width: 900px){
  .location-coordinates-section__container{
    flex-direction: column;
    min-height: auto;
  }
  
  .location-coordinates-section__left{
    width: 100%;
    padding: 50px 30px;
    min-height: 300px;
  }
  
  .location-coordinates-section__right{
    width: 100%;
    padding: 0;
    position: relative;
    min-height: 400px;
  }
  
  .location-coordinates-section__map-wrapper{
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: calc(100% - 60px);
    min-width: auto;
    margin: 0 30px 50px;
    height: 400px;
    border-radius: 16px;
  }
  
  .location-coordinates-section__coord-row{
    font-size: 32px;
  }
}

@media (max-width: 600px){
  .location-coordinates-section__left{
    padding: 40px 20px;
    min-height: 250px;
  }
  
  .location-coordinates-section__right{
    min-height: 350px;
  }
  
  .location-coordinates-section__map-wrapper{
    width: calc(100% - 40px);
    margin: 0 20px 40px;
    height: 350px;
    border-radius: 12px;
  }
  
  .location-coordinates-section__pin{
    width: 48px;
    margin-bottom: 16px;
  }
  
  .location-coordinates-section__coord-row{
    font-size: 28px;
  }
}

@media (max-width: 480px){
  .location-coordinates-section__left{
    padding: 30px 16px;
    min-height: 200px;
  }
  
  .location-coordinates-section__right{
    min-height: 300px;
  }
  
  .location-coordinates-section__map-wrapper{
    width: calc(100% - 32px);
    margin: 0 16px 30px;
    height: 300px;
    border-radius: 10px;
  }
  
  .location-coordinates-section__pin{
    width: 36px;
    margin-bottom: 12px;
  }
  
  .location-coordinates-section__coord-row{
    font-size: 24px;
  }
}

/* =========================
   PARTNERS SECTION
========================= */

.partners-section{
  background-color: #ffffff;
  padding: 80px 0;
}

.partners-section__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.partners-section__title{
  margin: 0 0 50px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 54px;
  color: #033215;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.1;
}

.partners-section__list{
  width: 100%;
}

.partners-section__divider{
  width: 100%;
  height: 1px;
  background-color: #BDD0C4;
  margin: 0;
}

.partners-section__item{
  padding: 30px 0;
}

.partners-section__name{
  margin: 0 0 12px;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #006832;
  line-height: 1.4;
}

.partners-section__description{
  margin: 0;
  font-family: "Mulish", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px){
  .partners-section{
    padding: 60px 0;
  }
  
  .partners-section__title{
    font-size: 42px;
    margin-bottom: 40px;
  }
  
  .partners-section__item{
    padding: 24px 0;
  }
  
  .partners-section__name{
    font-size: 17px;
  }
  
  .partners-section__description{
    font-size: 14px;
  }
}

@media (max-width: 600px){
  .partners-section{
    padding: 40px 0;
  }
  
  .partners-section__title{
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .partners-section__item{
    padding: 20px 0;
  }
  
  .partners-section__name{
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .partners-section__description{
    font-size: 13px;
  }
}

@media (max-width: 480px){
  .partners-section__title{
    font-size: 32px;
    margin-bottom: 24px;
  }
  
  .partners-section__item{
    padding: 18px 0;
  }
  
  .partners-section__name{
    font-size: 15px;
  }
  
  .partners-section__description{
    font-size: 12px;
  }
}

/* =========================
   METHODOLOGY SECTION
========================= */

.methodology-section{
  background-color: #EFF5ED;
  padding: 80px 0;
  width: 100%;
  position: relative;
  margin-top: 100px;
}

.methodology-section__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0px;
}

.methodology-section__icon{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
}

.methodology-section__icon img{
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
}

.methodology-section__title{
  margin: 80px 0 60px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 54px;
  color: #033215;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.1;
  text-transform: none;
}

.methodology-section__methodology-box{
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
  margin-bottom: 50px;
}

.methodology-section__methodology-left{
  display: flex;
  align-items: stretch;
}

.methodology-section__methodology-left img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.methodology-section__methodology-right{
  display: flex;
  flex-direction: column;
}

.methodology-section__subtitle{
  margin: 0 0 30px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 40px;
  color: #006832;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}

.methodology-section__text{
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
}

.methodology-section__text p{
  margin: 0 0 20px;
}

.methodology-section__text p:last-child{
  margin-bottom: 0;
}

.methodology-section__text strong{
  font-weight: 700;
}

.methodology-section__bottom-boxes{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.methodology-section__box{
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
}

.methodology-section__box-title{
  margin: 0 0 30px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 40px;
  color: #006832;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}

.methodology-section__intro{
  margin: 0 0 25px;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
}

.methodology-section__list{
  margin: 0;
  padding-left: 25px;
  list-style: disc;
}

.methodology-section__list li{
  margin: 0 0 25px;
  padding-left: 0;
}

.methodology-section__list li:last-child{
  margin-bottom: 0;
}

.methodology-section__list-item-first{
  display: block;
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 8px;
}

.methodology-section__list-item-rest{
  display: block;
  font-family: "Mulish", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
}

.methodology-section__list--numbered{
  counter-reset: methodology-counter;
  list-style: none;
  padding-left: 0;
}

.methodology-section__list--numbered li{
  counter-increment: methodology-counter;
  position: relative;
  padding-left: 30px;
}

.methodology-section__list--numbered li::before{
  content: counter(methodology-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
}

.methodology-section__list--numbered li{
  font-family: "Mulish", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
}

.methodology-section__list--numbered li strong{
  font-weight: 700;
}

.methodology-section__list--numbered .methodology-section__list-item-first{
  font-weight: 300;
}

/* Responsive */
@media (max-width: 1200px){
  .methodology-section__inner{
    padding: 0 40px;
  }
  
  .methodology-section__methodology-box{
    padding: 40px;
    gap: 40px;
  }
  
  .methodology-section__box{
    padding: 40px;
  }
}

@media (max-width: 1024px){
  .methodology-section__title{
    font-size: 48px;
  }
  
  .methodology-section__subtitle,
  .methodology-section__box-title{
    font-size: 36px;
  }
}

@media (max-width: 900px){
  .methodology-section{
    padding: 60px 0;
  }
  
  .methodology-section__inner{
    padding: 0 30px;
  }
  
  .methodology-section{
    margin-top: 80px;
  }
  
  .methodology-section__icon img{
    width: 150px;
    height: 150px;
  }
  
  .methodology-section__title{
    font-size: 42px;
    margin-top: 60px;
    margin-bottom: 40px;
  }
  
  .methodology-section__methodology-box{
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }
  
  .methodology-section__methodology-left img{
    height: 300px;
    object-fit: cover;
  }
  
  .methodology-section__bottom-boxes{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .methodology-section__box{
    padding: 30px;
  }
  
  .methodology-section__subtitle,
  .methodology-section__box-title{
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .methodology-section__intro{
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .methodology-section__list-item-first{
    font-size: 18px;
  }
  
  .methodology-section__list-item-rest{
    font-size: 15px;
  }
}

@media (max-width: 600px){
  .methodology-section{
    padding: 40px 0;
  }
  
  .methodology-section__inner{
    padding: 0 16px;
  }
  
  .methodology-section{
    margin-top: 60px;
  }
  
  .methodology-section__icon img{
    width: 120px;
    height: 120px;
  }
  
  .methodology-section__title{
    font-size: 36px;
    margin-top: 50px;
    margin-bottom: 30px;
  }
  
  .methodology-section__methodology-box{
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 30px;
  }
  
  .methodology-section__methodology-left img{
    height: 250px;
    border-radius: 12px;
  }
  
  .methodology-section__bottom-boxes{
    gap: 24px;
  }
  
  .methodology-section__box{
    padding: 24px;
    border-radius: 16px;
  }
  
  .methodology-section__subtitle,
  .methodology-section__box-title{
    font-size: 28px;
    margin-bottom: 18px;
  }
  
  .methodology-section__text{
    font-size: 14px;
  }
  
  .methodology-section__intro{
    font-size: 16px;
    margin-bottom: 18px;
  }
  
  .methodology-section__list-item-first{
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  .methodology-section__list-item-rest{
    font-size: 14px;
  }
  
  .methodology-section__list--numbered li{
    padding-left: 24px;
  }
  
  .methodology-section__list--numbered li::before{
    font-size: 16px;
  }
}

@media (max-width: 480px){
  .methodology-section{
    margin-top: 50px;
  }
  
  .methodology-section__icon img{
    width: 100px;
    height: 100px;
  }
  
  .methodology-section__title{
    font-size: 32px;
    margin-top: 50px;
  }
  
  .methodology-section__subtitle,
  .methodology-section__box-title{
    font-size: 24px;
  }
  
  .methodology-section__methodology-box{
    padding: 20px;
  }
  
  .methodology-section__methodology-left img{
    height: 200px;
  }
  
  .methodology-section__box{
    padding: 20px;
  }
  
  .methodology-section__intro{
    font-size: 15px;
  }
  
  .methodology-section__list-item-first{
    font-size: 15px;
  }
  
  .methodology-section__list-item-rest{
    font-size: 13px;
  }
}

/* =========================
   AGROSOLARSTVO SECTION
========================= */

.agrosolarstvo-section{
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.agrosolarstvo-section__background{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.agrosolarstvo-section__background img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.agrosolarstvo-section__overlay{
  position: relative;
  z-index: 2;
  width: 65%;
  min-width: 400px;
  padding-right: 50px;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  align-items: flex-start;
}

.agrosolarstvo-section__content{
  background: rgba(212, 223, 0, 0.85);
  border-radius: 20px;
  padding: 60px 80px 60px 50px;
  width: 100%;
  height: auto;
}

.agrosolarstvo-section__title{
  margin: 0 0 30px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 54px;
  color: #fff;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 1px;
  line-height: 1.1;
}

.agrosolarstvo-section__text{
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #033215;
  line-height: 1.7;
  width: 100%;
  max-width: 100%;
}

.agrosolarstvo-section__text p{
  margin: 0 0 20px;
}

.agrosolarstvo-section__text p:last-child{
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1200px){
  .agrosolarstvo-section__overlay{
    width: 70%;
    padding-right: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .agrosolarstvo-section__content{
    padding: 50px 60px 50px 40px;
  }
  
  .agrosolarstvo-section__title{
    font-size: 48px;
  }
  
  .agrosolarstvo-section__text{
    font-size: 15px;
  }
}

@media (max-width: 900px){
  .agrosolarstvo-section{
    min-height: 400px;
    justify-content: center;
  }
  
  .agrosolarstvo-section__overlay{
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .agrosolarstvo-section__content{
    padding: 40px 50px 40px 30px;
    border-radius: 16px;
  }
  
  .agrosolarstvo-section__title{
    font-size: 42px;
    margin-bottom: 24px;
  }
  
  .agrosolarstvo-section__text{
    font-size: 15px;
  }
}

@media (max-width: 600px){
  .agrosolarstvo-section{
    min-height: 350px;
  }
  
  .agrosolarstvo-section__overlay{
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .agrosolarstvo-section__content{
    padding: 30px 40px 30px 24px;
    border-radius: 12px;
  }
  
  .agrosolarstvo-section__title{
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .agrosolarstvo-section__text{
    font-size: 14px;
  }
}

@media (max-width: 480px){
  .agrosolarstvo-section__overlay{
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .agrosolarstvo-section__content{
    padding: 24px 32px 24px 20px;
  }
  
  .agrosolarstvo-section__title{
    font-size: 32px;
  }
  
  .agrosolarstvo-section__text{
    font-size: 13px;
  }
}

/* =========================
   NEWS SECTION
========================= */

.news-section{
  background-color: #ffffff;
  padding: 80px 0;
}

.news-section__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.news-section__title{
  margin: 0 0 50px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 54px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}

.news-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.news-card{
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.news-card__img{
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.news-card__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card__body{
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-card__date{
  font-family: "Mulish", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #033215;
  line-height: 1.4;
}

.news-card__title{
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #033215;
  line-height: 1.5;
  margin: 0;
}

.news-section__btn{
  display: block;
  background-color: #4EC234;
  color: #ffffff;
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 0 auto;
  width: fit-content;
}

.news-section__btn:hover{
  background-color: #3ea028;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px){
  .news-cards{
    gap: 24px;
  }
}

@media (max-width: 900px){
  .news-section{
    padding: 60px 0;
  }
  
  .news-section__title{
    font-size: 42px;
    margin-bottom: 40px;
  }
  
  .news-cards{
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  
  .news-card__img{
    height: 220px;
  }
  
  .news-card__body{
    padding: 18px;
  }
  
  .news-card__date{
    font-size: 13px;
  }
  
  .news-card__title{
    font-size: 15px;
  }
  
  .news-section__btn{
    font-size: 15px;
    padding: 12px 28px;
  }
}

@media (max-width: 600px){
  .news-section{
    padding: 40px 0;
  }
  
  .news-section__inner{
    padding: 0 16px;
  }
  
  .news-section__title{
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .news-cards{
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .news-card__img{
    height: 200px;
  }
  
  .news-card__body{
    padding: 16px;
    gap: 10px;
  }
  
  .news-card__date{
    font-size: 12px;
  }
  
  .news-card__title{
    font-size: 14px;
  }
  
  .news-section__btn{
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 10px;
  }
}

@media (max-width: 480px){
  .news-section__title{
    font-size: 32px;
  }
  
  .news-card__img{
    height: 180px;
  }
  
  .news-card__body{
    padding: 14px;
  }
  
  .news-card__date{
    font-size: 11px;
  }
  
  .news-card__title{
    font-size: 13px;
  }
  
  .news-section__btn{
    font-size: 13px;
    padding: 10px 20px;
  }
}