
        
        /* Regular content sections */
        .content-section {
            height: 100%;
            display: flex;
            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;
        }
        
        
        /* Parallax sections */
        .parallax {
            height: 100vh;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            overflow-x: hidden;
            z-index: 1;
            position: relative;
        }
        
        /* Different background images */
        .parallax-1{
          overflow: hidden;
          width: 100vw;
        }

        .parallax-2 {
          display: flex;
          border-radius: 5px;
          justify-content: center;
          gap: 50px;
          overflow: hidden;
          width: 100vw;
        }
        
        
        /* Content styling */
        .parallax-content {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 40px;
            max-width: 800px;

        }
        .parallax-content h1{
              color: #50BDA4;
        }
        .icon-urban{
          width: 1.25em;
          height: 1.25em;
          vertical-align: middle;
          display: inline-block;
          margin: 0 0.25em;
          filter: grayscale(0%);
        }



    .mash-image-mix {
        width: 600px;
        height: 30%;
    }
    .flex-row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .flex-column {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .gns_content_logo {
        max-width: 400px;
        align-self: center;
        margin-top: 80px;
        margin-bottom: 200px;
    }
    .content-left-welcome {
        display: flex;
        flex-direction: column;
        max-width: 500px;

        p {
          text-align: justify;
          line-height: 1.5;

        }
    }
    .content-left-welcome h1 {
        border-bottom: 4px solid #DBA54F;
    }
    .fit-wid {
      text-align: center;
    }
    .what-we-do-title {
      margin-top: 50px;
      margin-bottom: 50px;

      h1 {
        border-bottom: #DBA54F solid 4px;
        color: #062b21;
      }
      
    }
    .what-we-do {
      position: relative;
      display: flex;
      flex-direction: row;
      justify-content: space-evenly;
      align-items: flex-start; /* Align cards to the top */
      margin-top: 20px;
      gap: 20px;
      color: #062b21;
    }

    /* Style each column in the "What We Do" section */
    .what-we-do > div {
        display: flex;
        flex-direction: column;
        max-width: 400px;
    }

    .what-we-do img {
      width: 100%;
      height: 220px; /* A consistent height for all images */
      object-fit: cover; /* Ensures images fill the space without distortion */
      border-radius: 8px;
      margin-bottom: 1rem;
    }

    .what-we-do h2 {
      border-bottom: 4px solid #DBA54F;
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      width: 100%; /* Make border only as wide as the text */
      text-align: center;
    }
    .what-we-do p {
      text-align: justify;
      font-size: .9rem;
      line-height: 1.5;
      margin-bottom: 1rem;
    }
    .section-two {
      display: flex;
      flex-direction: row;
      img {
        max-width: 300px;
        animation: fadeInScale 3s ease forwards;
      }

    }

.find-out-more-btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  width: 190px;
  margin-top: 20px;
  background: white;
  font-family: 'Montserrat', sans-serif;
  color: black;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 10px;
  transition: all 300ms;

}

/* Button link in hover state */
.find-out-more-btn a:hover {
  background: transparent;
  color: #fff;
}


/* Pseudo-element in normal state */
.find-out-more-btn a::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgb(1, 136, 30, 0.1);
  border: solid 3px #fff;
  opacity: 0;
  border-radius: 10px;
  transform: scaleX(1.1) scaleY(1.3);
  transition: all 500ms;
}

/* Pseudo-element in hover state */
.find-out-more-btn a:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* Button link in active state */
.find-out-more-btn a:active {
  transform: scale(.9);
}