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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #f7f9fc;
  padding-top: 200px; /* matches the height of the fixed header */
}

.hero {
  background-color: #4a90e2;
  color: #fff;
  height: 120px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 👈 Left-aligned */
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding-left: 40px; /* 👈 Padding for breathing room */
}

.hero .overlay {
  padding: 0;
}

.hero h1 {
  font-size: 2em;
  margin-bottom: 5px;
}

.hero p {
  font-size: 1em;
  font-style: italic; /* 👈 Italic for visual contrast */
  opacity: 0.9;
}


/* Illustration section */
.illustration {
  text-align: center;
  margin-top: 40px;
}

.intro-image {
  max-width: 350px;
  margin: 0 auto 40px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Intro text */
.intro {
  text-align: center;
  padding: 30px 20px 50px;
  max-width: 800px;
  margin: auto;
}

/* Form section */
.form-section {
  display: flex;
  justify-content: center;
  padding: 30px 20px 60px;
}

form {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}

input, textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

button {
  background-color: #4a90e2;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  width: 100%;
}

button:hover {
  background-color: #357abd;
}

/* Footer */
footer {
  background-color: #f1f1f1;
  text-align: center;
  padding: 25px 15px;
  font-size: 0.95em;
  color: #777;
  margin-top: auto;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #4a90e2;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 500;
}

.footer-links a i {
  margin-right: 6px;
}

.footer-links a:hover {
  text-decoration: underline;
}
