html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow: hidden;
}
.top-bar {
    width: 100vw;
    background: #003366;
    color: #fff;
    padding: 16px 0;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 2em;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998; /* Lower than .header-title-text */
    border-bottom: none;

}

.top-bar a {
    color: #ffd700;
    text-decoration: underline;
    font-weight: bold;
    margin-left: 10px;
}



.header-title-text {
    white-space: nowrap;
    font-size: 1em;
    padding: 10px;
    background-clip: padding-box;
    box-sizing: border-box;
    pointer-events: auto;
    color: #003366;
    background: rgb(163, 170, 184);
    font-weight: bold;
    /* background: transparent; */
    text-shadow:
        -1px -1px 0 #fff,
         1px -1px 0 #fff,
        -1px  1px 0 #fff,
         1px  1px 0 #fff,
         0px  1px 0 #fff,
         1px  0px 0 #fff,
         0px -1px 0 #fff,
        -1px  0px 0 #fff;
    margin-top: 0;

    font-size: 2em;
    position: fixed;
    top: 60px;
    z-index: 999;
    left: 0;
    width: 100vw;
    text-align: center;

    pointer-events: none;
}


.bottom-bar {
    width: 100vw;
    background: #003366;
    color: #fff;
    padding: 16px 0;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 2em;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1000;
}
.top-bar-links {
    padding-bottom: 10px;
}
.bottom-bar a {
    color: #ffd700;
    text-decoration: underline;
    font-weight: bold;
    margin-left: 10px;
}


.info-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 160px);
    padding-top: 160px;
    background: url('background.png') center center / cover no-repeat;


}
.info-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 48px 56px;
    max-width: 600px;
    width: 100%;
    text-align: left;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.info-card h2 {
    color: #003366;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2em;
    text-align: center;
}
.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.info-card li {
    font-size: 1.25em;
    margin-bottom: 16px;
    padding-left: 0;
}
.info-card strong {
    color: #003366;
}
.register-reminder {
    background: #ffd700;
    color: #003366;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
    margin: 0 0 32px 0;
    /* Added margin-bottom for gap */
}

@media (max-width: 600px) {
    .top-bar {
        font-size: .80em;
        padding: 10px 0;
    }
    .header-title-text {
        padding: 10px;
        font-size: 2em;
        top: 40px;
    }
    .info-card {
        padding: 18px 8px;
        max-width: 98vw;
    }
    .info-section {
        padding-top: 100px;
        background-size: cover;
    }

    .bottom-bar {
        font-size: 1.2em;
        padding: 30px 0;
    }
}