 /* 💥💥💥ABOUT hero💥💥💥 */
 .about-container {
    /* max-width: 1200px; */
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    /* padding-inline: 1.25rem; */
    padding-top: 8rem;
    padding-bottom: 4rem;
    background-color: #706fab;
    color: white;
  }

  @media (min-width: 768px) {
    .about-container {
      flex-direction: row;
      align-items: flex-start;
      padding-top: 11rem;
      padding-inline: 2rem;
    }
  }
  @media (min-width: 1020px) {
    .about-container {
      padding-inline: 11rem;
    }
  }

  /* Text Section */
  .text-section {
    flex: 1;
    text-align: center;
  }
  /* ! flex flex-col items-center mb-16 */

  @media (min-width: 768px) {
    .text-section {
      text-align: left;
      padding-right: 2rem;
    }
  }

  .about-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
  }

  @media (min-width: 768px) {
    .about-title {
      font-size: 4rem;
    }
  }

  .highlight {
    position: relative;
    display: inline-block;
    padding: 0 0.25rem;
    font-weight: 600;
  }

  .highlight::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    right: 0;
    height: 0.5rem;
    width: 60%;
    background-color: #16a34a;
    opacity: 0.4;
    transform: translateX(3.5rem) translateY(-0.75rem);
    z-index: -1;
  }

  .description {
    font-size: 1rem;
    line-height: 1.75rem;
  }

  @media (min-width: 768px) {
    .description {
      font-size: 1.125rem;
      line-height: 2rem;
    }
  }

  /* Image Section */
  .image-section {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .about-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  /* The rest */
  /* Mission and co */
  .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px auto;
    max-width: 1200px;
    padding-inline: 20px;
  }

  /* Card Grid */
  .card-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  @media (min-width: 768px) {
    .card-container {
      flex-direction: row;
      gap: 12px;
    }
  }

  @media (min-width: 1024px) {
    .card-container {
      gap: 20px;
    }
  }

  /* Card */
  .card {
    background-color: #7177a9;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* text-align: center; */
    color: white;
    /* border-radius: 10px; */
    width: 100%;
  }

  /* Icon Circle */
  .icon-container {
    margin-top: -60px;
    margin-bottom: 20px;
    height: 64px;
    width: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #bc99c3;
  }

  /* Title */
  .card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  /* Description */
  .card-desc {
    font-size: 16px;
  }
  /*  */
  /*  */
  /*  */
  .contact-container {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 2rem;
    padding-left: 16px;
    padding-right: 16px;
  }

  .map-container {
    flex: 1 1 0%;
    width: 100%;
    flex-shrink: 0;
  }

  .map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 10px; */
  }

  .contact-info {
    background-color: #bc99c3;
    padding: 16px;
    /* border-radius: 10px; */
    display: flex;
    flex-direction: column;
    flex: 1 1 0%;
    justify-content: center;
    /* text-align: center; */
    width: 100%;
    color: white;
  }

  .title {
    font-size: 24px;
    font-weight: bold;
  }

  .gradient-image {
    margin-top: 10px;
    width: 100px;
  }

  .contact-details {
    margin-top: 15px;
  }

  .info {
    display: flex;
    align-items: center;
    gap: 10px;
    /* justify-content: center; */
    margin-top: 10px;
  }

  .social-icons {
    display: flex;
    /* justify-content: center; */
    gap: 15px;
    margin-top: 20px;
  }

  /* Responsive */
  @media (min-width: 768px) {
    .contact-container {
      flex-direction: row;
      /* width: 100vw; */
    }

    .contact-info {
      text-align: left;
    }

    .info {
      justify-content: flex-start;
    }

    .social-icons {
      justify-content: flex-start;
    }
  }