.benefits-section {
  padding: 60px 20px;
  background: linear-gradient(120deg, #f3f8ff, #e6f1ff);
  text-align: center;
}

.section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-in-out;
  display: inline-flex;
  align-items: center;
}

.google-ads-highlight {
  background: linear-gradient(90deg, #4285f4 50%, #ea4335 50%);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
  margin-left: 5px;
  display: inline-block;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.benefit-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease-in-out;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.benefit-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  animation: popIn 0.5s ease-in-out;
}

.benefit-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #08ccfc;
  margin-bottom: 10px;
}

.benefit-description {
  font-size: 1em;
  color: #666;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
