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

body {
  font-family: "Futura", "Trebuchet MS", "Avenir Next", "Avenir", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #fafafa;
}

/* ----------------------------- */
/* Header / Navigation Styling   */
/* ----------------------------- */

.site-header {
  height: 80px;
  background: #e8e8e8;
  border-bottom: 2px solid #666;
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand text on the left */
.brand a {
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  color: #111;
}

/* Navigation links on the right */
.main-nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  font-weight: 600;
}


nav a:hover {
  color: #000;
}

main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  
}

main p { margin-bottom: 1em; }

footer {
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
  color: #666;
  font-size: 0.9rem;
}

/* ---------- Hero ---------- */
.hero {
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #444;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.btn:hover {
  background: #333;
}

/* ---------- Form ---------- */
form {
  max-width: 600px;
  margin-top: 30px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin: 12px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

button {
  padding: 12px 22px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #333;
}


/* ---------- FAQ ---------- */
.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  margin-bottom: 8px;
}
