/* --- CSS RESET & BASE --- */
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;
}
article,aside,details,figcaption,figure, 
footer,header,hgroup,menu,nav,section {
    display: block;
}
body {
    line-height: 1.5;
    min-height: 100vh;
    background: #F4F8FB;
    color: #193C54;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 0.01em;
    scroll-behavior: smooth;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: #193C54;
    text-decoration: none;
    transition: color 0.15s cubic-bezier(.6,.19,.13,.88);
}
a:focus {
    outline: 2px dashed #F1A208;
    outline-offset: 2px;
}
strong {
    font-weight: 700;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* --- TYPOGRAPHY --- */
h1, .h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    font-size: 2.25rem; /* 36px */
    line-height: 1.15;
    color: #193C54;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
h2, .h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.75rem; /* 28px */
    line-height: 1.2;
    color: #193C54;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
h3, .h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.25rem; /* 20px */
    margin-bottom: 12px;
    color: #193C54;
}
h4, .h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.125rem; /* 18px */
    color: #193C54;
    margin-bottom:8px;
}
p,li,span,button {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
    color: #193C54;
}
input[type="search"] {
    font-family: 'Open Sans', Arial, sans-serif;
}

@media (max-width: 480px) {
    h1, .h1 {font-size: 1.4rem;}
    h2, .h2 {font-size: 1.1rem;}
    h3, .h3 {font-size: 1rem;}
    h4, .h4 {font-size: 0.95rem;}
}

/* --- LAYOUT CONTAINERS --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    /* Prevents overlap in dense content */
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(25, 60, 84, 0.05);
}

@media (max-width: 768px) {
    .section {
        padding: 28px 8px;
        margin-bottom: 32px;
        border-radius: 14px;
    }
    .container {
        padding: 0 8px;
    }
    .content-wrapper {
        gap: 18px;
    }
}

/* --- HEADER & MAIN NAV --- */
header {
    background: #fff;
    box-shadow: 0 2px 16px rgba(25, 60, 84, 0.10);
    width: 100%;
    position: relative;
    z-index: 1001;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    height: 80px;
    justify-content: space-between;
    padding: 0 16px;
    position: relative;
}
.main-nav a img {
    height: 38px;
    width: auto;
}
.main-nav ul {
    display: flex;
    gap: 22px;
    align-items: center;
}
.main-nav ul li {
    margin: 0;
}
.main-nav ul li a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 14px;
    border-radius: 6px;
    color: #193C54;
    transition: background 0.18s, color 0.18s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
    background: #F1A208;
    color: #fff;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F1A208;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
    border-radius: 999px;
    padding: 13px 34px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(241,162,8, 0.12);
    transition: background 0.16s, color 0.16s, box-shadow 0.18s;
    text-shadow: 0 2px 8px rgba(25, 60, 84, 0.04);
    margin-left: 20px;
}
.btn-primary:hover, .btn-primary:focus {
    background: #193C54;
    color: #F1A208;
    box-shadow: 0 8px 24px rgba(19,60,84,0.14);
}

.mobile-menu-toggle {
    display: none;
    background: #F1A208;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 16px;
    position: absolute;
    right: 0;
    top: 16px;
    z-index: 1101;
    transition: background 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    background: #193C54;
    color: #F1A208;
}

@media (max-width: 1024px) {
    .main-nav ul, .main-nav .btn-primary {
        display: none;
    }
    .mobile-menu-toggle {
        display: inline-flex;
    }
    .main-nav {
        justify-content: space-between;
    }
}

/* --- MOBILE MENU (burger) --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(25,60,84,0.98);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    transform: translateX(-100vw);
    transition: transform 0.34s cubic-bezier(.68,-0.55,0.27,1.55);
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    margin: 24px 0 18px 22px;
    font-size: 2.3rem;
    background: none;
    border: none;
    color: #F1A208;
    cursor: pointer;
    transition: color 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
    color: #fff;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 42px;
    padding-top: 10px;
    width: 100%;
}
.mobile-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.15rem;
    color: #fff;
    padding: 12px 0;
    border-radius: 5px;
    transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #F1A208;
    color: #193C54;
}
@media (min-width:1025px) {
    .mobile-menu {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* --- HERO --- */
.hero {
    background: linear-gradient(90deg, #F6941D 0%, #F1A208 80%, #F4F8FB 100%);
    padding: 42px 0 50px 0;
    margin-bottom: 60px;
    border-radius: 0 0 36px 36px;
}
.hero .container {
    align-items: center;
}
.hero .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}
.hero h1, .hero h2 {
    color: #193C54;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(255,255,255,0.12);
}
.hero p {
    font-size: 1.28rem;
    color: #444;
}
.hero .btn-primary {
    margin-top: 18px;
    box-shadow: 0 8px 24px rgba(241,162,8,0.14);
}
@media (max-width:768px) {
    .hero {
        padding: 28px 0 25px 0;
        margin-bottom: 34px;
        border-radius: 0 0 20px 20px;
    }
    .hero h1, .hero h2 {
        font-size: 1.42rem;
    }
    .container {
        padding: 0 8px;
    }
}

/* --- FEATURES, SERVICES --- */
.features,.services,.about-mission,.case-studies,.team,.cta,.newsletter {
    margin-bottom: 60px;
}
.features {
    background: #fff;
    padding: 32px 8px;
    border-radius: 22px;
    box-shadow: 0 6px 32px rgba(25,60,84,0.09);
}
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: space-between;
    width: 100%;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    min-width: 220px;
    background: #F4F8FB;
    border-radius: 18px;
    padding: 22px 18px 18px 18px;
    box-shadow: 0 3px 16px rgba(241,162,8,0.07);
    margin-bottom: 20px;
    transition: box-shadow 0.28s, transform 0.22s;
    position: relative;
}
.feature-item img {
    height: 40px;
    width: 40px;
}
.feature-item .price {
    font-weight: 700;
    color: #F1A208;
    font-size: 1.04rem;
    margin-top: 8px;
}
.feature-item:hover {
    box-shadow: 0 8px 34px rgba(241,162,8,0.18);
    transform: translateY(-6px) scale(1.037);
}
@media (max-width:950px) {
    .features-grid {
        flex-direction: column;
        gap: 20px;
    }
    .feature-item {
        width: 100%;
        min-width: 0;
    }
}
.services ul {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 20px;
}
.services ul li {
    background: #F4F8FB;
    padding: 24px 20px;
    border-radius: 14px;
    box-shadow: 0 2px 18px rgba(25,60,84,0.08);
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.services ul li h3 {
    font-size: 1.18rem;
    color: #193C54;
    margin-bottom: 6px;
}
.services ul li .price {
    color: #F1A208;
    font-weight: 700;
    margin-top: 5px;
}
@media (max-width: 768px) {
    .features {
        padding: 22px 5px;
    }
    .feature-item {
        padding: 18px 9px;
    }
    .services ul li {
        padding: 15px 6px;
    }
}

div.feature-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}
div.feature-icons img {
    height: 36px;
    width: 36px;
}

/* --- ABOUT/BIO & BADGES --- */
.about, .about-mission {
    background: #fff;
}
.text-section {
    display: flex;
    flex-direction: column;
    gap: 21px;
    margin-bottom: 20px;
}
.trust-badges {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 10px;
}
.trust-badges img {
    height: 32px;
    width: 32px;
}
@media (max-width:600px) {
    .text-section {
        gap: 12px;
    }
    .trust-badges {
        gap: 10px;
    }
}

/* --- TEAM LIST --- */
.team-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 10px;
    justify-content: flex-start;
}
.team-member {
    background: #F4F8FB;
    border-radius: 14px;
    box-shadow: 0 3px 14px rgba(25,60,84,0.07);
    padding: 24px 14px;
    min-width: 190px;
    max-width: 230px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: box-shadow 0.23s, transform 0.19s;
}
.team-member img {
    height: 48px;
    width: 48px;
    border-radius: 12px;
    background: #F1A20811;
}
.team-member:hover {
    box-shadow: 0 10px 32px rgba(241,162,8,0.17);
    transform: translateY(-3px) scale(1.03);
}
@media (max-width:600px) {
    .team-list {
        flex-direction: column;
        gap: 12px;
    }
}

/* --- CASE STUDY --- */
.case-studies {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 18px rgba(241,162,8,0.06);
    padding: 32px 12px;
}
.case-study {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #F4F8FB;
    border-radius: 10px;
    padding: 22px 16px;
    margin-bottom: 22px;
    box-shadow: 0 1px 8px rgba(25,60,84,0.08);
    transition: box-shadow 0.16s, transform 0.12s;
}
.case-study:hover {
    box-shadow: 0 6px 22px rgba(241,162,8,0.14);
    transform: scale(1.017) translateY(-2px);
}

/* --- TESTIMONIALS --- */
.testimonials {
    background: #fff;
    padding: 40px 0;
}
.testimonials .content-wrapper {
    gap: 30px;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    margin-bottom: 20px;
    background: #F4F8FB;
    border-radius: 14px;
    box-shadow: 0 5px 22px rgba(241, 162, 8, 0.11);
    border-left: 5px solid #F1A208;
    transition: box-shadow 0.19s, border-color 0.14s, transform 0.14s;
    color: #193C54;
    max-width: 620px;
}
.testimonial-card p,
.testimonial-card span {
    color: #193C54;
    font-size: 1rem;
}
.testimonial-card strong {
    color: #193C54;
    font-weight: 700;
}
.testimonial-card span:last-child {
    color: #F1A208;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
}
.testimonial-card:hover {
    border-left-color: #193C54;
    box-shadow: 0 10px 28px rgba(25,60,84,0.15);
    transform: scale(1.013);
}
@media (max-width: 900px) {
    .testimonial-card {
        max-width: 100%;
        padding: 15px 10px;
    }
    .testimonials {
        padding: 20px 0;
    }
}

/* --- CTA SECTION --- */
.cta {
    background: #193C54;
    color: #fff;
    padding: 44px 0;
    border-radius: 20px;
    margin-bottom: 60px;
    box-shadow: 0 8px 40px rgba(25,60,84,0.20);
}
.cta .content-wrapper {
    align-items: center;
    gap: 18px;
}
.cta p {
    color: #fff;
    font-size: 1.1rem;
    margin-top: 12px;
}
.cta .btn-primary {
    background: #F1A208;
    color: #193C54;
    font-weight: 800;
    font-size: 1.15rem;
    margin: 0 auto;
}
.cta .btn-primary:hover {
    background: #fff;
    color: #193C54;
    box-shadow: 0 8px 24px rgba(241,162,8,0.15);
}
@media (max-width:768px) {
    .cta {
        padding: 28px 0;
        border-radius: 12px;
        margin-bottom: 32px;
    }
    .cta .btn-primary {
        font-size: 1rem;
    }
}

/* --- BLOG LIST --- */
.blog-list {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 25px rgba(241,162,8,0.08);
}
.blog-list input[type="search"] {
    width: 100%;
    padding: 11px 12px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    margin: 12px 0 16px 0;
    font-size: 1rem;
    outline: none;
    transition: border 0.16s;
}
.blog-list input[type="search"]:focus {
    border: 1.5px solid #F1A208;
    box-shadow: 0 4px 20px rgba(241,162,8,0.13);
}
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}
.blog-categories span {
    background: #F1A208;
    color: #fff;
    border-radius: 6px;
    padding: 3px 12px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}
.blog-preview {
    background: #F4F8FB;
    border-radius: 14px;
    padding: 18px 18px;
    margin-bottom: 20px;
    box-shadow: 0 2px 9px rgba(25,60,84,0.07);
    transition: box-shadow 0.19s, transform 0.13s;
}
.blog-preview:hover {
    box-shadow: 0 6px 25px rgba(241,162,8,0.17);
    transform: scale(1.03);
}

/* --- NEWSLETTER --- */
.newsletter {
    background: linear-gradient(85deg,#fff 75%,#F1A208 100%);
    border-radius: 20px;
    padding: 36px 0px;
    box-shadow: 0 3px 18px rgba(25,60,84,0.09);
    margin-bottom: 54px;
}
.newsletter h2 {
    color: #F1A208;
}
.newsletter p {
    margin-bottom: 18px;
}
.newsletter .btn-primary {
    background: #193C54;
    color: #F1A208;
    font-weight: 800;
    transition: background 0.17s, color 0.17s;
}
.newsletter .btn-primary:hover {
    background: #F1A208;
    color: #fff;
}

/* --- LEGAL SECTIONS --- */
.legal {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(25,60,84,0.09);
    margin-bottom: 42px;
    padding: 40px 18px;
}
.legal .text-section {
    gap: 18px;
}

/* --- CONTACT --- */
.contact-details {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.map-placeholder {
    background: #F4F8FB;
    border-radius: 14px;
    padding: 14px;
    min-width: 200px;
    box-shadow: 0 2px 20px rgba(25,60,84,0.07);
    margin-bottom: 12px;
}
@media (max-width: 800px) {
    .contact-details {
        flex-direction: column;
        gap: 18px;
    }
}

/* --- CONFIRMATION/THANK YOU --- */
.confirmation {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(25,60,84,0.11);
    text-align: center;
    padding: 54px 0;
    margin-bottom: 60px;
}
.confirmation h1 {
    color: #F1A208;
    font-size: 2rem;
    margin-bottom: 14px;
}
.confirmation p {
    font-size: 1.15rem;
    margin-bottom: 23px;
}

/* --- FOOTER --- */
footer {
    background: #193C54;
    color: #fff;
    padding: 36px 0 0 0;
    margin-top: 70px;
    font-size: 1rem;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -5px 28px rgba(25,60,84,0.06);
}
footer .container {
    flex-direction: column;
    padding: 0 20px;
}
footer .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}
.footer-nav {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 10px;
}
.footer-nav a {
    color: #F1A208;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.14s;
}
.footer-nav a:hover {
    color: #fff;
}
.footer-contact {
    display: flex;
    flex-direction: row;
    gap: 24px;
    font-size: 0.97rem;
    margin-bottom: 4px;
}
.footer-social {
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: center;
}
.footer-social a img {
    height: 24px;
    width: 24px;
    filter: brightness(1.3) saturate(1.4);
    transition: filter 0.2s;
}
.footer-social a:hover img {
    filter: drop-shadow(0 3px 6px #F1A20888) brightness(1.5);
}
.footer-copy {
    font-size: 0.92rem;
    color: #eee;
    margin-top: 8px;
    margin-bottom: 16px;
    align-self: flex-start;
}
@media (max-width:600px) {
    footer .content-wrapper {
        gap: 9px;
    }
    .footer-contact {
        gap: 8px;
        flex-direction: column;
        font-size: 0.93rem;
    }
    .footer-nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    .footer-copy {
        margin-top: 9px;
        margin-bottom: 12px;
    }
}

/* --- SPACING & FLEXBOX UTILITY (MANDATORY CLASSES) --- */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    background: #F4F8FB;
    border-radius: 12px;
    box-shadow: 0 3px 9px rgba(241,162,8,0.08);
    padding: 20px 18px;
}
.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;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
@media (max-width: 768px) {
    .text-image-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .content-grid {
        flex-direction: column;
        gap: 14px;
    }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    z-index: 4000;
    background: #193C54;
    color: #fff;
    padding: 20px 12px 18px 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -4px 32px rgba(25,60,84,0.09);
    gap: 22px;
    animation: slideInCookie 0.6s cubic-bezier(.77,0,.18,1.01);
}
@keyframes slideInCookie {
    0% { transform: translateY(120px); opacity: 0;}
    100% { transform: none; opacity: 1;}
}
.cookie-banner .cookie-text {
    flex: 1;
    font-size: 1.01rem;
    color: #fff;
    margin-right: 18px;
}
.cookie-banner .cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cookie-banner button {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    padding: 10px 20px;
    border: none;
    transition: background 0.12s, color 0.12s;
    cursor: pointer;
    min-width: 114px;
    margin: 0;
}
.cookie-banner .accept {
    background: #F1A208;
    color: #193C54;
}
.cookie-banner .accept:hover {
    background: #fff;
    color: #193C54;
}
.cookie-banner .reject {
    background: #fff;
    color: #F1A208;
}
.cookie-banner .reject:hover {
    background: #F1A208;
    color: #fff;
}
.cookie-banner .settings {
    background: #193C54;
    color: #F1A208;
    border: 1.5px solid #F1A208;
}
.cookie-banner .settings:hover {
    background: #fff;
    color: #193C54;
}
@media (max-width: 690px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 12px 8px 16px 8px;
        font-size: 0.98rem;
    }
    .cookie-banner .cookie-text {
        margin-right: 0;
    }
    .cookie-banner .cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal-overlay {
    position: fixed;
    top:0; left:0;
    width: 100vw; height: 100vh;
    background: rgba(25,60,84,0.78);
    z-index: 4100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.29s;
}
.cookie-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.cookie-modal {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(25,60,84,0.25);
    padding: 32px 28px 24px 28px;
    max-width: 412px;
    width: 80vw;
    color: #193C54;
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: slideUpCookieModal 0.5s cubic-bezier(.58,-0.07,.23,1.03);
}
@keyframes slideUpCookieModal {
    0% { transform: translateY(70px) scale(.92); opacity: 0;}
    100% { transform: none; opacity: 1;}
}
.cookie-modal h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #F1A208;
    font-size: 1.2rem;
}
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 13px;
}
.cookie-category label {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #193C54;
    font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
    accent-color: #F1A208;
    width: 20px;
    height: 20px;
    border-radius: 5px;
}
.cookie-modal .cookie-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    margin-top: 12px;
}
.cookie-modal .accept {
    background: #F1A208;
    color: #193C54;
}
.cookie-modal .reject {
    background: #fff;
    color: #F1A208;
    border: 1px solid #F1A208;
}
.cookie-modal .accept:hover,
.cookie-modal .accept:focus {
    background: #193C54;
    color: #fff;
}
.cookie-modal .reject:hover {
    background: #F1A208;
    color: #fff;
}
.cookie-modal .close {
    background: none;
    border: none;
    color: #193C54;
    font-weight: 700;
    font-size: 1.15rem;
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 12px;
    margin-right: -10px;
    transition: color 0.14s;
}
.cookie-modal .close:hover {
    color: #F1A208;
}

@media (max-width:480px) {
    .cookie-modal {
        padding: 16px 5px 14px 5px;
        width: 97vw;
        max-width: 97vw;
    }
}

/* --- MICRO-ANIMATIONS --- */
.btn-primary, .feature-item, .team-member, .case-study, .testimonial-card, .blog-preview {
    transition: box-shadow 0.18s, background 0.18s, color 0.18s, transform 0.16s;
}

/* --- SCROLLBAR STYLE --- */
::-webkit-scrollbar {width: 12px;}
::-webkit-scrollbar-thumb {background: #F1A20888; border-radius: 6px;}
::-webkit-scrollbar-track {background: #F4F8FB;}

/* --- OVERRIDES FOR CONSISTENT VIBRANCE --- */
section, .section {
    /* Electrical pulse: box-shadow and bold borders for energetic feel */
    border-left: 4px solid #F1A20822;
}
section.cta, .cta {
    border-left: none;
}

/* --- ACCESSIBILITY & FOCUS --- */
:focus-visible {
    outline: 2px solid #F1A208;
    outline-offset: 2px;
}

/* --- HIDE ACCESSORY ELEMENTS (JS fallback) --- */
[hidden] { display: none !important; }
