
/* BHOBU Corporate Colors */
:root {
    --bhobu-green: #015830;
    --bhobu-yellow: #FFCE00;
    --bhobu-black: #000000;
    --bhobu-red: #D62229;
}

/* Corporate Typefaces */
h1, h2, h3, .logo-text, .section-title {
    font-family: 'Helvetica Inserat Roman', 'Helvetica', sans-serif;
}

body {
    font-family: 'Source Serif Variable', serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    background-color: #f4f4f4;
}

.bhobu-header {
    background-color: var(--bhobu-green);
    color: white;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.bhobu-logo {
    height: 80px; /* Adjust size as needed, but not smaller than 20mm for print */
    margin-right: 15px;
}

.logo-text .bhc-name {
    font-size: 1.5rem;
    line-height: 1;
    margin: 0;
    color: var(--bhobu-yellow);
}

.logo-text .bhobu-abbrev {
    font-size: 1rem;
    margin: 0;
    line-height: 1;
}

.bhobu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bhobu-nav li {
    display: inline;
    margin-left: 20px;
}

.bhobu-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.bhobu-nav a:hover {
    color: var(--bhobu-yellow);
}

.hero-section {
    background-color: var(--bhobu-yellow);
    color: var(--bhobu-green);
    text-align: center;
    padding: 100px 20px;
}

.hero-text {
    font-size: 2.5rem;
    font-style: italic;
    font-family: 'Source Serif Variable', serif;
}

.content-section {
    padding: 40px 5%;
    max-width: 900px;
    margin: auto;
}

.section