/*--------------------------*
  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;
}
/* HTML5 display-role reset */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}
body {
    line-height: 1.6;
    background: #F4F7FB;
    color: #09325B;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    min-height: 100vh;
    position: relative;
}
*, *::before, *::after {
    box-sizing: border-box;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul, ol {
    list-style: none;
    padding: 0;
}
a {
    color: #09325B;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #A4C857;
    outline: none;
}
/*------------------*
  BRAND FONTS
*-------------------*/
h1, h2, h3, h4, h5, h6, .brand-logo {
    font-family: 'Roboto Slab', Arial, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}
body, p, li, blockquote {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-weight: 400;
}
/* Strong visual scale for headings */
h1 {
    font-size: 2.7rem;
    line-height: 1.1;
    margin-bottom: 24px;
}
h2 {
    font-size: 2rem;
    line-height: 1.14;
    margin-bottom: 20px;
}
h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}
p, li, a, blockquote {
    font-size: 1rem;
}
.subheadline {
    font-size: 1.25rem;
    font-weight: 500;
    color: #09325B;
    margin-bottom: 24px;
}
.text-section {
    margin-bottom: 16px;
}
/*-------------------*
  LAYOUT & CONTAINERS
*--------------------*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(9,50,91,0.07);
    padding: 28px 24px;
    min-width: 260px;
    flex: 1 1 280px;
    transition: box-shadow 0.3s, transform 0.2s;
}
.card:hover {
    box-shadow: 0 7px 24px 3px rgba(9,50,91,0.10);
    transform: translateY(-4px) scale(1.012);
    z-index: 2;
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 2px 12px 1px rgba(9,50,91,0.10);
    margin-bottom: 24px;
    min-width: 220px;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
/*--------------------*
  HEADER & NAVIGATION
*---------------------*/
header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 14px 0 rgba(9,50,91,0.06);
    z-index: 10;
    position: sticky;
    top: 0;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 70px;
}
.brand-logo img {
    height: 48px;
    width: auto;
    margin-right: 18px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}
.main-nav a {
    font-family: 'Roboto Slab', Arial, Helvetica, sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: #09325B;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
    color: #A4C857;
}
.cta-primary {
    display: inline-block;
    background: #A4C857;
    color: #09325B;
    font-family: 'Roboto Slab', Arial, Helvetica, sans-serif;
    font-weight: 800;
    font-size: 1.06rem;
    letter-spacing: 0.04em;
    padding: 13px 30px;
    border: none;
    border-radius: 10px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.25s;
    box-shadow: 0 3px 11px 0 rgba(164,200,87,0.075);
    margin-left: 16px;
}
.cta-primary:hover, .cta-primary:focus {
    background: #09325B;
    color: #fff;
    box-shadow: 0 5px 20px 2px rgba(9,50,91,0.10);
}
/* Hamburger for mobile */
.mobile-menu-toggle {
    background: #A4C857;
    border: none;
    border-radius: 7px;
    color: #09325B;
    font-size: 2rem;
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px 0 rgba(164,200,87,0.10);
    transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus {
    outline: 2px solid #A4C857;
}
/*---------------------*
 MOBILE MENU OVERLAY
*----------------------*/
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #09325B;
    color: #fff;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 24px 24px 24px;
    transform: translateX(-100vw);
    transition: transform 0.35s cubic-bezier(.52,1.64,.37,.89);
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    font-size: 2.1rem;
    background: none;
    border: none;
    color: #A4C857;
    margin-bottom: 24px;
    cursor: pointer;
    align-self: flex-end;
    transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    color: #fff;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
}
.mobile-nav a {
    color: #fff;
    font-size: 1.22rem;
    font-family: 'Roboto Slab', Arial, Helvetica, sans-serif;
    font-weight: 700;
    padding: 15px 8px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
    background: #A4C857;
    color: #09325B !important;
}
/* Show/hide nav on mobile */
@media (max-width: 990px) {
    .main-nav {
        display: none;
    }
    .cta-primary {
        margin-left: 0;
    }
    .mobile-menu-toggle {
        display: flex;
    }
}
@media (max-width: 620px) {
    .mobile-menu {
        padding: 30px 6vw 18px 7vw;
    }
    .mobile-nav a {
        font-size: 1.1rem;
    }
}
/*-------------------*
    HERO & CTA
*--------------------*/
.hero {
    background: #09325B;
    color: #fff;
    border-radius: 0 0 48px 48px;
    margin-bottom: 48px;
    position: relative;
    min-height: 340px;
}
.hero .container {
    min-height: 310px;
    display: flex;
    align-items: center;
}
.hero h1 {
    color: #fff;
    font-size: 2.5rem;
}
.hero .subheadline {
    color: #f4f7fb;
    opacity: 0.93;
}
.cta-section {
    background: #A4C857;
    color: #09325B;
    border-radius: 24px;
    margin-bottom: 60px;
    padding: 40px 20px;
    text-align: center;
}
.cta-section h2,
.cta-section p {
    color: #09325B;
}
.cta-section .cta-primary {
    margin-top: 20px;
    background: #09325B;
    color: #fff;
    border-radius: 10px;
}
.cta-section .cta-primary:hover {
    background: #fff;
    color: #09325B;
    box-shadow: 0 2px 20px 2px rgba(9,50,91,0.10);
}
/*-------------------*
   FEATURE GRID
*--------------------*/
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: space-between;
    margin: 30px 0 10px 0;
}
.feature-grid li {
    flex: 1 1 220px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 13px 0 rgba(9,50,91,0.07);
    padding: 32px 18px 22px 18px;
    display: flex;
    flex-direction: column;
    min-width: 210px;
    gap: 10px;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.18s;
}
.feature-grid li:hover {
    box-shadow: 0 6px 24px 2px rgba(9,50,91,0.13);
    transform: translateY(-6px) scale(1.012);
    z-index: 2;
}
.feature-grid img {
    height: 42px;
    width: 42px;
    margin-bottom: 6px;
}
.feature-grid h3 {
    margin-bottom: 2px;
    color: #09325B;
}
/*-------------------*
   REVIEW LISTS
*--------------------*/
.review-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 22px 0 8px 0;
}
.review-list li {
    flex: 1 1 260px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 13px 0 rgba(9,50,91,0.07);
    padding: 26px 18px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}
.review-list h3 {
    color: #09325B;
}
.review-list a {
    color: #A4C857;
    font-weight: 700;
    margin-top: 6px;
    transition: color 0.18s;
}
.review-list a:hover,
.review-list a:focus {
    text-decoration: underline;
    color: #09325B;
}
/*-------------------*
  STORIES PREVIEW
*--------------------*/
.stories-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 18px 0;
}
.stories-preview li {
    flex: 1 1 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 13px 0 rgba(9,50,91,0.07);
    padding: 28px 24px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 16px;
}
.stories-preview h3 {
    color: #09325B;
}
.stories-preview a {
    color: #A4C857;
    font-weight: 700;
    transition: color 0.18s;
}
.stories-preview a:hover,
.stories-preview a:focus {
    color: #09325B;
    text-decoration: underline;
}
/*-------------------*
    TEAM LIST
*--------------------*/
.team-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 12px 0 24px 0;
}
.team-list li {
    flex: 1 1 200px;
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 12px 0 rgba(9,50,91,0.07);
    padding: 20px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.team-list h3 {
    color: #09325B;
}
/*-------------------*
   VALUES LIST
*--------------------*/
.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 14px;
}
.values-list li {
    flex: 1 1 210px;
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 11px 1px rgba(9,50,91,0.07);
    padding: 25px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}
.values-list img {
    width: 38px;
    height: 38px;
    margin-bottom: 6px;
}
.values-list h3 {
    color: #09325B;
}
/*-------------------*
    TEST LISTS, FAQ
*--------------------*/
.test-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 18px;
}
.test-list li {
    flex: 1 1 250px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 11px 0 rgba(9,50,91,0.08);
    padding: 22px 14px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
}
.filters {
    margin-top: 14px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 7px;
}
.filters span {
    background: #A4C857;
    color: #fff;
    padding: 4px 13px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 4px;
}
.filters strong {
    font-weight: 700;
    color: #09325B;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.faq-item {
    background: #fff;
    border-radius: 11px;
    box-shadow: 0 2px 11px 1px rgba(9,50,91,0.08);
    padding: 18px 12px 14px 18px;
    transition: box-shadow 0.2s;
}
.faq-item h3 {
    color: #09325B;
    margin-bottom: 7px;
    font-size: 1.09rem;
}
.faq-item p {
    color: #09325B;
}
/*-------------------*
    BENEFITS LIST
*--------------------*/
.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 20px 0;
}
.benefits li {
    flex: 1 1 150px;
    background: #f8fafc;
    border-radius: 11px;
    box-shadow: 0 2px 8px 1px rgba(9,50,91,0.06);
    padding: 16px 12px 12px 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 7px;
}
.benefits img {
    width: 24px;
    height: 24px;
}
/*-------------------*
    HIGHLIGHT SECTIONS
*--------------------*/
.featured-review {
    background: #F4F7FB;
    border-radius: 20px;
    padding: 40px 20px;
    margin-bottom: 60px;
}
.highlighted-test {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 11px 0 rgba(9,50,91,0.09);
    padding: 30px 22px;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.highlighted-test h3 {
    color: #09325B;
}
/*-------------------*
    TESTIMONIALS
*--------------------*/
.testimonial-card {
    background: #fff;
    color: #09325B;
    box-shadow: 0 2px 10px 0 rgba(9,50,91,0.11);
    border-left: 7px solid #A4C857;
    gap: 20px;
    padding: 24px 20px 16px 20px;
    margin-bottom: 28px;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 1.12rem;
    font-style: normal;
    position: relative;
}
.testimonial-card blockquote {
    color: #09325B;
    font-weight: 600;
    font-size: 1.18rem;
    margin: 0 0 8px 0;
}
.testimonial-card span {
    font-family: 'Roboto Slab', Arial, Helvetica, sans-serif;
    color: #A4C857;
    font-weight: 800;
    font-size: 1rem;
}
/* HIGH CONTRAST for testimonial text */
@media (max-width: 600px) {
    .testimonial-card {
        font-size: 1rem;
        padding: 16px 9px;
    }
}
/*-------------------*
    LEGAL TEXTS
*--------------------*/
.legal-text {
    font-size: 1rem;
    color: #09325B;
    background: #fff;
    border-radius: 11px;
    box-shadow: 0 2px 12px 0 rgba(9,50,91,0.07);
    padding: 26px 18px 18px 18px;
    margin-top: 18px;
}
.legal-text h2 {
    color: #09325B;
    font-size: 1.25rem;
    margin-top: 18px;
    margin-bottom: 7px;
}
.legal-text ul {
    margin-left: 18px;
    margin-bottom: 10px;
}
.legal-text li {
    margin-bottom: 7px;
}
/*-------------------*
    CONTACT HERO
*--------------------*/
.contact-hero {
    background: #A4C857;
    color: #09325B;
    border-radius: 22px;
    margin-bottom: 35px;
    padding: 30px 20px 28px 20px;
}
.contact-hero h1{
    color: #09325B;
}
.contact-hero p img {
    vertical-align: middle;
    margin-right: 4px;
}
.contact-form {
    background: #fff;
    border-radius: 17px;
    box-shadow: 0 2px 12px 0 rgba(9,50,91,0.07);
    margin-bottom: 35px;
    padding: 30px 16px 25px 16px;
}
.contact-form a {
    color: #A4C857;
    font-weight: 700;
}
/*----------------------*
    FOOTER
*-----------------------*/
footer {
    background: #09325B;
    color: #FFF;
    padding: 36px 0 22px 0;
    border-radius: 34px 34px 0px 0px;
    box-shadow: 0 -2px 15px 2px rgba(9,50,91,0.08);
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-bottom: 14px;
}
.footer-nav a {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: color 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
    color: #A4C857;
    text-decoration: underline;
}
.footer-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.footer-info img {
    height: 34px;
    width: auto;
}
footer .text-section p {
    color: #fff;
    font-size: 0.93rem;
    font-weight: 600;
}
/*------------------------*
    COOKIE CONSENT BANNER
*-------------------------*/
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    color: #09325B;
    box-shadow: 0px -2px 24px 0px rgba(9,50,91,0.10);
    z-index: 2000;
    padding: 22px 32px 20px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    animation: slideUpBanner 0.45s cubic-bezier(.18,.4,.2,1.2);
    border-radius: 20px 20px 0 0;
}
@keyframes slideUpBanner {
    from {transform: translateY(110%);} to {transform: translateY(0);}
}
.cookie-banner .cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .cookie-btn {
    background: #A4C857;
    color: #09325B;
    border: none;
    font-family: 'Roboto Slab', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 9px;
    padding: 9px 22px;
    margin-top: 0;
    cursor: pointer;
    transition: background 0.21s, color 0.21s;
}
.cookie-banner button:hover, .cookie-banner .cookie-btn:hover {
    background: #09325B;
    color: #fff;
}
.cookie-banner .cookie-btn-secondary {
    background: #fff;
    color: #A4C857;
    border: 2px solid #A4C857;
}
.cookie-banner .cookie-btn-secondary:hover {
    background: #A4C857;
    color: #09325B;
}
.cookie-banner .cookie-btn-settings {
    background: #09325B;
    color: #fff;
    border: none;
}
.cookie-banner .cookie-btn-settings:hover {
    background: #A4C857;
    color: #09325B;
}
/*----------------------*
    COOKIE MODAL
*-----------------------*/
.cookie-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(9,50,91,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2100;
    animation: fadeCookieModal 0.25s;
}
@keyframes fadeCookieModal {
    from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
    background: #fff;
    color: #09325B;
    border-radius: 18px;
    box-shadow: 0 8px 34px 0 rgba(9,50,91,0.18);
    padding: 30px 22px 24px 24px;
    width: 97vw;
    max-width: 410px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    position: relative;
    animation: growCookieModal 0.22s;
}
@keyframes growCookieModal {
    from { transform: scale(0.87); opacity: 0.6; } to { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
    position: absolute;
    top: 19px;
    right: 21px;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #A4C857;
    cursor: pointer;
    transition: color 0.15s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
    color: #09325B;
}
.cookie-modal label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 1.07rem;
}
.cookie-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding: 9px 0;
    border-bottom: 1px solid #A4C85722;
}
.cookie-category:last-child {
    border-bottom: none;
}
.cookie-category input[type="checkbox"] {
    accent-color: #A4C857;
    width: 18px;
    height: 18px;
}
.cookie-category .cookie-essential {
    font-weight: 700;
    color: #A4C857;
}
.cookie-modal-actions {
    display: flex;
    gap: 13px;
    margin-top: 10px;
    justify-content: flex-end;
}
.cookie-modal-actions button {
    font-family: 'Roboto Slab', Arial, Helvetica, sans-serif;
    padding: 8px 18px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    background: #A4C857;
    color: #09325B;
    cursor: pointer;
    transition: background 0.19s, color 0.19s;
}
.cookie-modal-actions button.cookie-btn-secondary {
    background: #fff;
    color: #A4C857;
    border: 2px solid #A4C857;
}
.cookie-modal-actions button.cookie-btn-secondary:hover {
    background: #A4C857;
    color: #09325B;
}
.cookie-modal-actions button:hover {
    background: #09325B;
    color: #fff;
}
/*----------------------*
     MEDIA QUERIES
*-----------------------*/
@media (max-width: 1200px) {
    .container {
        max-width: 96vw;
    }
}
@media (max-width: 1024px) {
    .feature-grid,
    .review-list,
    .stories-preview,
    .team-list,
    .values-list,
    .test-list ul,
    .benefits {
        gap: 16px;
    }
}
@media (max-width: 900px) {
    header .container {
        flex-wrap: wrap;
        gap: 8px;
    }
    .footer-info {
        flex-direction: column;
        gap: 5px;
    }
}
@media (max-width: 768px) {
    .feature-grid,
    .review-list,
    .stories-preview,
    .team-list,
    .values-list,
    .test-list ul,
    .benefits {
        flex-direction: column;
        gap: 19px;
    }
    .content-grid,
    .text-image-section,
    .footer-info {
        flex-direction: column;
        gap: 23px;
    }
    .hero .container {
        min-height: unset;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .cta-section,
    .hero {
        padding-left: 12px;
        padding-right: 12px;
    }
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.32rem;
    }
}
@media (max-width: 500px) {
    .cookie-banner {
        padding: 14px 8px;
        font-size: 0.95rem;
    }
    .cookie-modal .cookie-modal-content {
        padding: 19px 2vw;
    }
    .cta-primary, .cookie-banner button, .cookie-banner .cookie-btn, .cookie-modal-actions button {
        font-size: 0.93rem;
        padding: 9px 12px;
    }
}
/* Accessibility: Focus States */
a:focus,
button:focus,
.cookie-nav button:focus,
.cta-primary:focus,
.mobile-menu-toggle:focus {
    outline: 2px solid #A4C857;
    outline-offset: 1px;
}
/* Misc spacing for content */
main > section {
    margin-bottom: 60px;
    padding: 40px 20px;
}
/* Minimum margin for all content cards and sections */
.card,
.feature-grid li,
.stories-preview li,
.team-list li,
.values-list li,
.review-list li,
.test-list li {
    margin-bottom: 20px !important;
}
.section, main > section {
    margin-bottom: 60px !important;
}
/* Extra: Hide cookie banner/modals by default via JS, show via 'show' class */
.cookie-banner,
.cookie-modal {
    display: none;
}
.cookie-banner.show,
.cookie-modal.show {
    display: flex;
}
