.eco_container {
  max-width: 1320px;
  padding-block: 160px;
  margin: 0 auto;
}

.eco_container .header-section {
  margin-bottom: 40px;
}

.eco_container .subtitle {
  font-size: 16px;
  margin-bottom: 0px;
  color: #000;
}

.eco_container .title {
  font-size: 32px;
  color: #0166cc;
  font-weight: bold;
  margin-top: 0;
}

.eco_container .grid-ecosystem {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.eco_container .card {
  background-color: #f7f8fa;
  border-radius: 12px;
  padding: 40px 30px;
  flex: 1;
  min-width: 280px;
  border: unset;
  display: flex;
  flex-direction: column;
  box-shadow: none;
}

.eco_container .card h2 {
  font-size: 1.5rem;
  margin-top: 0;
  color: #000;
  font-weight: bold;
  margin-bottom: 20px;
}

.eco_container .card p {
  font-size: 18px;
  line-height: 1.4;
  color: #000;

  height: 120px;
}

.eco_container .card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex-grow: 1;
}

.eco_container .card ul li {
  font-size: 18px;
  margin-bottom: 0px;
  position: relative;
  padding-left: 15px;
}

.eco_container .card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-dark);
}

.eco_container a {
  background-color: #0166cc;
  color: white;
  text-decoration: none;
  text-transform: capitalize;
  border-radius: 30px;
  text-align: center;
  padding: 13px 28px;
  max-height: 50px;
  font-size: 16px;
  font-weight: bold;
  width: fit-content;
}

.eco_container a:hover {
  background-color: #004fb0;
  color: #fff;
}

@media (max-width: 768px) {
  .eco_container .grid-ecosystem {
    flex-direction: column;
  }
}
