.features-section {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
  color: #fff;
  z-index: 1;
}

.features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.features-section .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-card {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 50px;
  color: #65C178;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 22px;
  margin: 10px 0;
  font-weight: 600;
}

.feature-card p {
  font-size: 16px;
  color: #ddd;
}

@media (max-width: 767px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
