
.md-typeset {
  font-size: 0.9rem !important;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif !important;
  line-height: 1.6 !important;
  color: #111 !important;
}

/* Headings */
.md-typeset h1,
.md-typeset h2,
.md-typeset h3,
.md-typeset h4,
.md-typeset h5,
.md-typeset h6,
.md-typeset strong {
  color: #000 !important;
  font-weight: 600 !important;
}

/* --------- Hero Section --------- */
.hero-title {
  text-align: center;
  margin: 1.5rem 0 1rem 0;
}

.hero-title h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.hero-title h2 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #444;
  margin-top: 0;
}

/* Hero image sizing */
.md-content img {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto 1rem auto;
}

/* --------- Link Boxes (Neutral Style) --------- */
.box-container {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  margin-top: 30px !important;
}

.box {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background-color: #f5f5f5 !important; /* soft gray background */
  color: #000000 !important;
  padding: 12px 24px !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  border: 1px solid #ccc !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.25s ease;
}

.box:hover {
  background-color: #eaeaea !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.12);
}

/* --------- Header Bar (White Minimal) --------- */
.md-header {
  background-color: #ffffff !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
}

/* Header title */
.md-header__title {
  color: #111 !important;
}

/* Remove hyperlink effect from site name */
.md-header__button.md-logo + .md-header__title,
.md-header__title {
  text-decoration: none !important;
  pointer-events: none !important;
  cursor: default !important;
}

/* --------- Navigation Links --------- */
.md-tabs__link,
.md-nav__link {
  color: #333 !important;
}
.md-tabs__link--active,
.md-nav__link--active {
  color: #000 !important;
  font-weight: 600 !important;
}

/* --------- Body Links --------- */
.md-typeset a {
  color: #111 !important;
  text-decoration: underline;
}
.md-typeset a:hover {
  color: #000 !important;
}

/* --------- Layout Spacing --------- */
.md-content {
  padding-top: 1.5rem !important;
}
