/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FFFFFF;
  padding: 0.9375rem;
  overflow-x: hidden;
  font-size: 16px;
}

.emoji-fallback {
  display: inline-block;
  background: url('superhero.png') no-repeat center;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
  line-height: 1;
  font-size: inherit;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@supports (font-family: 'Noto Color Emoji') {
  .emoji-fallback {
    background: none;
    width: auto;
    height: auto;
  }
}

.emoji-fallback::before {
  content: attr(data-emoji);
}

.emoji-fallback.no-emoji {
  background-color: #f8f9fa;
  border-radius: 0.25rem;
  padding: 0.125rem 0.25rem;
  font-size: 0.9em;
  color: #666;
}

input, button, textarea, select {
  font-family: inherit;
}

.container {
  width: 90%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 1.25rem;
}

/* Header styles */
.header {
  background: #FFFFFF;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

@media (min-width: 768px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
}

.logo {
  display: flex;
  align-items: center;
}

.logo h1 {
  font-family: 'Bubblegum Sans', sans-serif;
  font-size: 24px;
  color: #FF5733;
  margin: 0;
}

.tagline {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  margin-left: 10px;
}

#nav-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  align-items: center;
  padding: 10px;
}

#nav-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

#nav-menu a:hover {
  color: #FF5733;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

@media (min-width: 768px) {
  .header {
    padding: 0.9375rem 1.875rem;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .tagline {
    font-size: 0.875rem;
    margin-left: 0.625rem;
  }

  .hamburger {
    display: none;
  }

  #nav-menu {
    position: static;
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
    width: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    gap: 1.875rem;
  }

  #nav-menu.active {
    display: flex;
  }

  #nav-menu a {
    padding: 0.625rem 0.9375rem;
    font-size: 0.875rem;
    width: 100%;
    text-align: left;
  }

  /* Hero section adjustments */
  .hero {
    padding: 2.5rem 0.625rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 1rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .emoji-box .emoji {
    font-size: 1.875rem;
  }

  .emoji-box small {
    font-size: 0.75rem;
  }

  .hero-form {
    width: 100%;
    padding: 0 15px;
  }

  .hero-form input {
    max-width: 90%;
    font-size: 14px;
    padding: 12px;
  }

  .hero-form button {
    padding: 10px 30px;
    font-size: 14px;
  }

  .form-group {
    flex-direction: column;
    gap: 10px;
  }

}

/* Hero section */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(180deg, #FFF3E0 0%, #E6F0FA 100%);
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 0.8s ease-out;
}

.hero-title {
  font-family: 'Bubblegum Sans', sans-serif;
  font-size: 28px;
  color: #333;
  margin: 0 0 15px;
  line-height: 1.3;
  animation: slideUp 0.6s ease-out;
  text-align: center;
  letter-spacing: -0.02em;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 48px;
    margin: 0 0 20px;
    line-height: 1.2;
  }
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #666;
  margin: 0 0 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.emoji-comparison {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.emoji-box {
  text-align: center;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.emoji-box:hover {
  transform: scale(1.1);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.emoji-bounce {
  display: inline-block;
  animation: bounce 1s ease-in-out infinite;
}

.emoji-sparkle {
  display: inline-block;
  animation: fadeIn 1s ease-in-out infinite;
}

.emoji-box .emoji {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.3125rem;
}

.emoji-sparkle {
  animation: sparkle 1.5s infinite;
}

.emoji-bounce {
  animation: bounce 1s ease infinite;
}

.emoji-spin {
  animation: spin 2s infinite linear;
}

@keyframes sparkle {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes bounce {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.emoji-box small {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.emoji-box:first-child small {
  color: #FF5733;
  background: rgba(255, 87, 51, 0.1);
}

.emoji-box:last-child small {
  color: #28A745;
  background: rgba(40, 167, 69, 0.1);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.hero-form {
  max-width: 500px;
  margin: 30px auto;
  position: relative;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 auto 20px;
  max-width: 500px;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .form-group {
    flex-direction: row;
    max-width: 800px;
    padding: 0;
  }
}

.input-wrapper {
  position: relative;
  margin-bottom: 25px;
}

.hero-form input {
  font-size: 14px;
  padding: 10px;
  border: 2px solid #CCC;
  border-radius: 8px;
  width: 90%;
  max-width: 300px;
  outline: none;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .hero-form input {
    padding: 12px 15px;
    width: 250px;
  }
}

.hero-form input:focus {
  border-color: #FF5733;
  box-shadow: 0 0 0 3px rgba(255, 87, 51, 0.2);
}

.error-message {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 12px;
  color: #FF4D4D;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.error-message.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-form input:focus {
  border-color: #FF5733;
  box-shadow: 0 0 0 3px rgba(255, 87, 51, 0.2);
  outline: none;
}

.hero-form .error-message {
  position: absolute;
  bottom: -20px;
  left: 0;
  color: #FF4D4D;
  font-size: 12px;
  display: none;
}

.hero-form input.error {
  border-color: #FF4D4D;
}

.hero-form .submit-button {
  background: #FF5733;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-form .submit-button:hover {
  background: #ff4719;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 87, 51, 0.2);
}

.form-group {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.hero-form input {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  padding: 15px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.hero-form input:focus {
  border-color: #FF5733;
  box-shadow: 0 0 0 3px rgba(255, 87, 51, 0.2);
  transform: translateY(-2px);
}

.submit-button {
  font-size: 16px;
  color: #FFFFFF;
  background: #FF5733;
  padding: 12px 40px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-button:hover {
  background: #ff4719;
}

.spots-left {
  font-size: 14px;
  color: #FF4D4D;
}

.hero-form button {
  font-size: 14px;
  color: #FFFFFF;
  background: #FF5733;
  padding: 12px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  width: 90%;
  max-width: 300px;
}

@media (min-width: 768px) {
  .hero-form button {
    font-size: 16px;
    padding: 12px 40px;
    width: auto;
  }
}

.hero-form button:hover, .hero-form button.active {
  background: #ff4719;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 8px rgba(255, 87, 51, 0.2);
}

.hero-form button:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 4px rgba(255, 87, 51, 0.1);
  transition: all 0.1s ease;
}

.hero-form button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.success-message {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.5s ease-out;
}

.success-icon {
  color: #4CAF50;
  font-size: 48px;
  margin-bottom: 20px;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.spots-left {
  font-size: 14px;
  color: #FF4D4D;
}

/* Hero CTA section */
.hero-cta {
  padding: 60px 20px;
  text-align: center;
  background: #FFF3E0;
}

.hero-cta .container {
  max-width: 800px;
}

.hero-cta h2 {
  font-family: 'Bubblegum Sans', sans-serif;
  font-size: 32px;
  color: #333;
  margin: 0 0 20px;
}

.hero-cta p {
  font-size: 18px;
  color: #666;
  margin: 0 0 40px;
}

.hero-cta .cta-button {
  display: inline-block;
  font-size: 16px;
  color: #FFFFFF;
  background: #FF5733;
  padding: 12px 40px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.hero-cta .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 87, 51, 0.2);
  background: #ff4719;
}

.hero-cta .cta-button.glow {
  animation: button-glow 2s infinite;
}

@keyframes button-glow {
  0% {
    box-shadow: 0 0 5px #FF5733;
  }
  50% {
    box-shadow: 0 0 20px #FF5733;
  }
  100% {
    box-shadow: 0 0 5px #FF5733;
  }
}

/* Problem Statement section */
.intro-section {
  padding: 60px 20px;
  text-align: center;
  background: #F6F6F6;
}

.intro-section h2 {
  font-family: 'Bubblegum Sans', sans-serif;
  font-size: 32px;
  color: #333;
  margin: 0 0 20px;
}

.intro-section p {
  font-size: 18px;
  color: #666;
  margin: 0 auto 20px;
  max-width: 600px;
}

.grohal-logo {
  width: 100px;
  height: 100px;
  background: #FF5733;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 87, 51, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 87, 51, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 87, 51, 0);
  }
}

.problem-statement {
  padding: 60px 20px;
  text-align: center;
  background: #FFFFFF;
}

.problem-statement h2 {
  font-family: 'Bubblegum Sans', sans-serif;
  font-size: 32px;
  color: #333;
  margin: 0 0 20px;
}

.problem-statement p {
  font-size: 18px;
  color: #666;
  margin: 0 auto;
  max-width: 600px;
}

.problem-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.problem-card {
  flex: 1 1 300px;
  max-width: 400px;
  background: #F8FBFF;
  border-radius: 15px;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-emoji {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
}

.problem-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .problem-cards {
    grid-template-columns: 1fr;
  }
  
  .intro-section {
  padding: 60px 20px;
  text-align: center;
  background: #F6F6F6;
}

.intro-section h2 {
  font-family: 'Bubblegum Sans', sans-serif;
  font-size: 32px;
  color: #333;
  margin: 0 0 20px;
}

.intro-section p {
  font-size: 18px;
  color: #666;
  margin: 0 auto 20px;
  max-width: 600px;
}

.grohal-logo {
  width: 100px;
  height: 100px;
  background: #FF5733;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 87, 51, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 87, 51, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 87, 51, 0);
  }
}

.problem-statement {
    padding: 40px 20px;
  }
  
  .problem-statement h2 {
    font-size: 28px;
  }
}

/* Features section */
.features {
  padding: 80px 0;
  background: #FFFFFF;
}

.features h2 {
  text-align: center;
  margin-bottom: 60px;
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  padding: 30px;
  background: #F8FBFF;
  border-radius: 15px;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.emoji {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
}

/* How it works section */
.how-it-works {
  padding: 80px 0;
  background: #F8FBFF;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 60px;
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step {
  text-align: center;
  padding: 30px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #007BFF;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: bold;
}

/* Testimonials section */
.testimonials {
  padding: 60px 20px;
  background: #E6F0FA;
  text-align: center;
}

.testimonials h2 {
  font-family: 'Bubblegum Sans', sans-serif;
  font-size: 32px;
  color: #333;
  margin: 0 0 40px;
}

.testimonial-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.testimonial-text {
  font-size: 16px;
  color: #666;
  margin: 0 0 10px;
  font-family: 'Inter', sans-serif;
}

.testimonial-author {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

/* CTA section */
.cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #007BFF 0%, #00C2FF 100%);
  color: #FFFFFF;
}

.cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 40px;
  font-size: 20px;
}

/* Footer */
footer {
  padding: 60px 0 30px;
  background: #333;
  color: #FFFFFF;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo h2 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  font-size: 14px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: #007BFF;
  transform: translateY(-2px);
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #007BFF;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Button styles */
.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #007BFF;
  color: #FFFFFF;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.cta-button:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.glow {
  animation: glow 2s infinite;
}

@keyframes glow {
  0% { box-shadow: 0 0 0 rgba(0,123,255,0); }
  50% { box-shadow: 0 0 20px rgba(0,123,255,0.4); }
  100% { box-shadow: 0 0 0 rgba(0,123,255,0); }
}

/* Mobile (default styles above) */

/* Tablet and up */
@media (min-width: 768px) {
  .container {
    width: 80%;
  }

  nav {
    flex-direction: row;
    justify-content: space-between;
  }

  h1, form {
    text-align: center;
    margin: 0 auto;
  }

  form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    gap: 15px;
    padding: 0 15px;
  }

  @media (min-width: 768px) {
    flex-direction: row;
    max-width: 800px;
    padding: 0;
  }
}

  .testimonial-grid {
    gap: 20px;
  }

  .testimonial-card {
    width: 45%;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  h1 {
    font-size: 48px;
  }

  .card {
    max-width: 33%;
  }

  .feature-grid {
    gap: 30px;
  }

  .feature-card {
    width: 30%;
  }

  .testimonial-grid {
    gap: 30px;
  }

  .testimonial-card {
    width: 30%;
  }

  section {
    padding: 80px 30px;
  }

  section h2 {
    font-size: 36px;
  }

  section p {
    font-size: 20px;
    max-width: 70%;
  }

    max-width: 300px;
  }

  /* CTA section specific */
  .cta {
    padding: 40px 10px;
  }

  .cta h2 {
    font-size: 24px;
  }

  .cta p {
    font-size: 16px;
  }

  /* Footer adjustments */
  footer {
    padding: 30px 15px;
  }

  .footer-links a {
    font-size: 12px;
    margin: 0 5px;
  }

  .footer-bottom {
    font-size: 12px;
  }
  <script>
  document.getElementById("waitlist-form").addEventListener("submit", function(e) {
    e.preventDefault();
  
    // Reset error messages
    document.getElementById("name-error").style.display = "none";
    document.getElementById("email-error").style.display = "none";
  
    // Get form values
    var name = document.getElementById("name").value.trim();
    var email = document.getElementById("email").value.trim();
    var emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
  
    // Validate inputs
    var isValid = true;
    if (!name) {
      document.getElementById("name-error").style.display = "block";
      isValid = false;
    }
    if (!email || !emailRegex.test(email)) {
      document.getElementById("email-error").style.display = "block";
      isValid = false;
    }
  
    if (!isValid) return;
  
    // Submit to Google Sheets
    var url = "YOUR_GOOGLE_APPS_SCRIPT_URL"; // Ensure this is updated
    fetch(url, {
      method: "POST",
      mode: "no-cors",
      headers: {
        "Content-Type": "application/x-www-form-urlencoded",
      },
      body: `name=${encodeURIComponent(name)}&email=${encodeURIComponent(email)}`,
    })
    .then(() => {
      alert("Thank you for joining the waitlist! 🎉");
      document.getElementById("name").value = "";
      document.getElementById("email").value = "";
    })
    .catch(error => {
      console.error("Error:", error);
      alert("Oops, something went wrong. Please try again! 😓");
    });
  });
  </script>
  #waitlist-form input:focus {
    box-shadow: 0 0 5px rgba(255, 87, 51, 0.3);
    outline: none;
    border-color: #FF5733;
    transition: all 0.3s ease;
  }

  /* Form and input adjustments */
  #waitlist-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .input-wrapper {
    position: relative;
    width: 100%;
  }

  #waitlist-form input {
    width: 100%;

    max-width: 20rem;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .error-message {
    color: #FF4D4D;
    font-size: 12px;
    position: absolute;
    bottom: -20px;
    left: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .error-message.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 768px) {
    #waitlist-form {
      padding: 0 15px;
    }

    #waitlist-form input {
      font-size: 14px;
      padding: 10px 12px;
    }

    .submit-button {
      width: 100%;
      margin-top: 10px;
    }
  }

  git add index.html
  git commit -m "Fix input box size and improve form validation"
  git push origin main  #waitlist-form input::placeholder {
    color: #999;
    font-style: italic;
  }

  #waitlist-form button {
    padding: 8px 30px;
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  #waitlist-form button:hover {
    transform: scale(1.05);
  }

  /* Footer content adjustments */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-links {
    justify-content: center;
  }
}