  .about-container {
  width: 100%;
  height: 90vh;
  background-color: #4280ef;
}
.border1 {
  width: 100%;
  height: 100%;
  background-color: #f5fcec;
  border-radius: 100% 0% 100% 0% / 31% 78% 22% 69%;
}
.border2 {
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
  background: #86bf4e;
  border-radius: 100% 0% 100% 0% / 23% 84% 16% 77%;
}
.border3 {
  width: 100%;
  height: 100%;
  background: #f4c14b;
  margin-bottom: 20px;
  border-radius: 100% 0% 100% 0% / 15% 89% 11% 85%;
}
.content {
  width: 65%;
  text-align: center;
  padding: 15vh 0 0 0;
  text-shadow: 1px 4px 8px rgba(113, 179, 69, 0.236);
}
.content #header {
  margin: 10px 0;
  font-size: 40pt;
}
.content p {
  font-size: 35pt;
}
hr {
  margin: 0;
  width: 100%;
}
.findUs h2 {
  margin: 0;
  padding: 20px;
  background: linear-gradient(#def3c1, #8db157);
}

iframe {
  aspect-ratio: 16/9;
  margin-bottom: 20px;
  box-shadow: 0 10px 4px rgba(0, 0, 0, 0.1);
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .about-container .content {
    width: 90%;
    padding: 17vh 0 0 0;
  }
  .border1 {
    border-radius: 100% 0% 100% 0% / 31% 78% 22% 69%;
  }
  .border2 {
    border-radius: 100% 0% 100% 0% / 23% 84% 16% 77%;
  }
  .border3 {
    border-radius: 100% 0% 100% 0% / 15% 89% 11% 85%;
  }
  .content #header {
    font-size: 25pt;
  }

  .content p {
    font-size: 17pt;
  }

  .findUs h2 {
    font-size: 1.5rem;
    padding: 10px;
  }

  iframe {
    aspect-ratio: 4/3;
    width: 100%;
    height: auto;
  }
}

/* Media query for tablet devices */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-container .content {
    width: 80%;
  }
  .border1 {
    border-radius: 100% 0% 100% 0% / 31% 78% 22% 69%;
  }
  .border2 {
    border-radius: 100% 0% 100% 0% / 23% 84% 16% 77%;
  }
  .border3 {
    border-radius: 100% 0% 100% 0% / 15% 89% 11% 85%;
  }
  .content #header {
    font-size: 2.5rem;
  }

  .content p {
    font-size: 1.4rem;
  }

  .findUs h2 {
    font-size: 1.5rem;
    padding: 15px;
  }

  iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
  }
}
