.hero-parser-cta {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin: 0;
  flex-wrap: wrap;
}

.cta-card {
  flex: 1 1 300px;
  border-radius: 12px;
  text-align: center;
  padding: 30px;
  color: #fff;
}

.cta-left {
  background-color: #041637;
}

.cta-right {
  background-color: rgb(255, 138, 67);
}

.cta-heading {
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: 'Outfit', sans-serif;
  color: white;
  font-size: 2.5rem;
}

.cta-button {
  display: inline-block;
  background-color: #fff;
  color: #3b3b3b;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  padding: 1rem;
}
.cta-left .cta-button {
  color: #041637;
}

.cta-right .cta-button {
  color: rgb(255, 138, 67);
}

.cta-button:hover {
  background-color: #f0f0f0;
}
