#aboutUsContent{
  margin-right: 15vw;
  margin-left: 15vw;
}

h1, h2, h3 {
  color: #1a1a1a;
}

h1 {
  font-size: 2.5rem;
  margin-top: 4vh;
  text-align: center;
  border-bottom: 2px solid var(--light-green);
  padding-bottom: 1vh;
}

h2 {
  margin-top: 4vh;
  margin-bottom: 1vh;
  font-size: 1.8rem;
  color: #2d2d2d;
  border-left: 4px solid var(--light-green);
  padding-left: 1vw;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5vh;
  color: #333;
}

p {
  font-size: 1rem;
  margin: 1vh 0 2vh;
  color: #444;
}


ul.list {
  list-style-type: none;
  padding-left: 2vw;
  margin-bottom: 3vh;
}

ul.list li {
  position: relative;
  margin-bottom: 1vh;
  padding-left: 1.5em;
  font-size: 1rem;
  color: #444;
}

.list li::before{
      content: "";
      position: absolute;
      left: 0;
      top: 0.3vh;
      width: 1em;
      height: 1em;
      background-image: url("/images/favicon16x16.png");
      background-size: contain;
      background-repeat: no-repeat;
}

#bottom{
  margin-top: 10vh;
  display: flex;
  width: 100vw;
  height: 30vh;
  background-color: var(--light-gray);
}

#top-image-container {
  position: relative;
  width: 100vw;
  height: 80vh;
  overflow: hidden;
}

#top-image-container #big-image {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  display: block;
}

#top-image-container #text-box {
  position: absolute;
  bottom: 10vh;
  left: 15vw;
  width: 50vw;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  padding: 1.5em;
  border-radius: 8px;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

#top-image-container #bold-text {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 0.3em;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

#top-image-container #motto-text {
  font-size: 1.3em;
  font-weight: normal;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.card {
  max-width: 700px;
  height: auto;
  padding: 2vh 3vh;
  margin: 3vh auto 1vh 0;
  background: linear-gradient(to right, #e0e0e0, #f5f5f5);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card h3 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #2c3e50;
}

.card p {
  margin: 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  justify-content: left;
}

#footer{
  margin-top: 3vh;
}

@media (max-width: 768px) {
  #top-image-container #text-box {
      width: 80vw;
      left: 10vw;
      right: 10vw;
      top: 20vh;
      bottom: auto;
      /* padding: 5em; */
      font-size: 0.95em;
      text-align: center;
    }

    #top-image-container {
    height: 60vh;
  }

  #top-image-container #big-image {
    height: 60vh;
  }

  #green-spacer{
    display:none;
  }

  .carousel-wrapper{
    display: none;
  }

  .gap{
    display: none;
  }
}
