/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.page-container {
    min-width: 1100px;  
    margin: 0 auto;    
    width: 100%;
}

/* Navbar Styling */
.navbar {
    background-color: #333;
    overflow: visible;
    font-family: Arial, sans-serif;
    height: 50px;
    width: 100%;
}

.nav-menu {
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    
}

.nav-item {
    position: relative;
}

.nav-item a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 15px 16px;
    text-decoration: none;
    width: 225px;
    height: 50px;
}

/* Dropdown Styling */
.dropdown-content {
    display: none;
    position: relative;
    width: 225px;
    left: 0;
    background-color: #686565;
    z-index: 999; /* Ensure dropdown appears above other elements */
}

.dropdown-content a {
    color: white;
    padding: 15px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    height:auto;
}

.dropdown-content a:hover {
    background-color: #1c597c;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-content {
    display: block;
}

.nav-item:hover{
    background-color:#444
}

.bottomNavButton{
    background-color: #008CBA;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 15px 32px;
    border:solid;
    border-color: #008CBA;
    border-width: 2px;
    border-radius: 8px;
    transition-duration: 0.2s;
    font-size: large;
}

.bottomNavButton:hover{
    background-color: white;
    color: #008CBA;
}

/* Collapsible Container Styles */
.collapsible-container {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin: 20px 0;
    background-color: white;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
}

/* Collapsible Header */
.collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}

.collapsible-header:hover {
    background-color: #e9ecef;
}

.collapsible-title {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
}

/* Chevron Icon */
.chevron {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.chevron svg {
    width: 100%;
    height: 100%;
    fill: #666;
}

.collapsible-container.collapsed .chevron {
    transform: rotate(-90deg);
}

/* Collapsible Content */
.collapsible-content {
    max-height: 2000px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 15px 24px 24px 24px;
    font-size: 1.3em;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
}

.collapsible-container.collapsed .collapsible-content {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.footer-nav-button {
    background-color: #008CBA;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 6px;
    border: 2px solid #008CBA;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-nav-button:hover {
    background-color: white;
    color: #008CBA;
    transform: translateY(-2px);
}

.footer-nav-button:disabled {
    background-color: #666;
    border-color: #666;
    color: #999;
    cursor: not-allowed;
    transform: none;
}

.footer-nav-button:disabled:hover {
    background-color: #666;
    color: #999;
    transform: none;
}

/* Arrow icons for navigation buttons */
.footer-nav-button.prev::before {
    content: "←";
    font-size: 16px;
}

.footer-nav-button.next::after {
    content: "→";
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-nav {
        padding: 10px 15px;
    }
    
    .footer-nav-button {
        padding: 10px 15px;
        font-size: 12px;
    }
}

sup{
    line-height: 0;
}

sup a{
    line-height: 0;
    font-size: 75%;
    text-decoration: none;
    color: #333;
}

sup a:hover{
    text-decoration: underline;
    color: #283db8;
}

h1 {font-size: 30px; font-weight: bold;}
h2{font-size: 22px;}
h3{font-size: 18px; font-weight: normal; line-height: 1.4;}

.bodyText{font-size: 18px; font-weight: normal; line-height: 1.4;}

.blueHeader{
    font-size: 18px;
    color: #2b589b;
    font-weight: bold;
    margin: 10px 0px;
}

.subHeader{
    font-size: 18px;
    font-weight: bold;
}

.subSub{
    padding-left: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: normal;
}

.progress-bar {
    max-width: 700px; /* Adjust based on your image size */
    height: auto;
    align-self: center;
}