:root {
    --primary: #005CBF;
    --navy: #00274C;
    --text: #333333;
    --soft: #F4F4F4;
}
* {
    box-sizing: border-box;
}
body {
    font-family: 'Raleway', Arial, sans-serif;
    color: var(--text);
    background: #fff;
    font-size: 16px;
    line-height: 1.45;
}
.site-container {
    max-width: 1200px;
}
.navbar-brand img,
.footer-logo {
    width: 205px;
    height: auto;
}
.nav-link {
    color: #202020;
    font-size: 15px;
    font-family: 'Inter', Arial, sans-serif;
}
.navbar .dropdown-toggle::after {
    width: 24px;
    height: 24px;
    margin-left: 8px;
    vertical-align: middle;
    border: 0;
    background: center / 24px 24px no-repeat url('data:image/svg+xml,%3Csvg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M20.6695 8.99997C20.6695 9.18997 20.5995 9.37997 20.4495 9.52997L13.9295 16.05C12.8695 17.11 11.1295 17.11 10.0695 16.05L3.54953 9.52997C3.25953 9.23997 3.25953 8.75997 3.54953 8.46997C3.83953 8.17997 4.31953 8.17997 4.60953 8.46997L11.1295 14.99C11.6095 15.47 12.3895 15.47 12.8695 14.99L19.3895 8.46997C19.6795 8.17997 20.1595 8.17997 20.4495 8.46997C20.5895 8.61997 20.6695 8.80997 20.6695 8.99997Z" fill="%23333333"/%3E%3C/svg%3E');
    content: "";
}
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 48px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
}
.btn--fit {
    width: fit-content;
    height: auto;
}
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}
.section-pad {
    padding: 40px 0;
}
.section-pad--large {
    padding: 80px 0;
}
.section-pad--last {
    padding-bottom: 56px;
}
h1,
h2 {
    font-weight: 700;
    letter-spacing: -0.025em;
}
h1 {
    margin-bottom: 32px;
    font-size: 48px;
    line-height: 1;
}
h2 {
    font-size: 40px;
    line-height: 1;
}
h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: var(--primary);
}
p {
    font-size: 18px;
    line-height: 24px;
    color: var(--text);
}
.section-title--mb24 {
    margin-bottom: 24px;
}
.section-title--mb32 {
    margin-bottom: 32px;
}
.lead-copy {
    font-size: 1.1rem;
    max-width: 540px;
}
.small-note {
    font-size: 16px;
    line-height: 32px;
}
.section-description {
    font-size: 22px;
    line-height: 24px;
}
.content-image {
    width: 100%;
    border-radius: 20px;
    display: block;
}
.hero {
    padding-top: 100px;
}
.hero-image {
    max-height: 388px;
    object-fit: cover;
}
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.outline-card,
.soft-card {
    padding: 24px;
    border-radius: 18px;
}
.outline-card {
    border: 1.5px solid var(--primary);
    background: #fff;
}
.soft-card {
    background: var(--soft);
}
.faq-section {
    padding: 60px 0;
    background: var(--navy);
}
.accordion {
    max-width: 100%;
}
.accordion-item {
    border: 0;
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 24px;
}
.accordion-button {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: var(--primary);
    padding: 24px 26px;
}
.accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--primary);
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-button::after {
    height: 40px;
    width: 40px;
    border-radius: 34px;
    background-position: center;
    background-color: var(--primary);
    background-image: url('data:image/svg+xml,<svg width="16" height="10" viewBox="0 0 16 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.999964 1.58573L8 8.58576L15 1.58573" stroke="white" stroke-width="2" stroke-linecap="round"/></svg>');
}
.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<svg width="16" height="10" viewBox="0 0 16 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.999964 1.58573L8 8.58576L15 1.58573" stroke="white" stroke-width="2" stroke-linecap="round"/></svg>');
}
.accordion-body {
    padding: 24px 0;
    color: var(--text);
    border-top: 1px solid var(--text);
    margin: 0 24px;
    font-size: 16px;
    line-height: 24px;
}
.footer {
    font-size: 16px;
    line-height: 18px;
}
.footer-heading {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1;
    color: var(--navy);
}
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
    line-height: 1em;
    font-weight: 500;
}
.footer a:not(.btn):not(.social) {
    display: block;
    color: #444;
    text-decoration: none;
    margin-bottom: 24px;
}
.social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
}
.legal-copy {
    font-size: 16px;
    line-height: 18px;
}
.object-fit-cover {
    object-fit: cover;
}
@media (max-width: 991.98px) {
    .section-pad {
        padding: 50px 0;
    }
    .navbar-brand img {
        width: 170px;
    }
    .hero {
        text-align: left;
    }
    .hero-image {
        max-height: none;
    }
    .navbar-collapse {
        padding-top: 1rem;
    }
    .footer .col-lg-5 {
        margin-bottom: 1rem;
    }
}
@media (max-width: 575.98px) {
    body {
        font-size: 15px;
    }
    .section-pad {
        padding: 38px 0;
    }
    .outline-card,
    .soft-card {
        padding: 20px;
    }
    .content-image {
        border-radius: 14px;
    }
    .accordion-button {
        padding: 20px;
    }
    .navbar-brand img {
        width: 150px;
    }
}

.tp-nav-link {
    font-family: 'Inter', Arial, sans-serif;
}
