.our-ideal-section {
  padding: 80px 0;
  background: #ffffff;
}

.ideal-heading {
  text-align: center;
  margin-bottom: 50px;
}

.ideal-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1d3557;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.ideal-heading h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #e63946;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  border-radius: 10px;
}

.ideal-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  text-align: center;
  height: 100%;
}

.ideal-card:hover {
  transform: translateY(-10px);
}

.ideal-card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.ideal-content {
  padding: 25px 20px;
}

.ideal-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1d3557;
  margin-bottom: 12px;
}

.ideal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
}

@media (max-width: 767px) {
  .ideal-heading h2 {
    font-size: 30px;
  }

  .ideal-card img {
    height: 260px;
  }

  .ideal-content h3 {
    font-size: 22px;
  }
}
