/* =========================
GENERAL RESET & BASE STYLES
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Ensures padding/borders are included in element width */
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
  padding-top: 100px; /* Space for fixed header - simpler approach than ::before */
}

/* =========================
SECTION TITLES & TEXT
========================= */
h2 {
  color: #4a5568; /* Professional dark gray */
  margin: 60px 0 30px 0;
  font-size: 36px;
  text-align: center;
  font-weight: 700;
}

h3 {
  color: #2d3748;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
}

p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 18px;
  line-height: 1.7;
}
