/* ================================
   CSS Reset & Normalize (Mobile-First)
   ================================ */
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 {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}
body {
    background: #F6F7F9;
    color: #133F6C;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    min-height: 100vh;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
od, ul, li {
    list-style: none;
}
a {
    background-color: transparent;
    color: #133F6C;
    text-decoration: none;
    transition: color .18s;
}
a:hover, a:focus {
    color: #49B24B;
}
img {
    max-width: 100%;
    display: block;
    border: none;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
    border-radius: 0;
    outline: none;
    background: none;
    border: none;
}
button {
    cursor: pointer;
    transition: background .22s, color .18s, box-shadow .15s;
}


/* ================================
    Brand Fonts
   ================================ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
    --primary: #133F6C;
    --secondary: #49B24B;
    --accent: #F6F7F9;
    --brand-blue: #133F6C;
    --brand-green: #49B24B;
    --bright-yellow: #FFE871;
    --fun-coral: #FF7373;
    --highlight: #FCD303;
    --deep-purple: #895AC3;
    --white: #fff;
    --gray: #c9d3e0;
    --shadow: 0 2px 12px 0 rgba(19,63,108,0.10);
}


/* ================================
    Typography
   ================================ */
h1, .h1 {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: var(--primary);
    margin-bottom: 18px;
}
h2, .h2 {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.18;
    color: var(--primary);
    margin-bottom: 16px;
}
h3, .h3 {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-size: 1.17rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
p, ul, ol, .subheadline, .pricing-notes {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #212b36;
    margin-bottom: 16px;
}
ul, ol {
    padding-left: 24px;
    margin-bottom: 20px;
}
li {
    margin-bottom: 10px;
    position: relative;
}
li strong {
    color: var(--secondary);
    font-weight: 500;
}
.subheadline {
    font-family: 'Montserrat', cursive, sans-serif;
    color: var(--deep-purple);
    font-size: 1.19rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.text-section {
    max-width: 800px;
    margin: 0 auto 0 auto;
}

@media (min-width: 700px) {
    h1, .h1 {
        font-size: 3rem;
    }
    h2, .h2 {
        font-size: 2rem;
    }
    h3, .h3 {
        font-size: 1.32rem;
    }
}


/* ================================
    Layout Containers
   ================================ */
.container {
    width: 100%;
    max-width: 1200px;
    padding-left: 18px;
    padding-right: 18px;
    margin: 0 auto;
    box-sizing: border-box;
}
.content-wrapper {
    width: 100%;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: transparent;
    border-radius: 18px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 32px 28px;
    transition: box-shadow .18s, transform .18s;
    min-width: 240px;
}
.card:hover {
    box-shadow: 0 8px 32px 0 rgba(19,63,108,0.22);
    transform: translateY(-3px) scale(1.04) rotate(-1deg);
}

.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;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
    position: relative;
    min-width: 220px;
    margin-bottom: 22px;
    transition: box-shadow .18s, transform .15s;
    border-left: 6px solid var(--bright-yellow);
}
.testimonial-card p {
    color: #212b36;
    font-weight: 500;
    margin: 0 0 6px 0;
}
.testimonial-card .testimonial-name {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1em;
    color: var(--secondary);
    font-weight: bold;
    letter-spacing: .01em;
}
.testimonial-card:hover {
    box-shadow: 0 4px 20px 0 rgba(19,63,108,0.18);
    transform: translateY(-3px) scale(1.02);
    border-left: 6px solid var(--deep-purple);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 18px;
    min-width: 180px;
    margin-bottom: 22px;
}

/* Required: .features-grid for advantages section */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
    margin-bottom: 24px;
}
.feature {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 22px 16px;
    min-width: 190px;
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    margin-bottom: 20px;
    transition: box-shadow .15s, transform .15s;
    border: 3px solid transparent;
}
.feature:hover {
    box-shadow: 0 8px 32px 0 rgba(73,178,75,0.13);
    border: 3px solid var(--secondary);
    transform: scale(1.03) rotate(-2deg);
}
.feature img {
    width: 36px;
    height: 36px;
    margin-bottom: 6px;
}
.feature h3 {
    color: var(--deep-purple);
}

.icon-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
    margin: 24px 0 12px 0;
}
.icon-row img {
    width: 48px;
    height: 48px;
}

.trust-signals {
    margin: 20px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}
.trust-signals span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--deep-purple);
    font-weight: 500;
    background: var(--accent);
    border-radius: 17px;
    padding: 5px 17px;
}
.trust-signals img {
    width: 24px !important;
    height: 24px !important;
}

/* Section and card spacing */
section, .section {
    margin-bottom: 60px;
    padding: 40px 0 16px 0;
    border-radius: 17px;
    position: relative;
}

@media (max-width: 700px) {
    .container {
        padding: 0 10px;
    }
    .features-grid, .card-container, .content-grid {
        flex-direction: column;
        gap: 20px;
    }
    .testimonial-list {
        flex-direction: column;
        gap: 20px;
    }
}


/* ================================
    Hero & CTA Sections
   ================================ */
.hero {
    background: linear-gradient(97deg, var(--highlight) 15%, var(--accent) 70%, var(--fun-coral) 120%);
    padding: 54px 0 38px 0;
    border-radius: 0 0 55px 55px;
    box-shadow: 0 6px 50px 0 rgba(255,232,113,0.15);
    margin-bottom: 54px;
    min-height: 230px;
}
.hero .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.hero h1 {
    color: var(--primary);
    background: none;
}
.hero .subheadline {
    color: var(--fun-coral);
}
.cta-section {
    background: var(--brand-green);
    color: var(--white);
    border-radius: 26px;
    margin-bottom: 58px;
    box-shadow: 0 6px 34px 0 rgba(73,178,75,0.12);
    text-align: center;
    padding: 38px 0 36px 0;
    position: relative;
    overflow: hidden;
    /* playful decorative waves */
}
.cta-section h2, .cta-section p {
    color: var(--white);
}
.cta-section .cta-primary {
    margin-top: 18px;
}
@media (max-width: 700px) {
    .hero, .cta-section {
        padding: 26px 5px 18px 5px;
        border-radius: 0 0 25px 25px;
    }
}


/* ================================
    Buttons & CTAs
   ================================ */
.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.01rem;
    padding: 13px 32px;
    border-radius: 999px;
    box-shadow: 0 2px 12px 0 rgba(19,63,108,0.10);
    transition: background .22s, box-shadow .18s, transform .14s;
    border: 0;
    margin-top: 14px;
    letter-spacing: .03em;
    text-shadow: 0 1px 6px rgba(73,178,75,0.04);
}
.cta-primary:hover, .cta-primary:focus {
    background: var(--secondary);
    color: var(--primary);
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 5px 18px 0 rgba(73,178,75,0.20);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bright-yellow);
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
    font-size: 1rem;
    border-radius: 999px;
    padding: 11px 22px;
    box-shadow: 0 2px 8px #FFE87166;
    border: 0;
    margin-top: 12px;
    letter-spacing: .03em;
    transition: background .18s, color .13s;
}
.cta-secondary:hover, .cta-secondary:focus {
    background: var(--fun-coral);
    color: var(--white);
}

button, .button {
    font-family: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    background: var(--primary);
    color: var(--white);
    padding: 10px 26px;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: 500;
    transition: background .18s, color .14s;
}
button:hover, .button:hover {
    background: var(--secondary);
    color: var(--white);
}

/* animated round pulse for main CTA */
.cta-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    transform: translate(-50%,-50%) scale(0.8);
    opacity: 0;
    background: var(--highlight);
    transition: opacity .22s, transform .23s;
    z-index: -1;
    pointer-events: none;
    box-shadow: 0 2px 16px 0 #FCD30344;
}
 .cta-primary:hover::after, .cta-primary:focus::after {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1.13);
}

/* ================================
    Header & Navigation
   ================================ */
header {
    background: var(--white);
    box-shadow: 0 2px 14px 0 rgba(19,63,108,0.04);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1001;
    min-height: 70px;
}
header .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px 18px;
    min-height: 62px;
    justify-content: space-between;
}
.logo-link {
    display: flex;
    align-items: center;
    margin-right: 18px;
}
.logo-link img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 4px 8px #133f6c22);
    transition: transform .13s;
}
.logo-link:hover img {
    transform: scale(1.1) rotate(-5deg);
}
.main-nav {
    display: none;
}
.main-nav {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-left: auto;
}
.main-nav a {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 12px;
    color: var(--primary);
    transition: background .13s, color .12s, transform .13s;
    position: relative;
}
.main-nav a:hover, .main-nav a:focus {
    background: var(--accent);
    color: var(--secondary);
    transform: translateY(-2px) scale(1.06);
}
.main-nav .cta-primary {
    margin-left: 10px;
    padding: 10px 26px;
    color: var(--white);
    font-size: 1rem;
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-green);
    color: var(--primary);
    font-size: 2em;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    margin-left: auto;
    transition: background .18s;
    outline: none;
    z-index: 1101;
}
.mobile-menu-toggle:hover {
    background: var(--fun-coral);
    color: var(--white);
}
@media (min-width: 1020px) {
    .main-nav { display: flex; }
    .mobile-menu-toggle { display: none; }
}
@media (max-width: 1019px) {
    .main-nav { display: none !important; }
    .mobile-menu-toggle { display: flex; }
}

/* ================================
    Mobile Navigation Overlay
   ================================ */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; height: 100vh; width: 100vw;
    background: rgba(19,63,108,0.92);
    z-index: 1100;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .34s cubic-bezier(.78,0,.25,1), opacity .15s 0s;
    will-change: transform, opacity;
}
.mobile-menu.open {
    transform: translateX(0%);
    opacity: 1;
    pointer-events: auto;
    transition: transform .34s cubic-bezier(.83,0,.29,1), opacity .11s 0s;
}
.mobile-menu .mobile-menu-close {
    background: none;
    color: var(--bright-yellow);
    font-size: 2em;
    border: none;
    margin: 24px 24px 8px 24px;
    align-self: flex-end;
    cursor: pointer;
    transition: color .17s;
    z-index: 1202;
}
.mobile-menu .mobile-menu-close:hover {
    color: var(--fun-coral);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--white);
    color: var(--primary);
    padding: 32px 34px 48px 34px;
    margin-top: 10vh;
    margin-right: 0;
    min-width: min(360px, 90vw);
    border-top-left-radius: 32px;
    border-bottom-left-radius: 32px;
    box-shadow: 0 4px 32px 0 #133f6c2d;
    align-items: flex-start;
    animation: popLeftIn .52s cubic-bezier(.34,1.74,.26,.95);
}
@keyframes popLeftIn {
  from { opacity: 0; transform: translateX(80px) scale(.92); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
.mobile-nav a {
    color: var(--primary);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.14em;
    padding: 14px 5px 10px 6px;
    border-radius: 11px;
    transition: background .16s, color .15s;
    width: 100%;
    text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    color: var(--secondary);
    background: var(--accent);
}
/* focus trap visual */
.mobile-nav a:focus {
    outline: 3px solid var(--bright-yellow);
    outline-offset: 2px;
}

@media (max-width: 1019px) {
    .mobile-menu {display: flex;}
    .main-nav {display: none!important;}
}


/* ================================
    Footer
   ================================ */
footer {
    background: var(--primary);
    color: var(--white);
    margin-top: 48px;
    border-radius: 40px 40px 0 0;
    padding: 36px 0 20px 0;
    box-shadow: 0 -2px 24px #133f6c12;
}
footer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-logo {
    flex: 0 0 auto;
    margin-right: 40px;
}
.footer-logo img {
    width: 48px;
    height: auto;
    filter: drop-shadow(0 6px 18px #fff1);
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}
.footer-nav a {
    color: var(--bright-yellow);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.01em;
    transition: color .15s;
    padding: 3px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
    color: var(--fun-coral);
}
.footer-contact {
    color: #fff;
    font-size: 0.99em;
    margin-top: 8px;
}
.footer-contact a {
    color: var(--bright-yellow);
    font-weight: 500;
    word-break: break-all;
}
@media(max-width:900px) {
    footer .container {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    .footer-logo {
      margin-bottom: 12px;
    }
}


/* ================================
    Cards & List Elements
   ================================ */
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.service-list, .feature-list, .pricing-notes {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 18px;
}
.service-list li, .feature-list li {
    background: var(--accent);
    border-radius: 11px;
    padding: 13px 14px 13px 38px;
    margin-bottom: 14px;
    position: relative;
    font-size: 1.017rem;
    box-shadow: 0 1px 6px #133f6c0d;
}
.service-list li:before, .feature-list li:before {
    content: '✓';
    position: absolute;
    left: 12px;
    color: var(--brand-green);
    font-weight: bold;
    font-size: 1.15em;
    top: 50%;
    transform: translateY(-50%);
}

.faq-list {
    margin: 0;
}
.faq-list dt {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 7px;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-top: 20px;
}
.faq-list dd {
    margin-bottom: 10px;
    color: #34495e;
}

.faq-snippet h3 {
    color: var(--primary);
    margin-top: 20px;
    margin-bottom: 2px;
}
.faq-snippet p {
    margin-bottom: 14px;
}


/* ================================
    Contact & Callouts
   ================================ */
.contact-details p {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 10px;
    color: #222;
}
.contact-details img {
    width: 24px;
    height: 24px;
}
.ds-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    padding: 10px 16px;
    border-radius: 10px;
    color: var(--primary);
    margin-bottom: 20px;
}
.call-to-action {
    margin-top: 26px;
}
.contact-hint {
    background: var(--highlight);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 17px 20px;
    border-radius: 17px;
    margin: 24px 0;
    color: var(--primary);
    font-size: 1.08em;
    word-break: break-word;
    box-shadow: 0 2px 14px #fff6;
}
.contact-hint img {
    width: 23px;
    margin-right: 8px;
}


/* ================================
    Special Elements
   ================================ */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.pricing-table th, .pricing-table td {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.013em;
    border-bottom: 1px solid #e5ebf2;
    padding: 18px 12px;
    text-align: left;
}
.pricing-table th {
    background: var(--accent);
    color: var(--primary);
}
.pricing-table tr:last-child td {
    border-bottom: none;
}


/* ================================
    Animations for Playful Dynamic Feel
   ================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bouncePulse {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.06) translateY(-4px); }
}
h1, h2, h3, .cta-primary, .feature, .card, .testimonial-card, .contact-details p {
    animation: fadeInUp .85s cubic-bezier(.42,1.8,.62,0.94); 
}
.cta-primary, .feature, .card, .testimonial-card {
    animation-delay: .19s;
}
.cta-primary:hover, .feature:hover, .card:hover, .testimonial-card:hover {
    animation: bouncePulse .23s cubic-bezier(.7, .4, .7, 1.4);
}


/* ================================
    Responsive Design & Flex Controls
   ================================ */
@media (max-width: 900px) {
    .container,
    .content-wrapper,
    .section {
        padding-left: 8px;
        padding-right: 8px;
    }
    .footer-logo {margin-right: 0;}
}
@media (max-width: 700px) {
    .features-grid,
    .card-container,
    .testimonial-list,
    .content-grid,
    .text-image-section {
        flex-direction: column;
        gap: 20px;
    }
    .hero .content-wrapper,
    .cta-section .content-wrapper,
    .footer .container {
        align-items: flex-start;
        text-align: left;
    }
    .footer-logo {margin-bottom: 10px;}
    .footer-nav {flex-direction: row;gap: 14px;}
    .footer-nav a {font-size: .99em;}
    section,
    .section {
      padding: 24px 0 8px 0;
      margin-bottom: 36px;
    }
}

/* Ensure all flex containers have gap and non-overlapping */
.features-grid,
.card-container,
.content-grid,
.text-image-section,
.testimonial-list,
.trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial-list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 16px;
}


/* ================================
    Cookie Consent Banner & Modal
   ================================ */
.cookie-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2000;
    background: var(--white);
    box-shadow: 0 -2px 18px 0 #133f6c33;
    padding: 22px 9vw 19px 9vw;
    border-radius: 23px 23px 0 0;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    animation: fadeInUp .5s cubic-bezier(.9,1.6,.5,1.4)
}
.cookie-banner p {
    font-weight: 500;
    font-size: 1.08em;
}
.cookie-banner .cookie-actions {
    display: flex;
    gap: 22px;
    align-items: center;
    margin-top: 4px;
    flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
    padding: 9px 22px;
    border-radius: 19px;
    border: none;
    font-size: 1em;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    margin-right: 8px;
    box-shadow: 0 1px 7px #133f6c11;
}
.cookie-btn.accept {
    background: var(--brand-green);
    color: var(--white);
}
.cookie-btn.reject {
    background: var(--fun-coral);
    color: var(--white);
}
.cookie-btn.settings {
    background: var(--bright-yellow);
    color: var(--primary);
}
.cookie-btn:focus, .cookie-btn:hover {
    filter: brightness(1.1);
}

@media(max-width:700px) {
    .cookie-banner {
        padding: 18px 2vw 14px 2vw;
        border-radius: 13px 13px 0 0;
    }
    .cookie-banner .cookie-actions {
      gap: 14px;
    }
}

/* Cookie Modal Settings */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    background: rgba(19,63,108,0.70);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    opacity: 1;
    animation: fadeInUp .34s cubic-bezier(.9,1.5,.5,1.16);
}
.cookie-modal.hidden {
    display: none;
    pointer-events: none;
    opacity: 0;
}
.cookie-modal-content {
    background: var(--white);
    padding: 40px 30px 24px 30px;
    border-radius: 22px;
    min-width: 325px;
    max-width: 92vw;
    box-shadow: 0 4px 32px #895ac344;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    animation: fadeInUp .36s cubic-bezier(.8,1.3,.6,1);
}
.cookie-modal-content h2 {
    font-size: 1.35rem;
    margin-bottom: 6px;
    font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 10px;
}
.cookie-category input[type=checkbox] {
    transform: scale(1.2);
    margin-right: 7px;
}
.cookie-category .locked {
    background: var(--brand-green);
    color: var(--white);
    font-size: 0.91em;
    padding: 2px 9px;
    border-radius: 8px;
    margin-left: 7px;
}
.cookie-modal-close {
    position: absolute;
    top: 11px; right: 16px;
    background: none;
    border: none;
    color: var(--fun-coral);
    font-size: 1.6em;
    cursor: pointer;
    z-index: 2;
    transition: color .19s;
}
.cookie-modal-close:hover {
    color: var(--deep-purple);
}

@media (max-width: 400px) {
    .cookie-modal-content {
        padding: 14px 3vw 12px 3vw;
    }
}

/* ================================
    Miscellaneous & Utility
   ================================ */
/* Bright colorful bullet headings */
h2::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    background: var(--highlight);
    border-radius: 8px 25px 17px 8px;
    margin-right: 11px;
    vertical-align: middle;
    box-shadow: 0 1px 6px #fccf0366;
    position: relative;
    top: -2px;
}
h2 { position: relative; }

/* Decorative wavy line (just for extra playfulness) */
.section::after {
    content: '';
    display: block;
    height: 6px;
    width: 100px;
    background: var(--fun-coral);
    border-radius: 999px;
    margin: 24px 0 0 0;
    opacity: .25;
    animation: bouncePulse 1.5s infinite cubic-bezier(.4,.71,.5,1);
}
@media(max-width:600px) {
    .section::after { display: none; }
}

 strong, b {
    font-weight: 700;
    color: var(--primary);
 }

/* Placeholder for visual card bounce!
.card:active, .feature:active {
    animation: bouncePulse .19s cubic-bezier(.7, .4, .7, 1.4);
}
*/

/* ================================
    Accessibility
   ================================ */
:focus {
    outline: 2px solid var(--deep-purple) !important;
    outline-offset: 3px;
}

::-webkit-input-placeholder { color: #c9d3e0; }
::-moz-placeholder { color: #c9d3e0; }
:-ms-input-placeholder { color: #c9d3e0; }
::placeholder { color: #c9d3e0; }


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