.cta-section {
  background-color: var(--color3);
  padding: 2vw 2vw;
  margin: 0 2vw;
  border-radius: 0.3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 66vw;
  margin: auto;
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  width: 100%;
  max-width: 90vw;
  text-align: center;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5vw;
  width: 100%;
}

.cta-title {
  font-family: "PloniMLv2AAA-Regular", sans-serif;
  font-size: clamp(24px, 1.67vw, 32px);
  font-weight: 500;
  line-height: 1.1;
  color: white;
  margin: 0;
}

.cta-description {
  font-family: "PloniMaccabiMLv2AAA-Regular", sans-serif;
  font-size: clamp(16px, 0.94vw, 18px);
  font-weight: 400;
  line-height: 1.4;
  color: white;
  margin: 0;
}

.cta-button {
  background-color: var(--primary-pink-2);
  border: none;
  border-radius: 3.125vw;
  padding: 0.8vw 1.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65vw;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 3vw;
}

.cta-button:hover {
  background-color: #d1a1bb;
  transform: translateY(-0.1vw);
  box-shadow: 0 0.3vw 1vw rgba(0, 0, 0, 0.15);
}

.cta-button:active {
  transform: translateY(0);
}

.button-arrow {
  width: 0.5vw;
  height: 0.8vw;
  min-width: 8px;
  min-height: 12px;
  flex-shrink: 0;
}

.cta-button span {
  font-family: "PloniMaccabiMLv2AAA-Bold", sans-serif;
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: bold;
  line-height: 1.4;
  color: var(--color3);
  white-space: nowrap;
  text-align: right;
}

@media (max-width: 768px) {
  .cta-section {
    max-width: 100vw;
  }
  .cta-section {
    max-width: 100vw;
    padding: 13vw 4vw;
  }
  .cta-title {
    font-family: "PloniMLv2AAA-Regular", sans-serif;
    font-size: clamp(32px, 1.67vw, 32px);
    font-weight: 500;
    line-height: 1.1;
    color: white;
    margin: 0;
  }
  .cta-container {
    gap: 4vw;
  }
  .cta-button {
    border-radius: 7.125vw;
    padding: 4.2vw 7.5vw;
    width: 48vw;
  }
  .cta-button span {
    font-size: clamp(18px, 0.94vw, 18px);
  }
  .cta-description {
    font-size: clamp(18px, 0.94vw, 18px);

    line-height: 2.4;

    margin: 0;
  }
}
