body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #f4f6f8;
    color: #2a2a2a;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #1c1c1c;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
	letterspacinf: -0.1rem;
}

h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #1c1c1c;
    margin-top: 1.0rem;
    margin-bottom: 0.50rem;
}

h1 { font-size: 2.70rem; }
h2 { font-size: 2.40rem; }
h3 { font-size: 2.00rem; }
h4 { font-size: 1.7rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.5rem; }

h1, h2, h3, h4, h5, h6,
a, p, span {
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

a {
    color: #00538C;
    text-decoration: underline dotted;
}

a:hover {
    color: #005fa3;
    background-color: transparent;
    text-decoration: underline;
}

.button {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: white;
    background-color: #0077cc;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #003366;
    color: #ffffff !important;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: #fff;
}

table th, table td {
    border: 1px solid #ccc;
    padding: 0.75rem;
    text-align: left;
}

table th {
    background-color: #f0f0f0;
}

q
{
	font-style: italic;
}
.textbox {
    background-color: #eef4fb;
    border-left: 4px solid #0077cc;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
}

.verse {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #2a2a2a;
    margin: 2rem 0;
    padding-left: 1rem;
    border-left: 2px dotted #ccc;
    font-style: italic;
    white-space: pre-line;
    background-color: transparent;
}

.rubrik {
	font-size: 1.5rem;
    letter-spacing: 0.15rem;
	line-height: 1.5rem;
}

.no-bullets {
  list-style-type: none;
  #padding-left: 0; /* Optional: aligns with other text */
  #margin: 0;        /* Optional: remove default spacing */
}

.no-bullets-no-space {
  list-style-type: none;
  padding-left: 0; /* Optional: aligns with other text */
  margin: 0;        /* Optional: remove default spacing */
}

.no-space {
	padding-left: 0; /* Optional: aligns with other text */
  margin: 0;        /* Optional: remove default spacing */
}

td {
    vertical-align: top;
}


/* WCAG 2.2 AA Compliant Navigation */
nav ul {
    list-style-type: none;
    background-color: #004a99;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
	gap: 0.25rem 0.5rem; /* ⬅ adds both row and column spacing */
}

nav ul li {
    margin: 0;
}

nav ul li a {
    display: block;
    padding: 0.75rem 1rem;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    background-color: #004a99;
    transition: background-color 0.3s ease;
}

nav ul li a:hover,
nav ul li a:focus {
    background-color: #003366;
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}