
/* Newsletter Section Enhanced */
.newsletter {
  padding: 25px 0;
  position: relative;
}

.newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="newsletter-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(44,85,48,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23newsletter-pattern)"/></svg>');
}

.newsletter-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 15px  10px 30px 10px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(44, 85, 48, 0.1);
  position: relative;
  z-index: 2;
}

.newsletter h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--text-color);
  /* margin-bottom: 24px; */
  font-weight: 700;
}

.newsletter p {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 50px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 20px;
  max-width: 550px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 280px;
  padding: 10px 12px;
  border: 2px solid rgba(44, 85, 48, 0.2);
  border-radius: 6px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #4a7c59;
  box-shadow: 0 0 0 4px rgba(74, 124, 89, 0.1);
  background: white;
}

.newsletter-form button {
  padding: 10px 20px;
  /* background: linear-gradient(135deg, #4a7c59, #6ba368); */
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(74, 124, 89, 0.3);
}

.newsletter-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(74, 124, 89, 0.4);
  /* background: linear-gradient(135deg, #6ba368, #4a7c59); */
}
