:root {
  --primary-green: #007a4d;
  --accent-yellow: #ffc72c;
  --button-green: #007a4d;
  --button-green-hover: #005f36;
  --button-outline: #fff;
  --text-dark: #222;
  --text-light: #fff;
  --bg-light: #f9f9f9;
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  font-size: 18px;
  padding: 0;
  scroll-behavior: smooth;
  font-family: 'Albert Sans', sans-serif !important;
}

body {
  overflow-x: hidden;
  font-family: 'Albert Sans', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
}





.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin-right: 0%;
  margin-left: 540px;
}


.nav-link {
  text-decoration: none;
  color: var(--primary-green);
  font-weight: 100;
  padding: 0.7rem 0.7rem;
  border-radius: 4px;
  font-size: 18px;
  border: none;
  transition: background 0.2s, color 0.2s;
}

.nav-link.active,
.nav-link:hover {
  background: var(--primary-green);
  color: var(--text-light);
}

.nav-container {
  max-width: 85% !important;
  display: flex;
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10%;
  margin-left: 7% !important;
  margin-right: 0%;
  margin-bottom: 40px !important;
}

.logo {
  margin-left: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}


.logo img {
  width: 100px;
  height: 70px;
  object-fit: contain;
}


.logo span {
  font-weight: bold;
  color: var(--primary-green);
  letter-spacing: 1px;
}

.main-section h2 {
  margin-bottom: 90px;
}

.mission-image {
  margin-right: 0% auto;
  margin-right: -20%;
  margin-bottom: 10%;

}

.main-section {
  display: flex;
  align-items: center;

  justify-content: center;
  /* min-height: 80vh; */
  background: #fff;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
}



.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6%;
  padding-top: 100px;
  padding-left: 160px;
  margin-bottom: 10%;
  font-size: 900px;
  width: 78%;
  margin: 0;
}

.mission-text {}

.highlight {
  font-size: larger !important;
}

.content h2 {
  padding-bottom: 30px;
  font-size: larger;
  color: var(--accent-yellow);
  font-weight: bold;
}

.desc {
  color: var(--text-dark);
  font-size: large !important;
  margin: 1.3rem 0 2rem 0;
  font-weight: 500;
  max-width: 20vw !important;
}

.buttons {
  display: flex;
  gap: 3rem;
  padding-top: 40px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 10%;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: background 0.2s, color 0.2s, border 0.2s;
  white-space: nowrap;
}

.download {
  background: var(--button-green);
  color: var(--text-light);
  border: none;
}

.download:hover {
  background: var(--button-green-hover);
}

.get-started {
  background: var(--button-outline);
  color: var(--button-green);
  border: 2px solid var(--button-green);
}

.get-started:hover {
  background: var(--button-green);
  color: var(--text-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 22px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #007a4d;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


@media only screen and (max-width:500px) {

  .nav-links {
    list-style: none;
    display: none;

    gap: 2rem;
    margin-right: 0%;
    margin-left: 540px;
  }


  .nav-link {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 100;
    padding: 0.7rem 0.7rem;
    border-radius: 4px;
    font-size: 18px;
    border: none;
    transition: background 0.2s, color 0.2s;
  }

  .nav-link.active,
  .nav-link:hover {
    background: var(--primary-green);
    color: var(--text-light);
  }

  .nav-container {
    max-width: 85% !important;
    display: flex;
    padding-top: 20px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10%;
    margin-left: 7% !important;
    margin-right: 0%;
    margin-bottom: 40px !important;
  }

  .logo {
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }


  .logo img {
    width: 100px;
    height: 70px;
    object-fit: contain;
  }

  .logo span {
    font-weight: bold;
    color: var(--primary-green);
    letter-spacing: 1px;
  }

  .main-section h2 {
    margin-bottom: 90px;
  }

  .mission-image {
    margin-right: 0% auto;
    margin-right: 0%;
  }

  .mission-image img {
    height: 200px;
  }

  /* .main-section {
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
} */



  .content {
    flex-direction: column;
    text-align: center;
    justify-content: space-between;
    gap: 6%;
    padding-top: 2%;
    padding-left: 0px;
    font-size: 900px;
    width: 87%;
    margin: auto;
  }

  .mission-text {}

  .highlight {
    font-size: larger !important;
  }

  .content h2 {
    padding-bottom: 30px;
    font-size: larger;
    color: var(--accent-yellow);
    font-weight: bold;
  }

  .desc {
    color: var(--text-dark);
    font-size: large !important;
    margin: 1.3rem 0 2rem 0;
    font-weight: 500;
    max-width: 20vw !important;
  }

  .buttons {
    display: flex;
    gap: 1.5rem;
    width: 50%;
    margin: auto;
    padding-top: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 10%;
  }

  .btn {
    display: inline-block;
    padding: 0.8rem 2.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: background 0.2s, color 0.2s, border 0.2s;
    white-space: nowrap;
  }



  .hamburger {
    display: block;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 22px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #007a4d;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}


@media only screen and (min-width: 501px) and (max-width: 540px) {

  .nav-links {
    list-style: none;
    display: none;

    gap: 2rem;
    margin-right: 0%;
    margin-left: 540px;
  }


  .nav-link {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 100;
    padding: 0.7rem 0.7rem;
    border-radius: 4px;
    font-size: 18px;
    border: none;
    transition: background 0.2s, color 0.2s;
  }

  .nav-link.active,
  .nav-link:hover {
    background: var(--primary-green);
    color: var(--text-light);
  }

  .nav-container {
    max-width: 85% !important;
    display: flex;
    padding-top: 20px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10%;
    margin-left: 7% !important;
    margin-right: 0%;
    margin-bottom: 40px !important;
  }

  .logo {
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }


  .logo img {
    width: 100px;
    height: 70px;
    object-fit: contain;
  }

  .logo span {
    font-weight: bold;
    color: var(--primary-green);
    letter-spacing: 1px;
  }

  .main-section h2 {
    margin-bottom: 90px;
  }

  .mission-image {
    margin-right: 0% auto;
    margin-right: 0%;
  }

  .mission-image img {
    height: 270px;
  }




  .content {
    flex-direction: column;
    text-align: center;
    justify-content: space-between;
    gap: 6%;
    padding-top: 2%;
    padding-left: 0px;
    font-size: 900px;
    width: 87%;
    margin: auto;
  }

  .mission-text {}

  .highlight {
    font-size: larger !important;
  }

  .content h2 {
    padding-bottom: 30px;
    font-size: larger;
    color: var(--accent-yellow);
    font-weight: bold;
  }

  .desc {
    color: var(--text-dark);
    font-size: large !important;
    margin: 1.3rem 0 2rem 0;
    font-weight: 500;
    max-width: 20vw !important;
  }

  .buttons {
    display: flex;
    gap: 1.5rem;
    width: 80%;
    margin: auto;
    padding-top: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 10%;
  }

  .btn {
    display: flex;
    padding: 0.8rem 2.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: background 0.2s, color 0.2s, border 0.2s;
    white-space: nowrap;
  }



  .hamburger {
    display: block;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 22px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #007a4d;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

}



@media only screen and (min-width: 541px) and (max-width: 1000px) {

  .nav-links {
    list-style: none;
    display: none;

    gap: 2rem;
    margin-right: 0%;
    margin-left: 540px;
  }


  .nav-link {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 100;
    padding: 0.7rem 0.7rem;
    border-radius: 4px;
    font-size: 18px;
    border: none;
    transition: background 0.2s, color 0.2s;
  }

  .nav-link.active,
  .nav-link:hover {
    background: var(--primary-green);
    color: var(--text-light);
  }

  .nav-container {
    max-width: 85% !important;
    display: flex;
    padding-top: 20px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10%;
    margin-left: 7% !important;
    margin-right: 0%;
    margin-bottom: 40px !important;
  }

  .logo {
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }


  .logo img {
    width: 100px;
    height: 70px;
    object-fit: contain;
  }

  .logo span {
    font-weight: bold;
    color: var(--primary-green);
    letter-spacing: 1px;
  }

  .main-section h2 {
    margin-bottom: 90px;
  }

  .mission-image {
    margin-right: 0% auto;
    margin-right: 0%;
  }

  .mission-image img {
    height: 400px;
  }


  .content {
    flex-direction: column;
    text-align: center;
    justify-content: space-between;
    gap: 6%;
    padding-top: 2%;
    padding-left: 0px;
    font-size: 900px;
    width: 87%;
    margin: auto;

    p {
      font-size: 25px;
    }
  }


  .highlight {
    font-size: larger !important;
  }

  .content h2 {
    padding-bottom: 30px;
    color: var(--accent-yellow);
    font-weight: bold;
  }

  .desc {
    color: var(--text-dark);
    font-size: large !important;
    margin: 1.3rem 0 2rem 0;
    font-weight: 500;
    max-width: 20vw !important;
  }

  .buttons {
    display: flex;
    gap: 1.5rem;
    width: 60%;
    margin: auto;
    padding-top: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 8%;
  }

  .btn {
    display: flex;
    padding: 0.8rem 2.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: background 0.2s, color 0.2s, border 0.2s;
    white-space: nowrap;
  }



  .hamburger {
    display: block;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 22px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #007a4d;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

}

@media only screen and (min-width: 1280px) and (max-width: 1440px) {
  body {
    overflow-x: hidden;
  }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin-right: 0;
  padding-left: 25px;
  margin-top: -5%;
}


.nav-link {
  text-decoration: none;
  color: var(--primary-green);
  font-weight: 100;
  padding: 0.5rem 0.3rem;
  border-radius: 4px;
  font-size: 18px;
  border: none;
  transition: background 0.2s, color 0.2s;
}

.nav-link.active,
.nav-link:hover {
  background: var(--primary-green);
  color: var(--text-light);
}

.nav-container {
  max-width: 100% !important;
  display: flex;
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: 6% !important;
  margin-right: 0%;
  margin-bottom: 40px !important;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* margin-left: -5% !important; */
}


.logo img {
  width: 100px;
  height: 70px;
  object-fit: contain;
}


.logo span {
  font-weight: bold;
  color: var(--primary-green);
  letter-spacing: 1px;
}

  .main-section h2 {
    margin-bottom: 90px;
  }

  

  .mission-image {
    margin-right: 0% auto;
    margin-right: 0%;
    margin-top: -5%;
  }

  .mission-image img {
    height: 300px;
    margin-top: 20%;
  }


  .content {
    display: flex;
    text-align: left;
    justify-content: space-between;
    gap: 6%;
    padding-top: 2%;
    padding-left: 0px;
    font-size: 900px;
    width: 80%;
    margin: auto;

    p {
      font-size: 16px;
    }
  }

  .about-card-2{
    max-height: 900px;
    max-width: 900px;
    gap: 20px !important;
    margin-left: 20% !important;
    margin-top: 25px !important;
  }




  .about-card-2 p{
    max-width: 50vw;
  }

  .about-card-1{
   max-height: 900px;
    max-width: 900px !important;
    gap: 20px !important;
  }
  
  .about-card-1 p{
    max-width: 50vw !important;
  }

  .about-card-1 img{
    height: 270px !important;
  }

  .about-section{
    gap: 10px !important;
  }


  .highlight {
    font-size: larger !important;
  }

  .content h2 {
    padding-bottom: 30px;
    color: var(--accent-yellow);
    font-weight: bold;
  }

  .desc {
    color: var(--text-dark);
    font-size: large !important;
    margin: 1.3rem 0 2rem 0;
    font-weight: 500;
    max-width: 20vw !important;
  }

  .buttons {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    margin: auto;
    padding-top: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 8%;
  }

  .btn {
    display: flex;
    padding: 0.8rem 2.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: background 0.2s, color 0.2s, border 0.2s;
    white-space: nowrap;
  }



  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 22px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #007a4d;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

}


@media only screen and (min-width: 1025px) and (max-width: 1280px) {
.nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
  margin-right: 0;
  margin-left: 5%;
}


.nav-link {
  text-decoration: none;
  color: var(--primary-green);
  font-weight: 100;
  border-radius: 4px;
  font-size: 18px;
  border: none;
  transition: background 0.2s, color 0.2s;
}

.nav-link.active,
.nav-link:hover {
  background: var(--primary-green);
  color: var(--text-light);
}

.nav-container {
  max-width: 85% !important;
  display: flex;
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10%;
  margin-left: 7% !important;
  margin-right: 0%;
  margin-bottom: 40px !important;
}

.logo {
  margin-left: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}


.logo img {
  width: 100px;
  height: 70px;
  object-fit: contain;
}


.logo span {
  font-weight: bold;
  color: var(--primary-green);
  letter-spacing: 1px;
}

  .main-section h2 {
    margin-bottom: 90px;
  }

  .mission-image {
    margin-right: 0% auto;
    margin-right: 0%;
    margin-top: -5%;
  }

  .mission-image img {
  height: 280px;
  }




  .content {
    display: flex;
    text-align: left;
    justify-content: space-between;
    gap: 6%;
    padding-top: 2%;
    padding-left: 0px;
    font-size: 900px;
    width: 85%;
    margin: auto;

    p {
      font-size: 16px;
    }
  }


  .highlight {
    font-size: larger !important;
  }

  .content h2 {
    padding-bottom: 30px;
    color: var(--accent-yellow);
    font-weight: bold;
  }

  .desc {
    color: var(--text-dark);
    font-size: large !important;
    margin: 1.3rem 0 2rem 0;
    font-weight: 500;
    max-width: 20vw !important;
  }

  .buttons {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    margin: auto;
    padding-top: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 8%;
  }

  .btn {
    display: flex;
    padding: 0.8rem 2.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: background 0.2s, color 0.2s, border 0.2s;
    white-space: nowrap;
  }



  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 22px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .hamburger span {
    display: none;
    height: 3px;
    width: 100%;
    background-color: #007a4d;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}


.connect-underline {
  width: 60px;
  height: 5px;
  background: #ffc72c;
  border-radius: 3px;
  margin: 0 auto 0.5rem auto;
  font-weight: bold;
  
}


.sustainable-section {
  margin-top: 5% !important;
  font-family: 'Albert Sans', sans-serif;
  max-width: 90vw;
  margin: 0 auto 2.5rem auto;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.sustainable-section h2{
text-align: center;
font-size: 35px !important;
}

.sustainable-header {
  text-align: left;
  margin-bottom: 0.5rem;
}

.sustainable-connect {
  color: #f7c948;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  opacity: 0.8;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.sustainable-title {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin: 0 0 0.7rem 0;
  line-height: 1.25;
  text-align: center;
}

.sustainable-description {
  color: #444;
  font-size: large;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.sustainable-readmore {
  color: #0F7E2C;
  text-decoration: none;
  font-weight: 600;
  margin-left: 0.3em;
  font-size: 0.97em;
  transition: color 0.2s;
}
.sustainable-readmore:hover {
  color: #388e3c;
  text-decoration: underline;
}

#connect{
  font-size: 35px !important;
  
}

@media (max-width: 900px) {
  .about-card-1 img {
    width: 90vw !important;
    max-width: 90vw !important;
    max-height: 500px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    display: block !important;
    object-fit: cover !important;
  }
}







@media only screen and (min-width: 1001px) and (max-width: 1024px) {

.nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
  margin-right: 0;
  margin-left: 25%;
  padding-left: 53px;
  margin-top: -8%;
}


.nav-link {
  text-decoration: none;
  color: var(--primary-green);
  font-weight: 100;
  padding: 0.5rem 0.3rem;
  border-radius: 4px;
  font-size: 18px;
  border: none;
  transition: background 0.2s, color 0.2s;
}

.nav-link.active,
.nav-link:hover {
  background: var(--primary-green);
  color: var(--text-light);
}

.nav-container {
  max-width: 100% !important;
  display: flex;
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10%;
  margin-left: 7% !important;
  margin-right: 0%;
  margin-bottom: 40px !important;
}

.logo {
  margin-left: -3% !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}


.logo img {
  width: 100px;
  height: 70px;
  object-fit: contain;
}


.logo span {
  font-weight: bold;
  color: var(--primary-green);
  letter-spacing: 1px;
}

  .main-section h2 {
    margin-bottom: 90px;
  }

  .mission-image {
    margin-right: 0% auto;
    margin-right: 0%;
    margin-top: -5%;
  }

  .mission-image img {
    height: 250px;
    margin-top: 20%;
  }


  .content {
    display: flex;
    text-align: left;
    justify-content: space-between;
    gap: 6%;
    padding-top: 2%;
    padding-left: 0px;
    font-size: 900px;
    width: 87%;
    margin: auto;

    p {
      font-size: 16px;
    }
  }


  .highlight {
    font-size: larger !important;
  }

  .content h2 {
    padding-bottom: 30px;
    color: var(--accent-yellow);
    font-weight: bold;
  }

  .desc {
    color: var(--text-dark);
    font-size: large !important;
    margin: 1.3rem 0 2rem 0;
    font-weight: 500;
    max-width: 20vw !important;
  }

  .buttons {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    margin: auto;
    padding-top: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 8%;
  }

  .btn {
    display: flex;
    padding: 0.8rem 2.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: background 0.2s, color 0.2s, border 0.2s;
    white-space: nowrap;
  }



  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 22px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #007a4d;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

}



@media only screen and (min-width: 1025px) and (max-width: 1280px) {
.nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
  margin-right: 0;
  margin-left: 5%;
}

.nav-link {
  text-decoration: none;
  color: var(--primary-green);
  font-weight: 100;
  border-radius: 4px;
  font-size: 18px;
  border: none;
  transition: background 0.2s, color 0.2s;
}

.nav-link.active,
.nav-link:hover {
  background: var(--primary-green);
  color: var(--text-light);
}

.nav-container {
  max-width: 85% !important;
  display: flex;
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10%;
  margin-left: 7% !important;
  margin-right: 0%;
  margin-bottom: 40px !important;
}

.logo {
  margin-left: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}


.logo img {
  width: 100px;
  height: 70px;
  object-fit: contain;
}


.logo span {
  font-weight: bold;
  color: var(--primary-green);
  letter-spacing: 1px;
}

  .main-section h2 {
    margin-bottom: 90px;
  }

  .mission-image {
    margin-right: 0% auto;
    margin-right: 0%;
    margin-top: -5%;
  }

  .mission-image img {
  height: 280px;
  }




  .content {
    display: flex;
    text-align: left;
    justify-content: space-between;
    gap: 6%;
    padding-top: 2%;
    padding-left: 0px;
    font-size: 900px;
    width: 85%;
    margin: auto;

    p {
      font-size: 16px;
    }
  }


  .highlight {
    font-size: larger !important;
  }

  .content h2 {
    padding-bottom: 30px;
    color: var(--accent-yellow);
    font-weight: bold;
  }

  .desc {
    color: var(--text-dark);
    font-size: large !important;
    margin: 1.3rem 0 2rem 0;
    font-weight: 500;
    max-width: 20vw !important;
  }

  .buttons {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    margin: auto;
    padding-top: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 8%;
  }

  .btn {
    display: flex;
    padding: 0.8rem 2.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: background 0.2s, color 0.2s, border 0.2s;
    white-space: nowrap;
  }



  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 22px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }


  .hamburger span {
    display: none;
    height: 3px;
    width: 100%;
    background-color: #007a4d;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}


.connect-underline {
  width: 60px;
  height: 5px;
  background: #ffc72c;
  border-radius: 3px;
  margin: 0 auto 0.5rem auto;
  font-weight: bold;
  
}


.sustainable-section {
  margin-top: 5% !important;
  font-family: 'Albert Sans', sans-serif;
  max-width: 90vw;
  margin: 0 auto 2.5rem auto;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.sustainable-section h2{
text-align: center;
font-size: 35px !important;
}

.sustainable-header {
  text-align: left;
  margin-bottom: 0.5rem;
}

.sustainable-connect {
  color: #f7c948;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  opacity: 0.8;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.sustainable-title {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin: 0 0 0.7rem 0;
  line-height: 1.25;
  text-align: center;
}

.sustainable-description {
  color: #444;
  font-size: large;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.sustainable-readmore {
  color: #0F7E2C;
  text-decoration: none;
  font-weight: 600;
  margin-left: 0.3em;
  font-size: 0.97em;
  transition: color 0.2s;
}
.sustainable-readmore:hover {
  color: #388e3c;
  text-decoration: underline;
}

#connect{
  font-size: 35px !important;
  
}

@media (max-width: 900px) {
  .about-card-1 img {
    width: 90vw !important;
    max-width: 90vw !important;
    max-height: 500px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    display: block !important;
    object-fit: cover !important;
  }
}

@media (min-width:375px) and (max-width: 667px),
       (min-width:360px) and (max-width: 740px),
       (min-width:390px) and (max-width: 844px),
       (min-width:414px) and (max-width: 896px),
       (min-width:412px) and (max-width: 915px),
       (min-width:430px) and (max-width: 932px) {
  .about-card-1 img {
    width: 90vw !important;
    max-width: 90vw !important;
    max-height: 250px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    display: block !important;
    object-fit: cover !important;
  }
}

@media (min-width:768px) and (max-width: 1024px),
       (min-width:820px) and (max-width: 1180px) {
  .about-card-1 img {
    width: 60vw !important;
    max-width: 350px !important;
    height: 160px !important;
    max-height: 180px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    display: block !important;
    object-fit: cover !important;
  }
}


@media (max-width: 844px) {
  #connect{
    font-size: 28px !important;
  }

  .sustainable-title{
    font-size: 1rem !important;
  }
}


.sustainable-images {
  margin-top: 60px;
  display: flex;
  gap: 1.2rem;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  max-width: 90vw;
  
}

.sustainable-images img {
  width: 100%;
  max-width: 90vw;
  height: 520px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06); 
  background: #f7f7f7;
  flex: 1 1 240px; 
}
#farmingsite-1{
max-width: 290px;
}
#farmingsite-2{
max-width: 200vb;
height: 320px;

}

.whyus-header h2{
  color: var(--accent-yellow);
  margin-bottom: 15px;
  font-size: 24px;
  
}


.footer {
  background-color: #136829;
  padding: 20px;
  color: #f5efef;
}

.footer-top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo {
  flex: 1 1 200px;
  min-width: 150px;
}

.footer-logo img {
  width: 100px;
  height: auto;
}

.footer-logo .description {
  margin-top: 10px;
  font-size: 16px;
  color: #faf5f5;
}

.footer-columns {
  display: flex;
  flex: 3 1 500px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 40px;
  gap: 10px;
  padding-right: 40px;
}

.column h4 {
  margin-bottom: 10px;
}

.column ul {
  list-style: none;
}

.column ul li {
  margin-bottom: 8px;
}

.column ul li a {
  text-decoration: none;
  color: #f8f4f4;
  font-size: 16px;
}

.column ul li a:hover {
  color: #007BFF;
}

hr {
  margin: 30px 0 15px 0;
  border: 0;
  border-top: 1px solid #ccc;
}

.footer-bottom {
  text-align: center;
}

.hub-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.footer-bottom p {
  font-size: 16px;
  color: #f3efef;
}



@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
  }

  .footer-columns {
    flex-direction: column;
    width: 100%;
  }

  .column {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }
}

@media (max-width: 250px) {
  .footer-top {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .footer-logo img {
    width: 60px;
  }

  .footer-columns {
    flex-direction: column;
  }

  .column h4 {
    font-size: 12px;
  }

  .column ul li a {
    font-size: 11px;
  }

  .hub-name {
    font-size: 14px;
  }

  .footer-bottom p {
    font-size: 10px;
  }
}
 

@media (width: 1024px) {
.sustainable-images{
  display: flex;
  max-width: 50%;
  align-items: end;
  margin-left: 0%;
  flex-wrap: nowrap;
}}

@media (width: 1280px) {
  .sustainable-images{
  display: flex;
  max-width: 50%;
  align-items: end;
  margin-left: 0%;
  flex-wrap: nowrap;
}
}
@media (width: 768px) {
 .column h4 {
    font-size: 20px;
  }
   .column ul li a {
    font-size: 19px;
  }
  .footer-logo .description {
  font-size: 19px;
}
}





/*  Why choose Us */
#whyus-heading{
    margin-bottom: 10px;
    color: #F4C92E;
     font-size: 35px !important;


    }
.whyus-card-title{
  font-size: 24px;
}    
#explore-heading{
  margin-bottom: 10px;
    color: #F4C92E;
     font-size: 35px !important;
}

.about-underline {
  width: 60px;
  height: 4px;
  background-color: #F4C92E;
  margin: 10px auto;
}


.whyus-section {
  text-align: center;
  margin-top: 4% !important;
  padding: 40px 20px;
}

.whyus-subtitle {
  color: black;
  font-size: larger !important;
}


.whyus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 30px;
  padding: 0 5px;
}

.whyus-card {
  background: white;
  padding: 1px;
  border-radius: 12px;
  text-align: center;
}

.whyus-card img {
  width: 50%;
  height: auto;
  border-radius: 8px;
}
#Maclik-salt{
    width: 50%;
    height: 290px;

}

.whyus-card-title {
  font-weight: normal;
  margin-top: 10px;
}


.whyus-action {
  margin-top: 60px;
}

.whyus-btn { 
  background: var(--button-green);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  height: 100px;
  padding:20px;
  /* margin-top: 90px; */
  

}

#whyus-btn:hover {
  background-color: #006B49;
}


#explore {
  margin-top: 8% !important;
  text-align: center;
  max-width: 90vw ;
  margin-left: 5%;
  
}



.explore-header h2 {
  color: #c9a600;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.dairy-app {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  justify-items: center;
  width: 100%;
 
}

#dairy-app-img {
  width: 20vw;
  height: 80vh;
  border-radius: 12px;
  
}


@media (max-width: 450px){

    #explore-heading{
    font-size: 30px;
  }
  #whyus-heading{
    font-size: 30px;
  }
 #dairy-app-img {
  width: 50vw;
  height: 45vh;
  max-width: 280px;
  border-radius: 12px;
}


 .dairy-app{
    flex-direction: row;
    gap: 20px;
 }
  #Maclik-salt{
    width: 60%;
    height: 130px;

 }
 .download-btn{
   padding: 15px;
  font-size: 15px;
 }
 .whyus-btn{
  padding: 15px;
  font-size: 15px;
 }
}



@media (min-width:451px) and (max-width: 768px) {
 #explore-heading{
    font-size: 30px;
  }
  #whyus-heading{
    font-size: 30px;
  }
 #dairy-app-img {
  width: 30vw;
  height: 50vh;
  max-width: 280px;
  border-radius: 12px;
}

 .dairy-app{
 grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
 gap: 20px;
 }
  #Maclik-salt{
    width: 60%;
    height: 100px;

 }
 .download-btn{
   padding: 15px;
  font-size: 15px;
 }
 .whyus-btn{
  padding: 15px;
  font-size: 15px;
 }
}
@media (min-width:767px) and (max-width: 900px) {
#explore-heading{
    font-size: 30px;
  }
  #whyus-heading{
    font-size: 30px;
  }
 #dairy-app-img {
  width: 30vw;
  height: 40vh;
  max-width: 280px;
  border-radius: 12px;
}

 .dairy-app{
 grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
 gap: 20px;
 }
  #Maclik-salt{
    width: 60%;
    height: 100px;

 }
 .download-btn{
   padding: 15px;
  font-size: 15px;
 }
 .whyus-btn{
  padding: 15px;
  font-size: 15px;
 }

}

@media (min-width:901px) and (max-width: 1024px) {

  #explore-heading{
    font-size: 30px;
  }
  #whyus-heading{
    font-size: 30px;
  }
 #dairy-app-img {
  width: 30vw;
  height: 100%;
  max-width: 280px;
  border-radius: 12px;
}

 .dairy-app{
 grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
 gap: 20px;
 }
  #Maclik-salt{
    width: 60%;
    height: 100px;

 }
 .download-btn{
   padding: 15px;
  font-size: 15px;
 }
 .whyus-btn{
  padding: 15px;
  font-size: 15px;
 }
}
@media (min-width:1025px) and (max-width: 1300px) {
  #explore-heading{
    font-size: 30px;
  }
  #whyus-heading{
    font-size: 30px;
  }
 #dairy-app-img {
  width: 20vw;
  height: 60vh;
  max-width: 280px;
  border-radius: 12px;
}

 .dairy-app{
 grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
 gap: 20px;
 }
  #Maclik-salt{
    width: 60%;
    height: 190px;

 }
 .download-btn{
   padding: 20px;
  font-size: 20px;
 }
 .whyus-btn{
  padding: 25px;
  font-size: 20px;
 }

}




/* About Section */
.about-section {
  background: #fff;
  max-width: 300;
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 90vw !important;
}

.about-header {
  text-align: center;
  margin-bottom: 1.9rem; 
}

.about-header h2 {
  color: #ffc72c;
  font-size: 35px;
  font-weight: bold;
  margin-top: 0.7rem;
  letter-spacing: 1px;
}

.about-underline {
  width: 60px;
  height: 5px;
  background: #ffc72c;
  border-radius: 3px;
  margin: 0 auto 0.2rem auto;
}

.about-cards {
  display: flex;
  justify-content: center;
  margin-bottom: 6%;
  gap: 8%;
}

.about-card-1{
  max-width: 700px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 1.5rem;
}

.about-card-2 {
  max-width: 700px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 1.5rem;
}

.about-card-1 img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  background: #eee;
  border-radius: 20px;
}
.about-card-2 img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  background: #eee;
  border-radius: 20px;
}
.about-card-1-content {
  padding: 1.2rem 1.3rem 1.1rem 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.about-card-2-content {
  padding: 1.2rem 1.3rem 1.1rem 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-card-1-content h3 {
  font-size: 25px !important;
  font-weight: bold;
  color: #6EAE2A;
  margin-bottom: 0.7rem;
  margin-left: -15px;
}

.about-card-2-content h3 {
  font-size: 25px !important;
  font-weight: bold;
  color: #6EAE2A;
  margin-bottom: 0.7rem;
  margin-left: -15px;
}

.about-card-1-content p {
  color: black;
  font-size: large;
  line-height: 1.5;
  flex: 1;
  font-family: "Noto Serif Thai";
  margin-left: -15px;
}

.about-card-2-content p {
  color: black;
  font-size: large;
  line-height: 1.5;
  flex: 1;
  font-family: "Noto Serif Thai";
  margin-left: -15px;
}



/* iphone SE */
 @media (min-width:375px) and (max-width: 667px){


  .about-section{
    margin-left: 0% auto !important;
  
  }

.about-card-1 img{

margin-left: -5px;
  
}
.about-card-1-content h3 {
  font-size: 20px;
  margin-top: 12px;
}

.about-card-1-content p {
 font-size: 18px;
 margin-top: 12px;
}
.about-cards{
  display: flex;
  flex-wrap: wrap;
}

.about-card-2 img{
  max-height: 225px;
  max-width: 490px;
  margin-left: -5px;
}
.about-card-2-content h3 {
  font-size: 20px;
  margin-top: 12px;
}

.about-card-2-content p {
 font-size: 18px;
 margin-top: 12px;
}
}

  /* iphone XR  */
@media (min-width:414px) and (max-width: 896px){
.about-card {
  display: block;
}

.about-card-1 img{
  max-height: 225px;
  min-width: 400px;
  margin-left: -5px;
  
}
.about-card-content h3 {
  font-size: 20px;
  margin-top: 12px;
  margin-left: -8px;
}
.about-card-content p {
  font-size: 18px;
  margin-left: -8px;
}

}

/* iphone 12 pro  */
@media (min-width:390px) and (max-width: 844px){

.about-card-1 img{
  max-height: 235px;
  min-width: 380px;
}
.about-card-1-content h3 {
  font-size: 20px;
  margin-top: 12px;
}
.about-card-1-content p {
 font-size: 18px;
}
}

/* iphone 14 Pro Max  */
@media (min-width:430px) and (max-width: 932px){
  .about-card-1 img{
  min-width: 420px;
  max-height: 250px;
  margin-left: -8px;
}
.about-card-1-content h3 {
  font-size: 20px;
  margin-top: 13px;
  margin-left: -19px;
}
.about-card-1-content p {
 font-size: 18px;
 margin-left: -19px;
}
}

/* pixel */

@media (min-width:412px) and (max-width: 915px){
  .about-card-1 img{
  min-width: 400px;
  max-height: 250px;
  margin-left: -4px;
}
.about-card-1-content h3 {
  font-size: 20px;
  margin-top: 13px;
  margin-left: -19px;
}
.about-card-1-content p {
 font-size: 18px;
 margin-left: -19px;
}
}


 /* Samsung galaxy S8+   */
 /* Samsung Galaxy S20 Ultra */
@media (min-width:360px) and (max-width: 740px){
.about-card-1 img{
  max-height: 230px;
  max-width: 340px;
  align-items: center;
}
.about-card-1-content h3 {
  font-size: 20px;
  margin-top: 12px;
}
.about-card-1-content p {
 font-size: 18px;
 margin-top: 10px;
}
.about-card-2 img{
  max-height: 230px;
  max-width: 340px;
  align-items: center;
}
.about-card-2-content h3 {
  font-size: 20px;
  margin-top: 12px;
}
.about-card-2-content p {
 font-size: 18px;
 margin-top: 10px;
}
.about-cards{
  display: flex;
  flex-wrap: wrap;
}
}

/* 
/* ipad mini  */

@media (min-width:768px) and (max-width: 1024px){

  .about-card-2{
  display: flex;
  flex-wrap: wrap;
   margin-left: 15vw;
}

.about-card-1 img{
  max-height: 250px;
  min-width: 290px;
  position: relative;
  margin-left: 15px;

}
.about-card-1-content h3 {
  font-size: 20px;
  margin-top: 12px;
  margin-left: 1px;
  
}

.about-card-1-content p {
 font-size: 18px;
 margin-top: 10px;
 margin-left: 1px;
}

.about-card-2 img{
  max-height: 250px;
  min-width: 330px;
  position: relative;
  margin-left: -115px;

}
.about-card-2-content h3 {
  font-size: 20px;
  margin-top: 12px;
   margin-left: -115px;
  

}
.about-card-2-content p {
 font-size: 18px;
 margin-top: 10px;
  margin-left: -115px;
}
}
/* Ipad air */

@media (min-width:820px) and (max-width: 1180px){

  .about-card-2{
  display: flex;
  flex-wrap: wrap;
   margin-left: 15vw;
}

.about-card-1 img{
  max-height: 250px;
  min-width: 290px;
  position: relative;
  margin-left: 15px;

}
.about-card-1-content h3 {
  font-size: 20px;
  margin-top: 12px;
  margin-left: 1px;
  
}

.about-card-1-content p {
 font-size: 18px;
 margin-top: 10px;
 margin-left: 1px;
}

.about-card-2 img{
  max-height: 250px;
  min-width: 330px;
  position: relative;
  margin-left: -115px;

}
.about-card-2-content h3 {
  font-size: 20px;
  margin-top: 12px;
   margin-left: -115px;
  

}
.about-card-2-content p {
 font-size: 18px;
 margin-top: 10px;
  margin-left: -115px;
}
}
/* Ipad pro */
@media (min-width:1281px) and (max-width: 1700px){
.nav-container{
  margin-left: 10% !important;
}



  .about-card-2{
  display: flex;
  flex-wrap: wrap;
   margin-left: 15vw;
}

.about-card-1 img{
  max-height: 250px;
  max-width: 400px;
  position: relative;
  margin-left: 50px;

}
.about-card-1-content h3 {
  font-size: 20px;
  margin-top: 12px;
  margin-left: 30px;
  
}


.sustainable-section {
  margin-top: 5% !important;
  font-family: 'Albert Sans', sans-serif;
  max-width: 100vw;
  margin: 0 auto 2.5rem auto;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.sustainable-section h2{
text-align: center;
font-size: 35px !important;
}

.sustainable-header {
  text-align: left;
  margin-bottom: 0.5rem;
}

.sustainable-connect {
  color: #f7c948;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  opacity: 0.8;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.sustainable-title {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin: 0 0 0.7rem 0;
  line-height: 1.25;
  text-align: center;
}

.sustainable-description {
  color: #444;
  font-size: large;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  width: 90vw;
  margin-left: 2.5%;
}

.sustainable-readmore {
  color: #0F7E2C;
  text-decoration: none;
  font-weight: 600;
  margin-left: 0.3em;
  font-size: 0.97em;
  transition: color 0.2s;
}
.sustainable-readmore:hover {
  color: #388e3c;
  text-decoration: underline;
}

#connect{
  font-size: 35px !important;}

.sustainable-images img{
  width: 450px !important;
}

.sustainable-images{
  margin-left: 3%;
}



.about-card-1-content p {
 font-size: 18px;
 margin-top: 10px;
 margin-left: 30px;
}

.about-card-2 img{
  max-height: 250px;
  min-width: 330px;
  position: relative;
  margin-left: -160px;

}
.about-card-2-content h3 {
  font-size: 20px;
  margin-top: 12px;
  margin-left: -160px;
}

.about-card-2-content p {
 font-size: 18px;
 margin-top: 10px;
 margin-left: -160px;
}
}


/* surface pro 7 */
@media (min-width:912px) and (max-width: 1368px){

.about-card-1 img{
  max-height: 230px;
  max-width: 400px;
  margin-top: 11px;
}

.about-card {
  max-width: 410px;
margin-left: 10px;
}
}

/* Surface Duo */
@media (min-width:540px) and (max-width: 720px){
.about-card-1 img{
  max-height: 230px;
  max-width: 540px;
  margin-left: -4px;
}
.about-card-2 img{
  max-height: 230px;
  max-width: 540px;
  margin-left: -4px;
}
.about-card-1-content h3 {
  font-size: 24px;
  margin-top: 12px;
}
.about-card-2-content h3 {
  font-size: 24px;
  margin-top: 12px;
}
.about-card-1-content p {
 font-size: 18px;
 margin-top: 10px;
}
.about-card-2-content p {
 font-size: 18px;
 margin-top: 10px;
}
} 

/* Galaxy ZFold 5 */
@media (min-width:344px) and (max-width: 882px){
.about-card-1 img{
  max-height: 225px;
  min-width: 365px;
  margin-left: -5px;
  
}
.about-card-1-content h3 {
  font-size: 20px;
  margin-top: 12px;
}

.about-card-1-content p {
 font-size: 18px;
 margin-top: 12px;
}
.about-cards{
  display: flex;
  flex-wrap: wrap;
}

.about-card-2 img{
  max-height: 225px;
  max-width: 490px;
  margin-left: -5px;
}
.about-card-2-content h3 {
  font-size: 20px;
  margin-top: 12px;
}

.about-card-2-content p {
 font-size: 18px;
 margin-top: 12px;
}
}
/* Asus Zenbook Fold */
@media (min-width:853px) and (max-width: 1280px){
.about-card-2{
  display: flex;
  flex-wrap: wrap;
   margin-left: 15vw;
}

.about-card-1 img{
  max-height: 250px;
  max-width: 450px;
  position: relative;


}
.about-card-1-content h3 {
  font-size: 20px;
  margin-top: 12px;
}

.about-card-1-content p {
 font-size: 18px;
 margin-top: 10px;
}

.about-card-2 img{
  max-height: 250px;
  min-width: 330px;
  position: relative;

}
.about-card-2-content h3 {
  font-size: 20px;
  margin-top: 12px;

}

.about-card-2-content p {
 font-size: 18px;
 margin-top: 10px;

}
}

.section-placeholder {
  min-height: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}



.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 22px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #007a4d;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


@media (min-width: 901px) {
.about-card-1 img{
  max-height: 6000px !important;
}

}

@media (max-width: 1000px) {
  .nav-links {
    display: none !important;
    flex-direction: column !important;
    position: absolute !;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    gap: 0;
    margin: 0;
    padding: 1rem 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }
  .nav-links.open {
    display: flex !important;
  }
  .hamburger {
    display: flex;
  }
}

@media only screen and (max-width: 1000px) {
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100vw;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 1.5rem 0;
    margin: 0;
    gap: 0;
    align-items: flex-start;
    transition: all 0.3s;
  }
}

@media (max-width: 1000px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100vw;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    padding: 0;
    margin: 0;
    z-index: 1000;
    animation: slideDown 0.25s ease;
  }
  .nav-links.open {
    display: flex !important;
    animation: slideDown 0.25s ease;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-12px);}
    to { opacity: 1; transform: translateY(0);}
  }
  .nav-link {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 1.08rem;
    color: var(--primary-green);
    background: none;
    border: none;
    padding: 1.1rem 2rem;
    margin: 0;
    border-radius: 0;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  .nav-link.active,
  .nav-link:hover {
    background: var(--primary-green);
    color: var(--text-light);
    border-radius: 8px;
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #f1f1f1;
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
}
@media (max-width: 1000px) {
  .nav-links {
    scroll-behavior: smooth;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    padding: 0;
    margin: 0 !important;
    z-index: 2000;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    animation: none;
    transition: none;
  }
  .nav-links.open {
    display: flex !important;
    animation: slideDown 0.25s ease;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-12px);}
    to { opacity: 1; transform: translateY(0);}
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #f1f1f1;
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-link {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 1.08rem;
    color: var(--primary-green);
    background: none;
    border: none;
    padding: 1.1rem 2rem;
    margin: 0;
    border-radius: 0;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  .nav-link.active,
  .nav-link:hover {
    background: var(--primary-green);
    color: var(--text-light);
    border-radius: 8px;
  }
}

.hamburger,
.nav-links,
.nav-link {
  transition: none !important;
  animation: none !important;
}

.download-btn  {
  background-color: #007a4d !important;
  color: #ffffff !important;
  border: none !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
  display: inline-block !important;
  text-align: center !important;
  text-decoration: none !important;
}

.download-btn:hover {
  background-color: #005a33 !important;
  color: #ffffff !important;
}

@media (max-width: 900px) {
  .explore-section .download-button {
    background-color: #007a4d !important;
    color: #ffffff !important;
  }
}
