@media (max-width: 768px) {
 .gns_splash_logo{
    width: 200px;
  }

        /* Button styling */
  #audio-control,
  #message-control {
    align-self: flex-end;
    padding: 5px 12px;
    width: fit-content;
  }

  .icon-play {
    width: 20px;
    height: 20px;
  }

  .icon-pause {
    width: 20px;
    height: 20px;
  }

  .icon-message {
    width: 20px;
    height: 20px;
  }

  .content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .gns_content_logo {
  width: 200px;
  align-self: center;
  margin-top: 40px;
  margin-bottom: 100px;
}

.mash-image-mix {
  width: 300px;
  height: 30%;
  margin-bottom: 50px;
  justify-self: center;

}

.welcome-content {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.content-left-welcome {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  h1 {
    width: 100%;
    font-size: 1.2rem;
    text-align: center;
  }

  p {
    font-size: .9rem;
    text-align: justify;
    line-height: 1.1;
  }
}

.find-out-more-btn a {
  font-size: 12px;
  width: 150px;
  height: 46px;
  margin-top: 10px;
}
}

.content-section-partners {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: rgb(255, 255, 255, 0.7);
  padding: 50px;
}

.partner-image-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-evenly;
  gap: 15px;
}

.partner-image-container img {
  width: 100%;
  max-width: 200px;
  max-height: 100px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .partner-image-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-image-container img {
    max-width: 150px;
    max-height: 80px;
  }

  .content-section {
    width: 100%;
    height: 100%;
    padding: 30px;
  }

  .what-we-do {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    /* Align cards to the top */
    margin-top: 20px;
    gap: 20px;
    color: #062b21;
  }

  .what-we-do-title {
    width: 100;
    margin-top: 5px;
    margin-bottom: 5px;

    h1 {
      border-bottom: #DBA54F solid 4px;
      color: #062b21;
    }
  }

  .what-we-do img {
    width: 100%;
    height: 150px;
    /* A consistent height for all images */
  }

  .what-we-do h2 {
    font-size: 1rem;
    border-bottom: 4px solid #DBA54F;
    width: 100%;
    /* Make border only as wide as the text */
    text-align: center;
  }

  .what-we-do p {
    text-align: justify;
    font-size: .8rem;
    line-height: 1.1;
  }


  .section-two {
    display: flex;
    flex-direction: row;
    height: 70hv;

    img {
      max-width: 110px;
      animation: fadeInScale 3s ease forwards;
    }

  }


  .content-section-stats {
    height: 100%;
  }

  .stats-container {
    flex-direction: column;
  }

  .vertical-divider {
    display: none;
  }

  .stat-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(30, 107, 90, 0.2);
    width: 100%;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 1rem;
  }
}