.features-2 {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 5rem;
}

.feature-2 {
  background-color: rgba(6, 44, 73, 0.8);
  padding: 1rem;
  border-radius: 60px;
  width: 30%;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-2:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.feature-2 img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.feature-2 h2 {
  font-size: 2rem;
  margin-bottom: 0rem;
}

.feature-2 p {
  font-size: 1rem;
  color: #d1e8f2;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.feature-2 a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #00aaff;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 1rem;
}

.feature-2 a:hover {
  background-color: #008ecc;
}
@media (max-width: 919px) {
  .features-2 {
    gap: 2rem;
    padding: 3rem 1.5rem;
  }

  .feature-2 {
    width: 45%;
    padding: 1rem;
  }

  .feature-2 h2 {
    font-size: 1.5rem;
  }

  .feature-2 img {
    height: 130px;
  }

  .feature-2 p {
    font-size: 0.95rem;
  }

  .feature-2 a {
    font-size: 0.9rem;
    padding: 0.4rem 0.9rem;
  }
}

@media (max-width: 600px) {
  .features-2 {
    padding: 2rem 1rem;
    gap: 1rem;
  }

  .feature-2 {
    width: 100%;
  }

  .feature-2 h2 {
    font-size: 1.3rem;
  }

  .feature-2 img {
    height: 110px;
  }

  .feature-2 p {
    font-size: 0.9rem;
  }

  .feature-2 a {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
}
