.cta-banner {
  background-color: #1a1a1a;
}

.cta-banner__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.cta-banner__heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.3;
}

.cta-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 3rem;
  font-size: 1.15rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 200px;
}

.cta-banner__button--primary {
  background-color: #ffffff;
  color: #1a1a1a;
  border: 1px solid #ffffff;
}

.cta-banner__button--primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.cta-banner__button--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.cta-banner__button--secondary:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

@media screen and (max-width: 749px) {
  .cta-banner__buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-banner__button {
    width: 100%;
    min-width: unset;
  }
}

