/* =========================
   CSS RESET & NORMALIZE
========================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
body {
    line-height: 1.5;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    color: #183153;
    background: #F8F9FB;
    min-height: 100vh;
    letter-spacing: 0.02em;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: #183153;
    text-decoration: none;
    transition: color 0.18s;
}
a:focus, a:hover {
    color: #2D65A7; /* darken secondary */
    outline: none;
}
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: 16px;
    color: inherit;
}
[tabindex]:focus-visible,
button:focus-visible,
a:focus-visible {
    outline: 2px solid #84B3D1;
    outline-offset: 2px;
}

/* ===============
   BRAND TYPOGRAPHY
================= */
h1, .hero h1 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    margin-bottom: 18px;
    line-height: 1.15;
    color: #183153;
}
h2 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 24px;
    color: #183153;
}
h3 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1.15rem;
    margin-bottom: 14px;
    color: #2D3B50;
}
h4 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1.02rem;
    color: #2D3B50;
}
p, li, label {
    font-size: 1rem;
    line-height: 1.6;
    color: #354259;
}
strong,
.section strong {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: #183153;
}

/* ===============
   LAYOUT CONTAINERS
================= */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
}
.content-wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #fff;
    box-shadow: 0 1px 8px 0 rgba(24, 49, 83, 0.04);
    border-radius: 13px;
}

/* ===============
   PRIMARY BUTTON
================= */
.btn-primary, .btn-primary:visited {
    display: inline-block;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 13px 32px;
    background: #183153;
    color: #fff !important;
    border-radius: 25px;
    border: none;
    box-shadow: 0 1px 8px 0 rgba(24,49,83,0.05);
    cursor: pointer;
    transition: background 0.18s, box-shadow 0.2s, transform 0.1s;
    text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
    background: #28548E;
    color: #fff;
    box-shadow: 0 6px 24px -6px rgba(24,49,83,0.15);
    transform: translateY(-2px) scale(1.035);
}
.btn-primary:active {
    background: #1A2642;
    box-shadow: 0 3px 10px -6px rgba(24,49,83,0.16);
}

/* ===============
   HEADER & NAVIGATION
================= */
header {
    background: #F8F9FB;
    box-shadow: 0 5px 36px -9px rgba(24,49,83,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 22px 0 12px 0;
    flex-wrap: wrap;
}
.main-nav a img {
    height: 36px;
    width: auto;
    vertical-align: middle;
    margin-right: 35px;
}
.main-nav a {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #183153;
    opacity: 0.86;
    padding: 7px 0;
    position: relative;
    transition: color 0.18s, opacity 0.15s;
}
.main-nav a:not(.btn-primary):after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background: #84B3D1;
    margin-top: 2px;
    transition: width 0.18s;
}
.main-nav a:not(.btn-primary):hover:after, .main-nav a:not(.btn-primary):focus:after {
    width: 100%;
}
.main-nav a:not(.btn-primary):hover, .main-nav a:not(.btn-primary):focus {
    opacity: 1;
    color: #28548E;
}
.main-nav .btn-primary {
    margin-left: 22px;
    padding: 11px 26px;
    font-size: 0.98rem;
}
/* Hide default nav in mobile */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
}

/* ===============
   MOBILE NAVIGATION
================= */
.mobile-menu-toggle {
    background: none;
    border: none;
    color: #183153;
    font-size: 2rem;
    padding: 10px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 8px;
    transition: box-shadow 0.18s, background 0.2s;
    z-index: 1100;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: #e7eef6;
    box-shadow: 0 0 6px 0 rgba(24,49,83,0.12);
}
@media (min-width: 1025px) {
    .mobile-menu-toggle {
        display: none;
    }
}
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(24,49,83,0.75);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.34s cubic-bezier(.6,-0.4,.49,1.53);
}
.mobile-menu.active {
    transform: translateX(0);
}
.mobile-menu .mobile-menu-close {
    background: none;
    border: none;
    font-size: 2.4rem;
    color: #fff;
    margin: 26px 32px 8px 0;
    cursor: pointer;
    align-self: flex-end;
    z-index: 2100;
    padding: 4px 12px;
    border-radius: 7px;
    transition: background 0.16s;
}
.mobile-menu .mobile-menu-close:hover, .mobile-menu .mobile-menu-close:focus {
    background: #183153;
}
.mobile-nav {
    background: #fff;
    min-width: 74vw;
    max-width: 92vw;
    margin: 12px 12px 0 0;
    padding: 30px 10px 24px 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 8px 28px -14px rgba(24, 49, 83, 0.18);
    border-radius: 18px 0 0 18px;
    z-index: 2100;
}
.mobile-nav a {
    color: #183153;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 1.17rem;
    padding: 10px 0;
    width: 100%;
    transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    color: #28548e;
}
@media (min-width: 1025px) {
    .mobile-menu { display: none !important; }
    .mobile-menu-toggle { display: none !important; }
}


/* =================
   HERO BANNER
================== */
.hero {
    background: #183153 url('../assets/hero-bg.svg') center/cover no-repeat;
    color: #fff;
    padding-top: 55px;
    padding-bottom: 50px;
    margin-bottom: 60px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 36px -13px rgba(24,49,83,0.08);
}
.hero .container {
    flex-direction: column;
    align-items: flex-start;
}
.hero .content-wrapper {
    max-width: 720px;
    color: #fff;
}
.hero h1, .hero p {
    color: #fff;
}
.hero p {
    font-size: 1.14rem;
    margin-bottom: 30px;
    opacity: .96;
}
.hero .btn-primary {
    background: #84B3D1;
    color: #183153 !important;
    font-weight: 700;
}
.hero .btn-primary:hover, .hero .btn-primary:focus {
    background: #5A90C5;
    color: #fff !important;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 38px;
        padding-bottom: 30px;
        margin-bottom: 34px;
        border-radius: 0 0 13px 13px;
    }
    .hero .content-wrapper {
        padding: 0 5px;
    }
}

/* =============
   FEATURES/CARDS
============= */
.feature-grid, .feature-list, .features {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
    margin-bottom: 16px;
}
.feature-grid > div, .features > div, .feature-list > div {
    background: #F8F9FB;
    border-radius: 14px;
    box-shadow: 0 2px 16px -6px rgba(24,49,83,0.03);
    flex: 1 1 210px;
    min-width: 215px;
    max-width: 330px;
    padding: 22px 20px 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transition: box-shadow 0.18s, transform 0.14s;
}
.feature-grid > div:hover, .features > div:hover, .feature-list > div:hover {
    box-shadow: 0 8px 32px -7px #b2cadd22;
    transform: translateY(-2px) scale(1.015);
}
.feature-grid img, .features img {
    width: 44px;
    height: 44px;
    margin-bottom: 9px;
}

/* For other cards */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 14px -7px rgba(24,49,83,0.09);
    padding: 25px 20px;
    min-width: 260px;
    flex: 1 1 300px;
    transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover {
    box-shadow: 0 12px 38px -10px #b2cadd33;
    transform: translateY(-4px) scale(1.023);
}
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

/* =============
   TESTIMONIALS
============= */
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #F4F6F8;
    border-radius: 14px;
    box-shadow: 0 3px 24px -11px #18315318;
    margin-bottom: 20px;
    font-style: italic;
    color: #183153;
}
.testimonial-card p {
    font-size: 1.07rem;
    color: #183153;
    margin-bottom: 5px;
}
.testimonial-card strong {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: #2D65A7;
    font-size: 0.98rem;
    font-style: normal;
}

/* =============
   TEXT-IMAGE SECTION
============= */
.text-section, .text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.text-section > * {
    flex: 1 1 220px;
}
.trust-badges {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 13px;
}
.trust-badges img {
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 8px -4px #84b3d122;
    width: 41px;
    height: 41px;
}

@media (max-width: 768px) {
    .text-section, .text-image-section {
        flex-direction: column;
        gap: 18px;
    }
    .feature-grid, .features, .card-container {
        flex-direction: column;
        gap: 18px;
    }
}

/* =============
   FAQ/LISTS/ARTICLES
============= */
.faq-list {
    display: flex;
    flex-wrap: wrap;
    gap: 27px;
    margin: 20px 0;
}
.faq-list > div {
    background: #F8F9FB;
    padding: 18px 18px 14px;
    border-radius: 11px;
    flex: 1 1 280px;
    min-width: 230px;
    max-width: 400px;
    box-shadow: 0 2px 12px -7px rgba(24,49,83,0.04);
}
.blog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 25px;
}
.blog-list article {
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 1px 9px -6px #18315311;
    padding: 22px 16px;
    min-width: 235px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    transition: box-shadow 0.18s, transform 0.14s;
}
.blog-list article:hover {
    box-shadow: 0 8px 21px -8px #18315324;
    transform: translateY(-3px) scale(1.016);
}
.blog-list a {
    color: #183153;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.18s;
}
.blog-list a:hover, .blog-list a:focus {
    color: #2D65A7;
    text-decoration: none;
}

/* =============
   INPUTS & SEARCH BAR
============= */
input[type="text"], input[type="email"], input[type="search"],
input, textarea {
    padding: 9px 13px;
    border: 1.5px solid #C4CDD5;
    border-radius: 5px;
    background: #F8F9FB;
    color: #183153;
    font-size: 1rem;
    margin-top: 6px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.18s;
}
input:focus, textarea:focus {
    outline: none;
    border-color: #84B3D1;
}
label {
    font-weight: 500;
    margin-bottom: 5px;
    color: #183153;
}

/* =============
   FOOTER
============= */
footer {
    background: #183153;
    color: #fff;
    padding: 44px 0 18px 0;
    font-size: 1rem;
    width: 100%;
    margin-top: 40px;
}
footer .container {
    flex-direction: column;
    align-items: center;
}
.footer-menu {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    justify-content: center;
}
.footer-menu a {
    color: #fff;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 500;
    transition: color 0.17s;
}
.footer-menu a:hover, .footer-menu a:focus {
    color: #84B3D1;
    text-decoration: underline;
}
.legal-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    max-width: 1180px;
}
.legal-info p {
    color: #F8F9FB;
    font-size: 0.97rem;
}
.social-links {
    display: flex;
    align-items: center;
    gap: 16px;
}
.social-links a img {
    width: 28px;
    height: 28px;
    filter: contrast(0.5) brightness(1.6);
    opacity: 0.88;
    transition: opacity 0.18s;
}
.social-links a:hover img, .social-links a:focus img {
    opacity: 1;
    filter: none;
}
@media (max-width: 750px) {
    .legal-info {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    .footer-menu {
        gap: 13px;
    }
}

/* =============
   UTILITY CLASSES
============= */
.text-center {
    text-align: center;
}
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 20px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 32px; }

/* =============
   THANK YOU PAGE
============= */
.thank-you {
    background: #F8F9FB;
    padding: 60px 10px 70px 10px;
    border-radius: 19px;
    box-shadow: 0 8px 38px -14px #18315318;
    margin-bottom: 65px;
    text-align: center;
}
.thank-you .content-wrapper {
    align-items: center;
    gap: 21px;
}

/* =============
   RESPONSIVE DESIGN
============= */
@media (max-width: 1200px) {
    .container { max-width: 99vw; }
}
@media (max-width: 1024px) {
    .main-nav {
        display: none !important;
    }
    .container, .content-wrapper {
        max-width: 96vw;
        padding: 0 8px;
    }
}
@media (max-width: 900px) {
    .feature-grid, .features, .card-container, .content-grid {
        flex-direction: column;
        gap: 18px;
    }
}
@media (max-width: 800px) {
    .section {
        padding: 25px 7px;
        margin-bottom: 40px;
    }
    .thank-you {
        padding: 36px 7px 38px 7px;
        margin-bottom: 32px;
        border-radius: 12px;
    }
}
@media (max-width: 480px) {
    h1, .hero h1 { font-size: 1.35rem; }
    h2 { font-size: 1.09rem; }
    .main-nav, .footer-menu {
        gap: 11px;
        font-size: 0.97rem;
    }
    .testimonial-card {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }
}

/* =============
   COOKIE CONSENT BANNER
============= */
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 3000;
    background: #fff;
    color: #183153;
    padding: 22px 13px 22px 13px;
    box-shadow: 0 -4px 40px -21px #18315316;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100vw;
    transition: transform 0.44s cubic-bezier(.61,-0.15,.56,1.22), opacity 0.3s;
}
.cookie-banner.hide {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
}
.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}
.cookie-banner p {
    font-size: 1rem;
    line-height: 1.6;
    color: #183153;
    margin: 0 0 6px 0;
    text-align: center;
}
.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.cookie-btn {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 0.99rem;
    border: none;
    border-radius: 21px;
    padding: 9px 26px;
    margin: 0 2px;
    background: #84B3D1;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 1px 8px 0 rgba(24,49,83,0.04);
    transition: background 0.16s, color 0.15s, box-shadow 0.13s;
}
.cookie-btn.accept {
    background: #183153;
    color: #fff;
}
.cookie-btn.reject {
    background: #AEBED4;
    color: #183153;
}
.cookie-btn.settings {
    background: #E4EEF7;
    color: #183153;
}
.cookie-btn:focus, .cookie-btn:hover {
    filter: brightness(1.08);
    box-shadow: 0 4px 18px -9px #1831531a;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(24,49,83,0.72);
    z-index: 4000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.31s;
}
.cookie-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.cookie-modal {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 32px -12px rgba(24,49,83,0.22);
    padding: 33px 24px 25px 24px;
    width: 90vw;
    max-width: 430px;
    display: flex;
    flex-direction: column;
    gap: 19px;
    position: relative;
    animation: modalSlideIn 0.38s cubic-bezier(.64,.19,.35,.85);
}
@keyframes modalSlideIn {
    from { transform: translateY(90px) scale(0.97); opacity: 0; }
    to   { transform: none; opacity: 1; }
}
.cookie-modal h2 {
    font-size: 1.28rem;
    margin-bottom: 8px;
    color: #183153;
}
.cookie-modal .modal-section {
    margin-bottom: 9px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 7px;
}
.cookie-modal label {
    font-weight: 500;
    margin-bottom: 0;
    color: #183153;
    font-size: 1rem;
}
.cookie-toggle {
    appearance: none;
    width: 36px;
    height: 20px;
    background: #CCC;
    border-radius: 13px;
    position: relative;
    outline: none;
    transition: background 0.2s;
    margin-left: 12px;
    cursor: pointer;
}
.cookie-toggle:checked {
    background: #84B3D1;
}
.cookie-toggle:before {
    content: '';
    display: block;
    position: absolute;
    left: 2px; top: 2px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: left 0.21s;
}
.cookie-toggle:checked:before {
    left: 17px;
}
.cookie-modal .close-modal {
    position: absolute;
    top: 17px; right: 16px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #183153;
    cursor: pointer;
    padding: 0 7px;
    border-radius: 6px;
    transition: background 0.13s;
    opacity: 0.84;
}
.cookie-modal .close-modal:focus, .cookie-modal .close-modal:hover {
    background: #E4EEF7;
    color: #28548e;
    opacity: 1;
}
.cookie-modal .modal-actions {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
    margin-top: 10px;
}

/* Hide modal on mobile overlay closed */
@media (max-width: 500px) {
    .cookie-modal {
        padding: 17px 5vw 18px 5vw;
    }
}

/* =============
   GENERAL SPACING RULES
============= */
.section, .card, .feature-grid > div, .card-container > .card, .testimonial-card, .faq-list > div, .blog-list article {
    margin-bottom: 20px;
}
.section, .content-wrapper, .card-container, .card, .feature-grid, .testimonial-card, .blog-list,
.faq-list, .features {
    gap: 20px;
}
.section:last-child, .card:last-child, .feature-grid > div:last-child, .testimonial-card:last-child, .faq-list > div:last-child, .blog-list article:last-child {
    margin-bottom: 0;
}
/* Card containers always have >20px gap. */
.card-container, .features, .feature-grid {
    gap: 24px;
}

/* Enhanced clarity on desktop */
@media (min-width: 1025px) {
    .container {
        padding-left: 0;
        padding-right: 0;
    }
    .section {
        padding-left: 32px;
        padding-right: 32px;
    }
}

/* =============
   COLOR TUNE & ACCESSIBILITY
============= */
.section, .content-wrapper, .faq-list > div, .card, .blog-list article,
.feature-grid > div, .testimonial-card {
    color: #183153;
    box-shadow: 0 2px 13px -8px #18315322;
}
.testimonial-card {
    background: #F4F6F8;
}

/* =============
   MISC: TABLES, LISTS
============= */
table {
    border-collapse: collapse;
    width: 100%;
    background: #fff;
}
th, td {
    border: 1px solid #DEDFE1;
    padding: 11px 9px;
}
th {
    background: #E8EDF2;
    color: #183153;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 600;
}
td {
    color: #2D3B50;
    font-size: 1rem;
}

/* =============
   HOVER & MICRO-INTERACTIONS
============= */
li a, .footer-menu a, .main-nav a, .btn-primary, .blog-list article, .feature-grid > div, .card, .faq-list > div {
    transition: box-shadow 0.17s, background 0.17s, color 0.16s, transform 0.12s;
}
.blog-list article:hover, .feature-grid > div:hover, .card:hover, .faq-list > div:hover {
    box-shadow: 0 10px 35px -15px #18315315;
    background: #F8F9FB;
    transform: translateY(-2px) scale(1.012);
}
.btn-primary:active {
    transform: scale(0.97);    
}
.blog-list article:active {
    background: #EBF3F9;
}

/* =============
   ACCORDIONS (FAQ)
============= */
.faq-list .accordion {
    border: none;
    background: transparent;
    text-align: left;
    padding: 0;
}
.faq-list .accordion-header {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #183153;
    cursor: pointer;
}
.faq-list .accordion-content {
    font-size: 0.97rem;
    color: #354259;
    margin-top: 7px;
}

/* =============
   COVERAGE OPTIONS LIST
============= */
.coverage-options ul {
    margin: 7px 0 0 11px;
    padding: 0;
    list-style: disc inside;
}
.coverage-options li {
    margin-bottom: 6px;
    color: #2D3B50;
    font-size: 1rem;
}

/* =============
   OVERRIDES FOR SPECIAL CLASSES
============= */
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* Hide overrides for nav on wide screens */
@media (min-width: 1025px) {
    .mobile-menu { display: none!important; }
}

/* Prevent overlapping */
.card, .feature-grid > div, .testimonial-card, .blog-list article, .faq-list > div {
    z-index: 1;
}

/* =============
   END
============= */
