.newsletter-block {
  padding: 72px var(--container-padding);
  font-family: var(--font-body);
}

.newsletter-block__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: min(100%, var(--container-max));
  margin: 0 auto;
}

.newsletter-block__copy h2 {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--color-text-primary);
}

.newsletter-block__copy p {
  color: var(--color-text-secondary);
  font-size: 12px;
  line-height: 1.6;
}

.newsletter-block__copy p1 {
  margin: 0 0 24px;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.newsletter-block__form {
  margin-bottom: 16px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter-block__input {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 16px 20px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #f9fafb;
  color: var(--color-text-primary);
  outline: none;
  transition: border-color 0.2s ease;
  flex: 1;
}

.newsletter-block__input::placeholder {
  color: #9ca3af;
}

.newsletter-block__input:focus {
  border-color: var(--color-brand-green);
}

.newsletter-block__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
  background: var(--color-brand-green);
  color: #ffffff;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-block__cta:hover {
  transform: translateY(-1px);
  background: var(--color-brand-green-dark);
}

.newsletter-block__privacy {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text-secondary);
  margin: 0;
}

.newsletter-block__message {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  padding: 8px 0;
  margin: 0;
}

.newsletter-block__message--success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
  padding: 12px 16px;
  border-radius: 6px;
}

.newsletter-block__message--error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  padding: 12px 16px;
  border-radius: 6px;
}

.newsletter-block__message--info {
  background-color: #dbeafe;
  color: #1e40af;
  border: 1px solid #93c5fd;
  padding: 12px 16px;
  border-radius: 6px;
}

.newsletter-block__captcha {
  margin: 0;
}

.newsletter-block__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
  margin-bottom: 6px;
}

.newsletter-block__required {
  color: #dc2626;
}

.newsletter-block__help-text {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-top: 3px;
  display: block;
}

.newsletter-block .contact-form__captcha-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
}

.newsletter-block .contact-form__captcha-image {
  flex-shrink: 0;
}

.newsletter-block .contact-form__captcha-image img {
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #ffffff;
  width: 150px;
  height: 50px;
  object-fit: contain;
}

.newsletter-block .contact-form__captcha-input input[type="text"] {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #f9fafb;
  color: var(--color-text-primary);
  outline: none;
  transition: border-color 0.2s ease;
  height: 50px;
  box-sizing: border-box;
}

.newsletter-block .contact-form__captcha-input input[type="text"]:focus {
  border-color: var(--color-brand-green);
}

.newsletter-block .contact-form__captcha-refresh button {
  background: transparent;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  color: var(--color-text-secondary);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
}

.newsletter-block .contact-form__captcha-refresh button:hover {
  border-color: var(--color-brand-green);
  color: var(--color-brand-green);
}

.newsletter-block__media img {
  width: 100%;
  display: block;
  object-fit: cover;
}

@media (min-width: 960px) {
  .newsletter-block__inner {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }
  .newsletter-block__copy,
  .newsletter-block__media {
    flex: 1 1 0;
  }
}

/* Mobile responsive adjustments */
@media (max-width: 767px) {
  .newsletter-block__copy h2 {
    font-size: 40px;
  }

  .newsletter-block .contact-form__captcha-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin: 2px 0;
  }

  .newsletter-block .contact-form__captcha-input input[type="text"] {
    width: 100%;
    max-width: 200px;
  }
}