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

/* ===== GENERAL PAGE STYLE ===== */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f7fb;
  color: #222;
  line-height: 1.5;
  padding: 20px;
  text-align: center;
}

/* ===== HEADER IMAGE ===== */
header img,
.main-image,
.hero-image {
  width: 100%;
  max-width: 650px;
  border-radius: 10px;
  margin: 20px auto;
  display: block;
}

/* ===== TITLE TEXT ===== */
h1, h2, h3 {
  margin-bottom: 15px;
  font-weight: 600;
}

h1 {
  font-size: 2rem;
  color: #3a3a8f;
}

h2 {
  font-size: 1.6rem;
  color: #444;
}

/* ===== PARAGRAPHS ===== */
p {
  max-width: 700px;
  margin: 10px auto;
  font-size: 1.1rem;
}

/* ===== LINKS ===== */
a {
  color: #5a40d5;
  text-decoration: none;
  transition: 0.2s;
}

a:hover {
  color: #8a72ff;
  text-decoration: underline;
}

/* ===== BUTTONS ===== */
button {
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  background: #6150e0;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: #7c6cff;
}

/* ===== OPTIONAL: DARK MODE (JS CAN TOGGLE .dark-mode) ===== */
body.dark-mode {
  background: #1c1c24;
  color: #eee;
}

body.dark-mode a {
  color: #b3a4ff;
}

body.dark-mode button {
  background: #7c6cff;
}

body.dark-mode button:hover {
  background: #998cff;
}
