body {
    font-family: 'Open Sans', sans-serif;
    background: #f4f5f7;
    margin: 0;
    padding: 0;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.text-dark-blue {
    color: #002f5f;
}
strong {
    color: #002f5f;
}
.form-text {
    font-size: 12px;
}
.form-control:disabled {
    background-color: #e6f0fa;
}
.header {
    background: #004593;
    color: white;
    width: 100%;
}
.header-wrapper {
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
}
.header .white-logo {
    width: 170px;
    height: auto;
}
.contact-info {
    text-align: right;
    font-size: 14px;
}
.contact-info div {
    margin-bottom: 4px;
}
.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    /*background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);*/
    display: flex;
    /*align-items: center;
    justify-content: center;*/
    gap: 40px;
    flex-wrap: wrap;
}
.left,
.right {
    flex: 1 1 400px;
    min-width: 300px;
}
.left {
    flex: 3;
}
.right {
    flex: 5;
}
.left h1 {
    font-size: 26px;
    color: #002f5f;
    margin-bottom: 10px;
}
p,
.left ul {
    font-size: 16px;
    line-height: 1.6;
}
.left ul {
    padding-left: 20px;
}
.left li {
    margin-bottom: 8px;
}
.checkbox-wrapper {
    margin: 20px 0;
    display: flex;
    align-items: center;
}
.checkbox-wrapper input[type="checkbox"] {
    margin-right: 10px;
    margin-bottom: 8px;
}
.btn {
    transition: all .2s ease-in-out;
    text-wrap-mode: wrap;
}
.btn:hover {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.2), 0 3px 10px 0 rgba(0,0,0,.19) !important;
}
.btn-primary {
    background-color: #0072bc;
    border-color: #0072bc;
}
.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary.focus,
.btn-primary:focus {
    background-color: #1c62a9;
    border-color: #1c62a9;
}
.footer-note {
    margin-top: 15px;
    font-size: 12px;
    color: #666;
}
label {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    font-weight: bold;
}
.error {
    color: #d9534f;
    font-size: 13px;
    display: none;
    margin-top: 4px;
}
.footer {
    background: #004593;
    color: white;
    padding: 20px 30px;
    text-align: center;
    font-size: 14px;
    margin-top: auto;
}

.footer a {
    color: #ffcc33;
    text-decoration: none;
}
.highlight-box {
    background-color: #e6f0fa;
    border-left: 4px solid #005aa7;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: 600;
    color: #002f5f;
    margin-bottom: 20px;
    border-radius: 4px;
}
.feature-box {
    background-color: #fff;
    padding: 20px 20px 10px;
    border: 1px solid #dde3ec;
    border-radius: 6px;
    margin: 20px 0;
}
.feature-heading {
    font-size: 23px;
    font-weight: 600;
    color: #002f5f;
    margin-top: 0;
    margin-bottom: 12px;
}

.feature-list {
    padding-left: 20px;
    margin: 0;
}
.feature-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 15px;
}
select[multiple] {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    height: auto;
}
.choices__inner {
    min-height: auto;
    padding: 8px 10px;
    font-size: 14px;
}
.choices__list--multiple .choices__item {
    background-color: #005aa7;
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    padding: 0px 8px;
    margin-right: 6px;
    margin-bottom: 4px;
}
.choices__list--multiple .choices__item .choices__button {
    margin-left: 6px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 6px;
}
.choices__list--dropdown .choices__item {
    font-size: 14px;
}
@media (max-width: 800px) {
    .container {
        flex-direction: column;
    }

    .contact-info {
        text-align: left;
        margin-top: 10px;
    }
}
img.white-logo {
    filter: brightness(0) invert(1);
}
.confirmation-container {
    max-width: 700px;
    margin: 60px auto;
    padding: 30px 25px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Open Sans', sans-serif;
    color: #333;
    text-align: left;
}
.confirmation-container h1 {
    font-size: 26px;
    color: #005aa7;
    margin-bottom: 15px;
}
.confirmation-container p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.confirmation-container ul {
    padding-left: 20px;
    font-size: 16px;
    margin-bottom: 20px;
}
.confirmation-container li {
    margin-bottom: 8px;
}
.pt_form_error {
    color: red;
    font-size: 14px;
}
