/* ================== 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 {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    background-color: #F7F7F7;
    color: #203564;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
a {
    color: #203564;
    text-decoration: none;
    transition: color 0.2s;
}
strong, b {
    font-weight: 700;
}
ul, ol {
    margin-left: 20px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 800;
    letter-spacing: 0.005em;
    color: #203564;
    margin-bottom: 16px;
}
h1 { font-size: 2.625rem; line-height: 1.13; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
.subheadline {
    color: #297852;
    font-size: 1.125rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    margin-bottom: 24px;
}

/* ================== LAYOUT STRUCTURE ================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 10px 36px 0 rgba(32,53,100,0.06);
}
@media (max-width: 900px) {
    .section {
        padding: 32px 12px;
    }
}
@media (max-width: 600px) {
    .section {
        padding: 16px 6px;
    }
}

/* ================== HEADER / NAVIGATION ================== */
header {
    width: 100%;
    background: #203564;
    color: #ffffff;
    box-shadow: 0 4px 20px 0 rgba(32,53,100,0.09);
    z-index: 100;
    position: relative;
}
header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 0;
}
header nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: 24px;
}
header nav a {
    color: #ffffff;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    padding: 8px 0;
    font-size: 1.05rem;
    transition: color 0.18s;
    position: relative;
}
header nav a:not(.cta-button):after {
    content: '';
    display: block;
    height: 4px;
    width: 0%;
    background: #297852;
    border-radius: 2px;
    transition: width 0.21s cubic-bezier(0.4,0,0.2,1);
    margin-top: 4px;
    position: absolute;
    left: 0; bottom: 0;
}
header nav a:hover:not(.cta-button):after, header nav a.active:not(.cta-button):after {
    width: 80%;
}
header nav a.cta-button {
    background: #297852;
    color: #fff;
    border-radius: 100px;
    padding: 10px 28px;
    margin-left: 20px;
    font-size: 1.18rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 800;
    letter-spacing: 0.03em;
    box-shadow: 0 8px 24px 0 rgba(41,120,82,0.08);
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
header nav a.cta-button:hover, header nav a.cta-button:focus {
    background: #216f47;
    color: #fff;
    box-shadow: 0 12px 32px 0 rgba(41,120,82,0.16);
}
header .mobile-menu-toggle {
    display: none;
    border: none;
    background: none;
    color: #fff;
    font-size: 2.2rem;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 50px;
    transition: background 0.15s;
}
header .mobile-menu-toggle:focus, header .mobile-menu-toggle:hover {
    background: rgba(255,255,255,0.09);
}

/* ================== MOBILE NAVIGATION ================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #203564;
    color: #fff;
    z-index: 2002;
    transform: translateX(-100%);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.5,0,0.4,1);
    box-shadow: 4px 0 32px 0 rgba(32,53,100,0.22);
}
.mobile-menu.open {
    transform: translateX(0%);
}
.mobile-menu-close {
    color: #297852;
    background: none;
    border: none;
    font-size: 2.3rem;
    align-self: flex-end;
    margin: 24px 28px 12px 0;
    cursor: pointer;
    transition: background 0.13s, color 0.13s;
    padding: 6px;
    border-radius: 50px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    background: rgba(247,247,247,0.2);
    color: #fff;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    margin: 30px 0 0 46px;
}
.mobile-nav a {
    color: #fff;
    font-size: 1.37rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 800;
    padding: 10px 0;
    transition: color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    color: #297852;
}
@media (max-width: 1100px) {
    header nav {
        gap: 18px;
        margin-left: 10px;
    }
    header nav a.cta-button {
        margin-left: 10px;
        font-size: 1rem;
        padding: 9px 18px;
    }
}
@media (max-width: 900px) {
    header .container {
        flex-direction: row;
        gap: 0;
        min-height: 64px;
        padding-right: 6px;
    }
    header nav {
        display: none;
    }
    header .mobile-menu-toggle {
        display: block;
    }
}

/* ================== MAIN CONTENT ================== */
main {
    width: 100%;
    flex: 1 0 auto;
    margin-top: 24px;
    margin-bottom: 24px;
    min-height: 46vh;
}
.section:first-child {
    margin-top: 24px;
}

/* ================== TYPOGRAPHY ================== */
h1, .hero-headline {
    font-size: 2.625rem;
    color: #203564;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}
h2 {
    font-size: 2rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 800;
    color: #203564;
    margin-bottom: 12px;
}
h3 {
    font-size: 1.25rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 800;
    color: #203564;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}
.text-section p, .text-section ul, .text-section li {
    color: #203564;
    font-size: 1.09rem;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.text-section ul {
    margin-bottom: 10px;
}
.text-section h2, .text-section h3 { margin-top: 22px; }

/* ================== FLEX LAYOUTS AND GAPS ================== */
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 12px;
}
.feature {
    flex: 1 1 220px;
    min-width: 220px;
    background: #F7F7F7;
    padding: 24px 20px 20px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    box-shadow: 0 3px 16px 0 rgba(32,53,100,0.05);
    margin-bottom: 20px;
    border-left: 6px solid #297852;
    transition: box-shadow 0.18s, transform 0.18s;
}
.feature:hover {
    box-shadow: 0 8px 32px 0 rgba(32,53,100,0.14);
    transform: translateY(-4px) scale(1.03);
}
.feature img {
    width: 38px;
    height: 38px;
    margin-bottom: 3px;
}

/* Card Container */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 14px 0 rgba(32,53,100,0.07);
    position: relative;
    padding: 28px 24px;
    flex: 1 1 280px;
    min-width: 250px;
    transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
    box-shadow: 0 8px 28px 0 rgba(32,53,100,0.12);
    transform: translateY(-3px) scale(1.02);
}
.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;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #F7F7F7;
    margin-bottom: 20px;
    border-left: 5px solid #297852;
    border-radius: 16px;
    box-shadow: 0 2px 12px 0 rgba(32,53,100,0.08);
    max-width: 600px;
    transition: box-shadow 0.17s, transform 0.18s;
}
.testimonial-card:hover {
    box-shadow: 0 8px 32px 0 rgba(32,53,100,0.11);
    transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
    color: #203564;
    font-weight: 600;
    font-size: 1.13rem;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    margin-bottom: 0;
}
.testimonial-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    color: #203564;
    font-size: 0.98rem;
}
.testimonial-meta span:last-child {
    color: #297852;
    font-size: 1.2rem;
    font-weight: 700;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* ========== PRICING TABLE ========== */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 24px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
thead {
    background: #203564;
    color: #fff;
}
thead th {
    padding: 14px 10px;
    font-weight: 800;
    font-size: 1.08rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
tbody td {
    background: #ffffff;
    padding: 13px 10px;
    border-bottom: 1.5px solid #E0E4ED;
    color: #203564;
    font-size: 1rem;
}
tbody tr:last-child td {
    border-bottom: none;
}
.special-offer-banner {
    background: #297852;
    color: #fff;
    padding: 18px 24px;
    border-radius: 16px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 4px 22px 0 rgba(41,120,82,0.12);
    letter-spacing: 0.01em;
}

/* ================== CONTACT INFO STYLES ================== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 18px 0;
}
.contact-info p {
    color: #203564;
    font-size: 1.09rem;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    gap: 13px;
}
.contact-info img {
    width: 22px;
    height: 22px;
    margin-right: 0px;
}

/* ================== CTA BUTTON (GENERIC) ================== */
.cta-button {
    display: inline-block;
    background: #297852;
    color: #ffffff;
    border-radius: 100px;
    padding: 16px 38px;
    font-size: 1.25rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 900;
    letter-spacing: 0.045em;
    box-shadow: 0 8px 42px 0 rgba(41,120,82,0.09);
    border: none;
    cursor: pointer;
    margin-top: 6px;
    margin-bottom: 14px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.14s;
}
.cta-button:hover, .cta-button:focus {
    background: #203564;
    color: #fff;
    box-shadow: 0 12px 32px 0 rgba(32,53,100,0.13);
    transform: scale(1.035);
}

/* ================== FOOTER ================== */
footer {
    background: #203564;
    color: #ffffff;
    padding: 38px 0 38px 0;
}
footer .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
footer nav {
    display: flex;
    flex-direction: row;
    gap: 30px;
}
footer nav a {
    color: #fff;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1.03rem;
    opacity: 0.95;
    transition: color 0.15s, opacity 0.13s;
}
footer nav a:hover, footer nav a:focus {
    color: #297852;
    opacity: 1;
}
.footer-contact {
    color: #fff;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 0.98rem;
    opacity: 0.83;
}
footer img {
    max-width: 80px;
}
@media (max-width: 900px) {
    footer .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* ================== FAQ ================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.faq-item {
    background: #F7F7F7;
    border-radius: 14px;
    box-shadow: 0 2px 10px 0 rgba(32,53,100,0.07);
    padding: 20px 22px;
    margin-bottom: 20px;
}
.faq-item h3 {
    font-size: 1.13rem;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: #203564;
}
.faq-item p {
    color: #203564;
    font-size: 1.02rem;
}

/* ================== THANK YOU PAGE ================== */
.text-section a.cta-button {
    margin-top: 24px;
    margin-bottom: 8px;
}

/* ================== COOKIE BANNER  ================== */
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 5001;
    background: #203564;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 26px 30px;
    box-shadow: 0 -4px 32px 0 rgba(32,53,100,0.2);
    gap: 22px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 1.11rem;
    border-radius: 20px 20px 0 0;
    animation: cookiebanner-fadein 0.65s cubic-bezier(0.5,0,0.2,1);
}
@keyframes cookiebanner-fadein {
    from { opacity:0; transform:translateY(44px);}
    to { opacity:1; transform:translateY(0); }
}
.cookie-banner-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}
.cookie-btn {
    padding: 11px 24px;
    border-radius: 100px;
    border: none;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 800;
    font-size: 1.01rem;
    opacity: 1;
    cursor: pointer;
    margin: 0 2px;
    transition: background 0.14s, color 0.14s, opacity 0.13s, box-shadow 0.18s;
    box-shadow: 0 3px 14px 0 rgba(41,120,82,0.04);
}
.cookie-btn.accept {
    background: #297852;
    color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
    background: #216f47;
    color: #fff;
    box-shadow: 0 9px 30px 0 rgba(41,120,82,0.11);
}
.cookie-btn.reject {
    background: #fff;
    color: #203564;
    border: 2px solid #297852;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
    background: #297852;
    color: #fff;
}
.cookie-btn.settings {
    background: transparent;
    color: #FFF;
    border: 2px solid #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
    background: #fff;
    color: #203564;
}
/* ================== COOKIE MODAL ================== */
.cookie-modal{
    position: fixed;
    z-index: 5200;
    left: 0; right: 0; top: 0; bottom: 0;
    background: rgba(32,53,100, 0.77);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: cookie-modal-fadein 0.35s cubic-bezier(0.6,0,0.4,1);
}
@keyframes cookie-modal-fadein {
    from { opacity:0; }
    to   { opacity:1; }
}
.cookie-modal-content {
    background: #fff;
    color: #203564;
    max-width: 440px;
    margin: 0 6vw;
    border-radius: 26px;
    padding: 44px 36px 32px 36px;
    box-shadow: 0 10px 40px 0 rgba(32,53,100,0.18);
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    animation: cookiemodal-popin .43s cubic-bezier(.45,.03,.46,.94);
}
@keyframes cookiemodal-popin {
    from { opacity: 0; transform: translateY(50px) scale(.9); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.cookie-category {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    font-size: 1.11rem;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    margin-bottom: 3px;
}
.cookie-category label {
    font-weight: 600;
}
.cookie-category input[type=checkbox] {
    appearance: none;
    width: 28px;
    height: 16px;
    background: #E0E4ED;
    border-radius: 30px;
    position: relative;
    outline: none;
    cursor: pointer;
    vertical-align: middle;
    transition: background 0.2s;
}
.cookie-category input[type=checkbox]:checked {
    background: #297852;
}
.cookie-category input[type=checkbox]::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 12px;
    height: 12px;
    background: #FFF;
    border-radius: 50%;
    transition: transform 0.18s;
}
.cookie-category input[type=checkbox]:checked::before {
    transform: translateX(12px);
}
.cookie-modal-close {
    background: transparent;
    color: #297852;
    border: none;
    font-size: 2.1rem;
    position: absolute;
    right: 36px;
    top: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.15s, color 0.15s;
    padding: 8px 14px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
    background: rgba(41,120,82,0.09);
    color: #203564;
}
.cookie-categories .cookie-category .always-enabled {
    color: #297852;
    font-weight: 800;
    font-size: 1.035rem;
    margin-left: 10px;
}

/* ================== RESPONSIVENESS ================== */
@media (max-width: 1200px) {
    .card, .feature {
        min-width: 180px;
        padding-left: 14px;
        padding-right: 14px;
    }
}
@media (max-width: 900px) {
    .feature-grid, .card-container {
        flex-direction: column;
        gap: 20px;
    }
    .contact-info { gap: 10px; }
    header .container, footer .container {
        max-width: 100vw;
    }
}
@media (max-width: 768px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    h1, .hero-headline { font-size: 2rem; }
    h2 { font-size: 1.15rem; }
    .feature-grid {
        gap: 14px;
    }
    .section {
        padding: 22px 6px;
        margin-bottom: 38px;
    }
    .content-wrapper {
        gap: 20px;
    }
    .text-image-section {
        flex-direction: column;
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .footer-contact, .special-offer-banner {
        font-size: 0.95rem;
        padding: 10px 6px;
    }
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px 10px;
    }
    .cookie-modal-content {
        padding: 23px 10px 20px 14px;
    }
}

/* ================== GENERAL INTERACTIONS ================== */
button, .cta-button, .cookie-btn {
    outline: none;
}
button:focus-visible, .cta-button:focus-visible, .cookie-btn:focus-visible {
    outline: 3px solid #297852;
    outline-offset: 2px;
}

/* ================== GEOMETRIC & HIGH CONTRAST DECOR ================== */
/* For decorative strong lines and visual geometric focus */
.section {
    border-top: 5px solid #297852;
    box-shadow: 0 10px 36px 0 rgba(32,53,100,0.08);
}
.feature {
    border-left: 6px solid #297852;
    background: #fff;
    box-shadow: 0 5px 16px 0 rgba(32,53,100,0.05);
}
.card {
    border-left: 4px solid #203564;
    background: #fff;
}

/* ================== PRINT/ACCESSIBILITY ================== */
@media print {
    header, footer, .cookie-banner, .cookie-modal {
        display: none !important;
    }
    .section {
        box-shadow: none;
        border: none;
        background: #fff;
    }
}

/* ================== END OF CSS ================== */
