/* Import Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #f0f8ff;
  margin: 40px;
  color: #333;
  text-align: center;
}
h1 {
  color: #2c3e50;
  font-size: 2.5em;
  margin-bottom: 20px;
}
h2 {
  color: #34495e;
  margin-top: 20px;
  margin-bottom: 10px;
}
p {
  font-size: 1.2em;
  line-height: 1.6;
}
.coming-soon-section, .contact-section, .subscribe-section {
  background: #eaf2f8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 20px auto;
  max-width: 600px; /* Increased from 500px */
}
.subscribe-section form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.subscribe-section label {
  font-size: 1em;
  margin-right: 6px;
}
.subscribe-section input[type="email"] {
  padding: 8px 12px;
  border: 1px solid #b2bec3;
  border-radius: 4px;
  font-size: 1em;
  width: 170px; /* Reduced from 220px */
  transition: border 0.2s;
}
.subscribe-section input[type="email"]:focus {
  border: 1.5px solid #4a90e2;
  outline: none;
}
.subscribe-section button[type="submit"] {
  background: linear-gradient(90deg, #4a90e2 60%, #50e3c2 100%);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 9px 22px;
  font-size: 1em;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(74,144,226,0.08);
}
.subscribe-section button[type="submit"]:hover {
  background: linear-gradient(90deg, #357ab8 60%, #38bfa7 100%);
}
#email-error {
  display: block;
  margin-top: 8px;
  color: #e74c3c;
  font-size: 0.95em;
}
a {
  color: #3498db;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.site-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #eaf2f8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  font-size: 1em;
  color: #34495e;
  padding: 18px 0;
  text-align: center;
  z-index: 100;
}