* {
    box-sizing: border-box;
}


body {
    font-family: "Acumin Pro", Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333333;


    margin: 0;
    padding: 0;
}


h1,
h2,
h3,
h4,
h5 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #1f4a65;

    font-weight: 600;
    line-height: 1.2;
}


p {
    margin-bottom: 1em;
}


a {
    color: #1f4a65;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


button,
.btn {
    font-family: inherit;
    font-size: 1em;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-blue {
    background-color: #1f4a65;
    color: #ffffff;
}

.btn-blue:hover {
    background-color: #16374a;
}

.btn-green {
    background-color: #3a9d23;
    color: #ffffff;
}

.btn-green:hover {
    background-color: #2e7719;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;

    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

header img {
    height: 40px;

    width: auto;
}

.header_text {
    font-size: 14px;
    font-weight: bold;
    color: #1f4a65;

}

.main {
    max-width: 80%;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

@media (max-width: 640px) {
    .main {
        max-width: 100%;
        margin: 20px 20px;

    }
}

.main a.highlight {
    color: #005b96;

    text-decoration: underline;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.btn-blue {
    flex: 1;
    padding: 20px;
    background: #005b96;
    color: #fff;
    font-size: 1.2em;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
}

.btn-green {
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    padding: 20px;
    width: calc(100% + 20px);
    max-width: calc(100% + 20px);
    background: #3a9d23;

    color: #fff;
    font-size: 1.3em;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
}

footer {
    background: #1f4a65;
    color: #ffffff;
    padding: 30px 20px;
    text-align: center;
}

.disclaimers {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.copyright {
    font-size: 13px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-buttons button {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.footer-buttons button:hover {
    background: #ffffff;
    color: #1f4a65;
}


.modal {
    display: none;

    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    color: #333;
    text-align: center;
}

.modal-content h3 {
    color: #1f4a65;
    margin-bottom: 10px;
}

.modal-content p {
    margin: 5px 0;
    font-size: 14px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}