#why-rent h2 {
  max-width: 1200px;
}

#why-rent p,
#recommended-for p {
  max-width: 1200px;
  text-align: justify;
}

#infrastructure #card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-top: 20px;
}

#infrastructure .card {
  width: 31%;
  padding: 40px;
  border: 1px solid #0B00CF;
  border-radius: 35px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, border 0.3s;
}

#infrastructure .card:hover {
  box-shadow: 0 0 30px #EE37323F;
  border: 1px solid #EE3732;
}

#infrastructure h3 {
  margin: 20px 0;
  font-size: 30px;
  line-height: 1.3;
  font-weight: bold;
  transition: color 0.3s;
  color: royalblue;
  transition: color 0.3s;
}

#infrastructure .card:hover h3 {
  color: #EE3732;
}

#infrastructure p {
  line-height: 24px;
  font-size: 16px;
}

@media (max-width: 1079px) {
  #infrastructure #card-wrapper {
    justify-content: center;
  }

  #infrastructure .card {
    width: 100%;
    max-width: 500px;
    padding: 24px;
  }
}