﻿body {
    font-family: var(--now-font-family,"Source Sans Pro",Arial,sans-serif);
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.header-text {
    font-size: 1.2em;
    margin-left: 120px; /* Adding some space between the logo and header text */
    margin-bottom: 130px;
}

header {
    background-color: #0C203D;
    max-width: 650px;
    margin: 50px auto;
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Aligning logo and header text */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    overflow: hidden;
}

.container {
    width: 80%;
    max-width: 620px;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    overflow: hidden;
}

.startbutton {
    border: 2px solid #ccc;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 8px;
    overflow: hidden;
    background-color: #0C203D;
    color: #FFFFFF;
}

.logo {
    max-width: 165px;
    height: auto;
}

.contact-list {
    list-style-type: none;
    padding: 0;
}

.contact-item {
    margin-bottom: 10px;
}

.label {
    font-weight: bold;
}

.headertextSD {
    font-weight: bold;
    font-size: 14pt;
    color: #F3704C;
    font-style: normal;
}

.textbox {
    height: 25px;
    border-radius: 5px;
    font-size: 14pt;
}

.phone-number {
    margin-left: 10px;
    font-size: 1.1em;
}

a:link, a:visited {
    color: #0C203D;
    padding: 5px 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

a:hover, a:active {
    color: #F3704D;
}
a.button:hover {
    color: #F3704D;
}
a.button {
    padding: 9px 9px;    
    border: 1px outset buttonborder;
    border-radius: 3px;
    color: #ffff;
    background-color: #0C203D;
    text-decoration: none;
}
