.newsletter-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #011E46;
  padding: 40px 50px;
  border-radius: 12px;
  gap: 30px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px;
  gap: 12px;
  width: 320px;
}


.newsletter-left h2 {
  font-size: 24px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 320px;
}

.newsletter-form {
  display: flex;
  gap: 20px;
}

.newsletter-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  outline: none;
}

.newsletter-form button {
  background: #D52132;
  color: #fff;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #b91b25;
}

.newsletter-message {
  color: #fff;
  margin-top: 15px;
}

.newsletter-credits {
  width: 100%;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-credits a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.newsletter-credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {

  .newsletter-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 30px 20px;
    gap: 25px;
  }

  .newsletter-left h2 {
    font-size: 28px;
    text-align: center;
    max-width: none;
  }

  .newsletter-form {
    width: 100%;
    flex-direction: column;
    background: transparent;
    padding: 0;
    gap: 12px;
  }

  .newsletter-form input {
    width: 100%;
    padding: 16px 18px;
    font-size: 16px;
  }

  .newsletter-form button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }

  .newsletter-credits {
    text-align: center;
    font-size: 12px;
  }
}
