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

/* Body - Coming Soon Style */
.coming-soon-body {
  font-family: Arial, sans-serif;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f2f2f2;
}

/* Header */
.coming-soon-header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.navbar .logo a {
  text-decoration: none;
  font-size: 1.5rem;
  color: #333;
  font-weight: bold;
}

/* Main Section */
.coming-soon-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.announcement-section {
  max-width: 600px;
  text-align: center;
  background: #fff;
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.announcement-section h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.subheading {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #555;
}

.description {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.4;
}

/* Form Styles */
.coming-soon-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.coming-soon-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 10px;
  border: 1px solid #ccc;t
  border-radius: 3px;
}

.coming-soon-form button {
  padding: 10px 20px;
  border: none;
  background: #FFA500;
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
  font-size: 1rem;
}

.coming-soon-form button:hover {
  background: #FF8C00;
}

.form-message {
  margin-top: 10px;
  font-style: italic;
}

/* Footer */
.coming-soon-footer {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-top: 1px solid #ddd;
}