.features-section {
  background-color: #000;
  padding: 50px 20px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.learn-more-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.learn-more-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 50px;
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.learn-more-button:hover {
  background-color: #555;
  color: #fff;
}

.arrow-icon {
  margin-left: 10px;
  transition: transform 0.3s;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.learn-more-button:hover .arrow-icon {
  transform: translateX(5px);
}

.feature-cards-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-card {
  background-color: #282828;
  border-radius: 30px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.feature-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.feature-text {
  padding: 20px;
  color: #fff;
  text-align: left;
}

.feature-text h3 {
  margin: 10px 0;
  font-size: 1.2em;
}

.feature-text p {
  margin: 0 0 20px;
  font-size: 1em;
  line-height: 1.5em;
  color: #b0b0b0;
}

@media (max-width: 768px) {
  .feature-cards-container {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    width: 100%;
    max-width: 400px;
  }

  .feature-text {
    padding: 15px;
  }

  .feature-text h3 {
    font-size: 1.1em;
  }

  .feature-text p {
    font-size: 0.9em;
  }
}
