﻿/* General Reset & Base */
body {
  margin: 0;
/*  padding-top: 60px; /* adjust to match nav bar height */
  font-family: "Roboto", "Verdana", "Segoe UI", "Tahoma", "Arial", sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.3;
}

a {
  color: #0078d4; /* #0000FF; */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header Banner */
.helpsite-header {
  align-items: center;
  justify-content: center;
  background-color: #0078d4; /* #0000FF; /* Trojan Remover blue */
  padding: 20px;
  text-align: center;
  color: #fff;
}

.helpsite-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 20px;
  text-align: center;
  color: #fff;
}

.helpsite-subtitle {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 20px;
  text-align: center;
  color: #fff;
}

/* Navigation Bar */
.site-nav {
  background: #0033aa; /* darker blue for contrast */
  /* position: sticky; */
  top: 0;
  z-index: 1000; /* ensures it's above content */
}

.site-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.site-nav li {
  margin: 0;
}

.site-nav a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a.active {
  background: #002080;
}