.about-section {
  .about-text {
    padding-left: 0 !important;
  }
}

.about-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 10;

  .section-header {
    margin-bottom: 18px !important;
  }
}

.bullets-shape {
  position: absolute;
  top: -70px;
  left: -180px;
  z-index: -1;
  display: none;
}

.about-content,
.mission-content {
  width: 100%;
}

.about-text,
.mission-text {
  font-weight: 400 !important;
  font-size: 16px;
  line-height: 1.75;
  text-align: justify;
}

.mission-text+.mission-text {
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .bullets-shape {
    display: block;
  }

  .about-content {
    max-width: 1300px;
  }

  .mission-content {
    max-width: 1300px;
  }
}



/* Goals Section */
.goals-section {
  background-color: #F0FAF7;
  padding: 2rem 0;

  .section-header {
    margin-bottom: 18px !important;
  }
}

.goals-text {
  font-weight: 400 !important;
  font-size: 16px;
  line-height: 1.75;
}



/* Trainers Section */
.trainers-section {
  background-color: #F2F8FF;
  padding: 20px 0;

  .trainers-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;

    .section-header {
      margin-bottom: 18px !important;
    }
  }

  .trainers-image {
    width: 100%;

    img {
      width: 100%;
      height: auto;
    }

  }

  .trainers-image .trainers-content {
    width: 100%;
  }

  .trainers-list {
    font-size: 15px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: disc;
    padding-left: 1.25rem;
  }
}



@media (min-width: 1024px) {
  .trainers-section {
    .trainers-container {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }

    .trainers-image {
      max-width: 536px;
    }

    .trainers-content {
      max-width: 415px;
    }
  }

}

/* Coverage Section */
.coverage-section {
  margin-top: 2.5rem;

  .map-wrapper {
    position: relative;
    width: 100%;
  }

  .map-wrapper-content {
    text-align: center;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);

    h2 {
      font-weight: 600;
      font-size: 36px;
      color: #000;
    }

    span {
      color: #3E5EC0;
    }

    p {
      color: #7C7B7B;
    }

    .primary-button {
      max-width: 200px;
    }
  }
}

@media (max-width: 768px) {
  .coverage-section {
    .map-wrapper-content {
      text-align: center;
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      transform: translate(-50%, -50%);

      h2 {
        font-size: 28px;
      }
    }
  }
}

.about-contact-section {
  background-color: #F2F8FF;
  padding-top: 40px;
  padding-bottom: 40px;
}

.about-contact-container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.about-contact-image-wrapper {
  width: 100%;
  max-width: 400px;
}

.about-contact-image {
  width: 100%;
  height: auto;
}

.about-contact-content {
  max-width: 540px;
  text-align: center;
}

.about-contact-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
}

.about-contact-title .highlight {
  color: #3E5EC0;
}

.about-contact-button-wrapper {
  margin-top: 16px;
  height: 3rem;
  margin-top: 32px;
  .primary-button{
      margin-inline:auto
  }
}


@media (min-width: 1024px) {
    .about-contact-button-wrapper {
  .primary-button{
      margin-inline:0;
  }
}

  .about-contact-container {
    flex-direction: row;
  }

  .about-contact-content {
    text-align: left;
  }
}

@media (max-width: 768px) {

  .about-contact-title {
    font-size: 28px;
  }

}



.services .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 2rem 0;
  flex-wrap:wrap;

  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;

    .card {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
                  text-align: center;
            align-items: center;
      gap: 10px;
      .icon{
              width: 80px;
    height: 80px;
    img{
            width: 100%;
    height: 100%;
    }
      }

      .content {
        flex: 1;

        h3 {
          color: #3E5EC0;
          font-size: 18px;
          font-weight: 700;
          margin-bottom: 16px;
        }

        p {
          color: #757575;
          line-height: 24px;
        }
      }
    }
  }
}