.feature-section {
  background: transparent;
  text-align: center;
}

.bubble-label {
  background-color: white;
  color: #e18631;
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 9999px;
  position: relative;
  margin-bottom: 16px;
}

.bubble-label::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: white transparent transparent transparent;
}

.feature-heading h2 {
  font-size: 3.2rem;
  line-height:1.6
  color: #333;
  margin-bottom: 10px;
}

.feature-heading p {
  font-size: 1.6rem;
  line-height:1.8
  color: #666;
  margin-bottom: 40px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.feature-card {
  background: transparent;
  box-shadow: none;
  padding: 0 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  max-width: 280px;
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.center-card {
  margin-top: 40px;
}

.feature-image-only img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.feature-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  text-align:left;
}

.feature-cta {
  margin-top: 60px;
}

.feature-cta a {
  display: inline-block;
  background-color: #e18631;
  color: white;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 1.6rem;
  transition: background 0.3s ease;
}

.feature-cta a:hover {
  background-color: #cc552c;
}

@media (max-width: 768px) {
 .feature-heading h2 {
    font-size: 2.4rem;
    line-height:1.4;
    text-align: left;
  }
  .feature-heading p {
    text-align: left;
  }
  .feature-grid {
    flex-direction: column;
    align-items: center;
  }
  .feature-card {
    width: 90%;
  }
}
