.cta-section {
  background-color: rgba(34, 44, 65, 0.65);
  background-image: url("../images/bg_cta.png");

}
.cta-section a:hover {
  text-decoration: none;
}

.cta-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 48px 20px;
}

.cta-box {
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-title {
  font-size: 26px;
  font-weight: bold;
  margin: 0;
}

.cta-description {
  margin:0;
  line-height: 1.75;
  font-size: 16px;
}

.cta-button {
  display: flex;
  width: 328px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  height: 40px;
}

.cta-button-dark {
  background-color: #222C41;
  color: white;
}

.cta-button-light {
  background-color: white;
  color: #222C41;
}

.cta-button-text {
  width: 100%;
}

.arrow-icon {
  width: 20px;
  height: 20px;
}

.cta-bar {
  width: 1px;
  height: 203px;
  background-color: #222C41;
}

@media (max-width: 1099px) {
  .cta-section {
      height: auto;
      background-size: cover;
      background-position-x: -432px;
  }
  .cta-container {
    height: auto;
      flex-direction: column;
      gap: 40px;
  }

  .cta-description {
    font-size: 14px;
  }

  .cta-button {
    width: 300px;
    font-size: 16px;
  }

  .cta-button img {
    width: 32px;
  }

  .cta-bar {
    width: 100%;
    height: 1px;
    background-color: #222C41;
  }
}