/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif; /* Clean sans-serif font */
  background-color: #F9E79F; /* Light Yellow - Background */
  color: #34495E; /* Dark Grey - Main Text */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  max-width: 600px;
}

/* Header Section */
.header {
  margin-bottom: 40px;
}

.logo {
  font-family: 'Playfair Display', serif; /* Elegant serif font for logo */
  font-size: clamp(2rem, 5vw, 3rem); /* Scalable typography */
  color: #7D6608; /* Dark Yellow - Logo */
}

.tagline {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #228B22; /* Forest Green - Tagline */
}
}

/* Main Content */
.description {
  margin-bottom: 20px;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.email-form {
  display: flex;
  flex-direction: column;
}

.email-form input {
  padding: 10px;
  margin-bottom: 10px;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.email-form button {
  padding: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #FFFFFF; /* White - Button Text */
  background-color: #B7950B; /* Yellow Ochre - Button Background */
  border: none;
}

.email-form button:hover {
background.
