.benefits {
  padding: 8rem 2rem;
  background: linear-gradient(to bottom, #ffffff, #fcfaf7);
}

.benefits-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.benefits h2 {
  font-size: 3rem;
  color: #1a3d2e;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.benefits-subtitle {
  font-size: 1.2rem;
  color: #6b7560;
  margin-bottom: 5rem;
  font-weight: 400;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  text-align: left;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(160, 130, 109, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(160, 130, 109, 0.12);
  border-color: rgba(160, 130, 109, 0.3);
}

.benefit-card.highlight {
  background: #fdf8f4;
  border: 1px solid rgba(160, 130, 109, 0.4);
  grid-column: 1 / -1;
  padding: 2.5rem;
}

.benefit-card.highlight .benefit-icon-wrapper {
  background: #1a3d2e;
  color: white;
  padding: 1.2rem;
}

.benefit-card.highlight h3 {
  font-size: 1.6rem;
  color: #1a3d2e;
}

.benefit-icon-wrapper {
  background: #f8f3ef;
  color: #a0826d;
  padding: 1rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
  transform: scale(1.1) rotate(-5deg);
  background: #1a3d2e;
  color: white;
}

.benefit-content h3 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.benefit-content p {
  font-size: 0.95rem;
  color: #6b7560;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .benefits {
    padding: 5rem 1.5rem;
  }

  .benefits h2 {
    font-size: 2.2rem;
  }

  .benefits-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-card.highlight {
    grid-column: span 1;
    padding: 2rem;
  }
}
