/* 1. Set a clean global baseline */
body {
    margin: 0;
    padding-top: 90px; /* Keeps space for your header */
    font-family: sans-serif;
    font-size: 16pt;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* 2. Create a simple container to replace Bootstrap's .container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 3. A basic Navigation Bar (since Bootstrap's .navbar is gone) */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #222;
    color: white;
    padding: 15px 0;
    z-index: 1000;
}

.navbar-brand {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: bold;
}

