:root {
  --primary-green: #2F4F2F;     /* Deep Green - Primary */
  --accent-green: #3E7A3F;      /* Accent Green - Hover */
  --font-heading: 'Playfair Display', serif;
  --font-ui: 'Raleway', sans-serif;

  --text-dark: #333333;
  --text-medium: #555555;
  --bg-light: #FFF9F2;
  --bg-white: #FFFFFF;
  --shadow-color: rgba(0, 0, 0, 0.08);
}


body {
  font-family: "Poppins", sans-serif;
  background: #f9f9f9;
}



.newsletter {
  background:  #f9f9f9;
  padding: 80px 0;
  position: relative;
}

.newsletter::before,
.newsletter::after {
  content: "";
  position: absolute;
  background: url("floral-left.png") no-repeat; /* Replace with actual floral image URL or base64 */
  width: 100px;
  height: 100px;
  top: 20px;
  left: 20px;
  opacity: 0.5;
}

.newsletter::after {
  background: url("floral-right.png") no-repeat; /* Replace with actual floral image URL or base64 */
  left: auto;
  right: 20px;
  bottom: 20px;
  top: auto;
}

.newsletter-content {
  text-align: center;
  margin-bottom: 40px;
}

.newsletter-content small {
  font-size: 16px;
  color: #333;
  display: block;
  margin-bottom: 10px;
}

.newsletter-content h1,
.newsletter-content h3 {
  font-family: var(--font-heading);
  color: var(--primary-green);
  font-weight: 600;

}

.newsletter-content p,
.newsletter-content small {
  font-family: var(--font-ui);
  color: var(--text-medium);
}


.newsletter-form {
  text-align: center;
}

.newsletter-form .form-inline {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50px;
  overflow: hidden;
}

.newsletter-form .form-control {
  flex: 1;
  background: #fff;
  border: none;
  font-size: 16px;
  height: 50px;
  padding: 0 20px;
  box-shadow: none;
  outline: 0;
  color: #333;
}

.newsletter-form .form-control::placeholder {
  color: #aaa;
}

.newsletter-form .btn-subscribe {
  background: var(--primary-green);
  border: none;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  padding: 0 30px;
  height: 50px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form .btn-subscribe:hover {
  background: var(--accent-green);
}
