h1, h2, h3 {
    font-family: 'Montserrat', serif; /* Use the font name defined in Google Fonts or @font-face */
    font-weight: 700; /* Example: make headings bold */
    /* Add other styling like color, line-height, text-transform */
}

/* For a specific class used on a heading */
.page-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3em; /* Example: large size for page titles */
    color: #333;
}

/* Basic Page Styles */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem; /* A comfortable reading size, ~17.6px */
    background-color: #f4f4f4;
    color: #333;
    padding: 0; /* Good practice to reset default body padding */
}

/* Header Block Styling */
.header-block {
    background-color: #630094; /* Purple color */
    width: 100%;
    padding: 50px 0; /* Adjust padding as needed */
    text-align: center;
    position: relative; /* Needed for absolute positioning of sub-bar */
    cursor: pointer; /* Indicates it's clickable */
}
.header-block h1 {
    color: #fff; /* White text */
    font-size: clamp(2.5rem, 8vw, 4rem);
    text-align: center;
    white-space: nowrap; /* Prevents the text from wrapping */
    font-weight: bold;
    margin: 0;
    z-index: 2; /* Ensures text is above sub-bar when it appears */
    position: relative;
}

/* Sub-bar Styling (Navigation) */
.sub-bar {
    background-color: #380052; /* Darker purple for sub-bar */
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px 0;
    box-sizing: border-box; /* Include padding in width */
    text-align: center;
}

.sub-bar a {
    color: #fff;
    text-decoration: none;
    padding: 0 15px;
    font-weight: bold;
    font-size: 1.1em;
    display: inline-block; /* Allows padding and spacing */
}

.sub-bar a:hover {
    text-decoration: underline;
}

/* Main Content Wrapper */
.container {
    max-width: 800px; /* Default width, can be overridden by specific pages */
    margin: 20px auto;
    padding: 0 20px;
}

.bracketed-list {
    list-style-type: none; /* Hide default numbering */
    counter-reset: my-list-counter; /* Initialize a counter for this list */
    padding-left: 0; /* Remove default padding from the ul/ol */
}

.bracketed-list li {
    position: relative; /* Needed for positioning the pseudo-element */
    margin-bottom: 5px; /* Add some space between list items */
    padding-left: 40px; /* Make space for the custom number */
}

.bracketed-list li::before {
    counter-increment: my-list-counter; /* Increment the counter for each list item */
    content: "[" counter(my-list-counter) "]"; /* Generate content: [number] */
    position: absolute;
    left: 0; /* Position the number at the start of the list item */
    width: 30px; /* Give it a fixed width for alignment */
    text-align: right; /* Align the number to the right within its space */
    font-weight: bold; /* Optional: style the number */
}