.explore-section {
  padding-bottom: 4rem;
}

.explore-section .container {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 2rem;
}

.explore-section .container .explore-image {
  width: 40%;
}

.explore-section .container .explore-image img {
  width: 100%;
  object-fit: cover;
}

.explore-section .container .explore-text {
  width: 60%;
  padding-top: 4rem;
}

.explore-header h2 {
  margin-bottom: 0.8rem;
  font-size: 2.2rem;
}

.explore-header p {
  max-width: 600px;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  color: grey;
}

.explore-features {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-top: 2rem;
}

.explore-block {
  flex: 1 1 45%;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.explore-block h3 {
  font-size: 1.1rem;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.explore-block p {
  font-size: 0.85rem;
  color: #737373;
  margin-bottom: 15px;
}

.explore-block ul {
  list-style: none;
  color: #444;
}

.explore-block ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.5rem;
}

.explore-block ul li svg {
  height: 1rem;
  fill: gray;
}

@media only screen and (max-width: 900px) {
  /* .explore-section .container .explore-image {
    display: none;
  } */

  .explore-section .container {
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .explore-section .container .explore-image {
    width: 100%;
  }

  .explore-section .container .explore-image img {
    width: 100%;
    object-fit: cover;
  }

  .explore-section .container .explore-text {
    width: 100%;
    padding-top: 4rem;
  }

  .explore-header h2 {
    margin-bottom: 0.8rem;
    font-size: 1.8rem;
  }

  .explore-header p {
    max-width: 600px;
    font-size: 0.9rem;
    color: grey;
  }

  .explore-features {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-top: 2rem;
  }

  .explore-block {
    flex: 1 1 45%;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .explore-block h3 {
    font-size: 1.1rem;
    color: #579e95;
    margin-bottom: 16px;
  }

  .explore-block p {
    font-size: 0.85rem;
    color: #737373;
    margin-bottom: 15px;
  }

  .explore-block ul {
    list-style: none;
    color: #444;
  }

  .explore-block ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.5rem;
  }

  .explore-block ul li svg {
    height: 1rem;
    fill: gray;
  }
}

@media only screen and (max-width: 560px) {
}
