:root {
  --text-dark: #111111;
  --text-main: #222222;
  --text-muted: #666666;
  --bg-light: #F9FAFB;
  --primary-accent: #3B82F6;
}

.features-section {
  position: relative;
  padding: 10px 0 80px 0;
  overflow: hidden;
}

.features-section__header {
  margin-bottom: 60px;
}

.features-section__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.features-section__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0;
}

/* Card Styling */
.feature-card {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 25px;
  height: 100%;
  box-shadow: 0 15px 80px rgba(235,235,241, 1);
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-card__icon-wrapper {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__icon {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card__content {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-main);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .features-section__title {
    font-size: 36px;
  }
  
  .feature-card {
    padding: 25px 30px;
  }
}

@media (max-width: 767px) {
  .features-section {
    padding: 60px 0;
  }

  .features-section__header {
    margin-bottom: 40px;
  }

  .features-section__title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .features-section__subtitle {
    font-size: 16px;
  }

  .feature-card {
    padding: 20px;
    border-radius: 20px;
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .feature-card__icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .feature-card__content {
    font-size: 16px;
  }
}