*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: black;
    
}

body {
    font-family: 'Tw Cen Mt';
    font-size: 14px;
    background-color: white;
    display: flex;
    flex-direction: column;
    border-top: 3px solid #003366;
    margin: 0;
}

.top-margin {
    width: 100%;
    height: 100px; 
    background-color: white; 
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    height: 70px; 
    width: auto;
    margin-top: 30px;
    position: fixed;
}

.page-title {
    margin-top: 100px; 
    text-align: left;
    font-size: 20px; 
    color:  #003366; 
    margin-left: 15px;
}

.page-subtitle {
    text-align: left;
    font-size: 18px; 
    color: black; 
    margin-top: 15px;
    text-align: left;
    margin-left: 17px;
}

.page-text {
    text-align: left;
    font-size: 16px; 
    color: black; 
    margin-top: 10px; 
    max-width: 800px; 
    margin-left: 17px;
}

footer {
    position:relative;
    width: 100%;
    padding: 20px; 
    background-color:white;
    color: white; 
    text-align: center; 
}

@media (max-width: 600px) {
    footer {
        padding: 10px; 
    }
    .footer-container  {
        height: auto; 
        flex-direction: column; 
        align-items: center;
    }
}

.footer-container {
    width: 100%;
    height: 40px; 
    background-color: #003366; 
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center; 
    align-items: center; 
    gap: 30px; 
    overflow: visible !important;
}

.footer-container  a {
    color: white; 
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    display: block;
}

.footer-container  a:hover {
    text-decoration: underline; 
}

@media (max-width: 799px) {
    .footer-container  {
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        bottom: unset;
        height: auto;
    }
    body {
    padding-bottom: 0px
    }
}