
/* new features section */
.features-section-container {
  background-color: rgb(255 255 255)
}

.features-wrapper {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  text-align: center;
}

@media (min-width: 640px) {
  .features-wrapper {
      padding-bottom: 4rem;
      padding-top: 4rem;
  }
}

@media (min-width: 1024px) {
  .features-wrapper {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
  }
}

.headline {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  line-height: 2.5rem;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: rgb(17 24 39/1);
}

.subheadline {
  color: rgb(107 114 128/1);
}

@media (min-width: 640px) {
  .subheadline {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .subheadline {
    padding-left: 12rem;
    padding-right: 12rem;
  }
}

.row {
  display: flex; 
  flex-direction: row-reverse;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 2rem;
  justify-content: space-between;
}

.col { 
  display: flex; 
  flex: 1 0 auto;
  flex-flow: column; 
  align-items: center;
  gap: 1rem;
}

.image_thing {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.card {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  align-items: center;
  text-align: start;
}


.step-number {
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: .75rem;
  font-size: 1.2rem;
}

.step-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
  gap: .5rem
}

.step-content h3 {
  font-weight: 600;
  font-size: 1.2rem;
}

.step-content p {
  font-size: 0.95rem;
  color: #555;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .step-content {
    max-width: 400px;
  }
}

/* Responsive Design */
@media (min-width: 768px) {
  .image_thing {
    max-width: 400px;
  }
}

@media (min-width: 1024px) {
  .image_thing {
    max-width: 500px;
  }
}

@media (min-width: 1200px) {
    .image_thing {
      max-width: 600px;
  }
}

.cta-btn {
  display: flex;
  max-width: 250px;
  background-color: var(--primary-color);
  color: white;
  font-size: 1.2rem;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
}

.cta-btn:hover {
  background-color: var(--darker-primary-color);
}