body {
    background-color: #fdffd5; /* Light, clean off-white/gray */
    color: #000000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 40px;
/* <div class="top-bar"></div> /*HTML for adding top bar*/ */

}

  .top-bar {
    width: 100%;
    height: 75px; /* Adjust height as needed */
    background-color: #5b6001; /* Change to your preferred color */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Keeps it behind other content if desired */
  }
Main container - Left aligned with a clean, professional card look
.container {
    max-width: 800px;
    margin-left: 20px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #dcdde1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


/* Text Blocks */
p {
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}



li {
    margin-bottom: 0.5rem;
    color: #444;
}

/* Footer */
footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #00000097;
    color: #00000088;
    font-size: 0.7rem;
    /* position: absolute; */
    /* height: 100%; */
    margin-bottom:auto;
}

/* Links */
a {
    color: #1809e3;
    text-decoration: none;
    border: none; /* Removes any existing borders */
}

a:hover {
    font-weight: bold;
    /* text-decoration: underline; */
    border: none; Ensures no bar appears on hover
}



/* Breadcrumb Navigation */
.breadcrumb {
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    background: none; /* Removes the background from previous list styles */
}

.breadcrumb li {
    margin: 0;
    padding: 0;
    color: #7f8c8d;
}

/* Adds the slash separator between items */
.breadcrumb li + li::before {
    content: "/";
    padding: 0 12px;
    color: #bdc3c7;
}

.breadcrumb li.current {
    color: #2d3436;
    font-weight: 600;
}

.breadcrumb a {
    color: #0984e3;
    text-decoration: none;
}

.breadcrumb a:hover { 
    font-weight: bold; 
    text-decoration: underline; 
    border: none; 
}
