/* ===================================================================
   CSS RESET & BASE STYLES
   =================================================================== */
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-family: inherit;
 vertical-align: baseline;
 box-sizing: border-box;
}
html {
 box-sizing: border-box;
 scroll-behavior: smooth;
 -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
 box-sizing: inherit;
}
body {
 font-family: 'Open Sans', Arial, Helvetica, sans-serif;
 font-size: 16px;
 line-height: 1.6;
 color: #1A2340;
 background: #FFFFFF;
 min-height: 100vh;
 -webkit-tap-highlight-color: transparent;
}
a {
 color: #224B8D;
 text-decoration: none;
 transition: color 0.2s;
}
a:hover, a:focus {
 color: #1E735B;
 outline: none;
}
ul, ol {
 list-style: none;
}
img {
 display: block;
 max-width: 100%;
 height: auto;
}
button {
 font-family: inherit;
 border: none;
 cursor: pointer;
 background: none;
 transition: filter 0.2s, background 0.2s, color 0.2s;
}

/* ===================================================================
   COLORS & FONTS: Brand & Vibrant Energetic Pallete
   =================================================================== */
:root {
 --primary: #224B8D;
 --secondary: #1E735B;
 --accent: #F5F5F5;
 --warning: #FFD23F;
 --energetic-1: #FF386B;
 --energetic-2: #32E7C7;
 --energetic-3: #FFD23F;
 --energetic-4: #6B47DC; /* deep violet */
 --energetic-5: #00C2FF; /* electric blue */
 --card-bg: #FFFFFF;
 --card-shadow: 0 6px 20px rgba(34, 75, 141, 0.11), 0 1.5px 6px rgba(50, 231, 199, 0.09);
 --radius: 18px;
 --border-btn: 2px solid var(--primary);
 --text-light: #FFFFFF;
 --text-dark: #181C30;
 --testimonial-bg: #FAFBFF;
}

/* ===================================================================
   TYPOGRAPHY
   =================================================================== */
h1, h2, h3, h4, .cta-btn {
 font-family: 'Montserrat', Arial, Helvetica, sans-serif;
 font-weight: 800;
 letter-spacing: 0.03em;
 color: var(--primary);
}
h1 {
 font-size: 2.25rem;
 line-height: 1.18;
 margin-bottom: 16px;
 color: var(--energetic-1);
}
h2 {
 font-size: 1.6rem;
 margin-bottom: 12px;
 color: var(--primary);
}
h3 {
 font-size: 1.2rem;
 margin-bottom: 8px;
 color: var(--secondary);
 font-weight: 800;
}
strong {
 font-weight: 700;
}
.cta-btn {
 font-family: 'Montserrat', Arial, Helvetica, sans-serif;
 font-size: 1.075rem;
 font-weight: bold;
 letter-spacing: 0.02em;
 text-transform: uppercase;
 background: linear-gradient(92deg, var(--energetic-5) 0%, var(--energetic-1) 100%);
 color: var(--text-light)!important;
 border-radius: var(--radius);
 padding: 14px 32px;
 border: none;
 box-shadow: 0 3px 18px 0 rgba(255,56,107,0.14);
 margin-top: 8px;
 margin-bottom: 8px;
 display: inline-block;
 transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
 text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
 background: linear-gradient(85deg, var(--energetic-1) 12%, var(--energetic-5) 88%);
 transform: translateY(-2px) scale(1.05);
 box-shadow: 0 6px 24px 0 rgba(50, 231, 199, 0.12), 0 2px 10px 0 rgba(255,56,107,0.18);
 outline: none;
 color: var(--text-light);
 filter: brightness(1.11);
}
p, li,address {
 font-family: 'Open Sans', Arial, Helvetica, sans-serif;
 font-size: 1rem;
 color: var(--text-dark);
 line-height: 1.7;
 margin-bottom: 10px;
}
address {
 font-style: normal;
 font-size: 0.98rem;
}

/* ------------- UTILITIES ---------------- */
.container {
 max-width: 1240px;
 width: 100%;
 margin-left: auto;
 margin-right: auto;
 padding-left: 20px;
 padding-right: 20px;
}
.content-wrapper {
 width: 100%;
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 gap: 20px;
}
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: var(--card-bg); border-radius: var(--radius); box-shadow: var(--card-shadow); }
.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: center; gap: 20px; padding: 20px; background: var(--testimonial-bg); border-radius: var(--radius); box-shadow: var(--card-shadow); margin-bottom: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/***************************
  HEADER/NAVIGATION
***************************/
header {
 background: var(--accent);
 box-shadow: 0 2px 18px rgba(50, 231, 199, 0.09);
 width: 100%;
 z-index: 10;
}
header nav {
 display: flex;
 align-items: center;
 justify-content: space-between;
 height: 74px;
 min-height: 74px;
 padding: 0 22px;
 position: relative;
}
header nav > a img {
 height: 40px;
 width: auto;
 margin-right: 18px;
}
header nav ul {
 display: flex;
 flex-wrap: wrap;
 gap: 26px;
 margin: 0 30px 0 8px;
 align-items: center;
}
header nav ul li a {
 font-family: 'Montserrat', Arial, Helvetica, sans-serif;
 font-weight: 700;
 font-size: 1.02rem;
 letter-spacing: 0.01em;
 color: var(--primary);
 border-radius: 7px;
 padding: 8px 10px;
 transition: background 0.18s, color 0.18s;
}
header nav ul li a:hover, header nav ul li a:focus {
 background: var(--energetic-3);
 color: var(--energetic-1);
}
/* Main navigation CTA */
header nav .cta-btn {
 margin-left: 12px;
 margin-right: 0;
 padding: 10px 22px;
 font-size: 1.02rem;
 white-space: nowrap;
 box-shadow: 0 2px 12px 0 rgba(34, 75, 141, 0.21);
}
header nav .cta-btn:hover {
 filter: brightness(1.14);
 transform: scale(1.07);
}

/********************
  MOBILE NAVIGATION
********************/
.mobile-menu-toggle {
 display: none;
 position: relative;
 font-size: 2.2rem;
 color: var(--energetic-1);
 background: none;
 border: none;
 z-index: 102;
 margin-left: 18px;
 transition: color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
 color: var(--primary);
}
.mobile-menu {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 justify-content: flex-start;
 position: fixed;
 top: 0; left: 0;
 width: 100vw;
 height: 100vh;
 background: rgba(34,75,141,0.97);
 z-index: 150;
 transform: translateX(-100%);
 transition: transform 0.36s cubic-bezier(.7,0,.28,1);
 box-shadow: 0 0 80px 0 rgba(255,56,107,0.13);
 visibility: hidden;
 opacity: 0;
}
.mobile-menu.open {
 transform: translateX(0);
 visibility: visible;
 opacity: 1;
}
.mobile-menu-close {
 align-self: flex-end;
 font-size: 2rem;
 padding: 18px 24px;
 margin-top: 10px;
 color: var(--energetic-3);
 background: none;
 border: none;
 z-index: 151;
 transition: color 0.18s, transform 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
 color: var(--energetic-1);
 transform: scale(1.07);
}
.mobile-nav {
 display: flex;
 flex-direction: column;
 gap: 32px;
 width: 100%;
 margin-top: 18px;
 align-items: flex-start;
 padding-left: 36px;
}
.mobile-nav a {
 color: var(--accent);
 font-family: 'Montserrat', Arial, Helvetica, sans-serif;
 font-size: 1.2rem;
 font-weight: bold;
 letter-spacing: 0.02em;
 padding: 12px 0;
 border-radius: 6px;
 transition: background 0.15s, color 0.18s;
 min-width: 180px;
 display: block;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
 background: var(--energetic-1);
 color: #FFFFFF;
}

@media (max-width: 1040px) {
 header nav ul {
   gap: 14px;
   margin: 0 5px 0 8px;
 }
 header nav .cta-btn { margin-left: 0; }
}

@media (max-width: 840px) {
 header nav ul { display: none; }
 header nav .cta-btn { display: none; }
 .mobile-menu-toggle {
   display: block;
 }
}
@media (max-width: 700px) {
 .container, .section {
    padding-left: 5vw;
    padding-right: 5vw;
 }
 header nav { padding: 0 10px; }
}

/****************************
 HERO SECTIONS
*****************************/
.hero {
 background: linear-gradient(88deg, var(--energetic-2) 0%, var(--accent) 40%, var(--energetic-1) 100%);
 min-height: 305px;
 display: flex;
 align-items: center;
 position: relative;
 z-index: 0;
 margin-bottom: 60px;
}
.hero .container {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: flex-start;
 min-height: 220px;
}
.hero .content-wrapper {
 align-items: flex-start;
 padding-top: 38px;
 padding-bottom: 38px;
 gap: 14px;
}
.hero h1 {
 color: var(--energetic-1);
 text-shadow: 0 2px 16px rgba(255,56,107,0.07);
}
.hero p {
 color: var(--secondary);
 font-size: 1.16rem;
}

/*****************************
  CARD & FEATURE STYLES
*****************************/
.features .feature-grid,
.features-benefits ul,
.text-section ul,
.text-section ol {
 display: flex;
 flex-wrap: wrap;
 gap: 24px;
}
.features .feature-grid li, .features-benefits ul li {
 flex: 1 1 260px;
 min-width: 210px;
 background: #fff;
 border-radius: var(--radius);
 box-shadow: var(--card-shadow);
 padding: 26px 22px 18px 22px;
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 gap: 8px;
 transition: box-shadow 0.18s, transform .18s;
 margin-bottom: 20px;
 border-left: 7px solid var(--energetic-1);
 position: relative;
}
.features .feature-grid li:hover,
.features .feature-grid li:focus {
 border-left-color: var(--energetic-4);
 box-shadow: 0 8px 32px 0 rgba(255,56,107,0.10), 0 3px 14px 0 rgba(34,75,141,0.08);
 transform: translateY(-3px) scale(1.025);
}
.features .feature-grid img {
 width: 36px;
 height: 36px;
 margin-bottom: 6px;
 filter: drop-shadow(0 2px 8px var(--energetic-5));
}
.features .feature-grid h3 {
 font-size: 1.10rem;
 margin-bottom: 4px;
}
.features .feature-grid p { color: var(--text-dark); font-size: 0.98rem; }

.services .service-list {
 display: flex;
 flex-wrap: wrap;
 gap: 26px;
}
.services .service-list li {
 flex: 1 1 230px;
 min-width: 190px;
 padding: 18px 15px 12px 15px;
 background: var(--accent);
 border-radius: var(--radius);
 box-shadow: var(--card-shadow);
 margin-bottom: 20px;
 display: flex;
 flex-direction: column;
 gap: 8px;
 transition: box-shadow 0.15s, background 0.15s;
 border-top: 5px solid var(--energetic-2);
}
.services .service-list li strong { color: var(--energetic-1); font-weight: 700; }
.services .service-list li:hover { background: var(--energetic-2); color: #fff; box-shadow: 0 8px 30px 0 rgba(50,231,199,0.16); }
.services .service-list li:hover strong { color: #fff; }

.card, .features-benefits ul li, .services-detailed .text-section > div {
 box-shadow: var(--card-shadow);
 border-radius: var(--radius);
 margin-bottom: 20px;
 background: #fff;
}
.services-detailed .text-section {
 display: flex;
 flex-wrap: wrap;
 gap: 24px;
}
.services-detailed .text-section > div {
 flex: 1 1 224px;
 min-width: 220px;
 padding: 22px 20px 18px 20px;
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 gap: 8px;
 border-left: 6px solid var(--energetic-5);
 transition: box-shadow 0.15s, border-color 0.15s;
}
.services-detailed .text-section > div:hover {
 box-shadow: 0 8px 24px 0 rgba(50, 231, 199, 0.13);
 border-left-color: var(--energetic-2);
}
.services-detailed .text-section > div h3 { color: var(--energetic-1); font-size: 1.17rem; }
.features-benefits .text-section {
 background: var(--accent);
 border-radius: var(--radius);
 padding: 20px 18px;
 margin-top: 16px;
}

/***************************
 TESTIMONIAL STYLES
***************************/
.testimonials {
 background: var(--accent);
 border-top: 5px solid var(--primary);
 border-bottom: 5px solid var(--secondary);
}
.testimonials h2 { color: var(--energetic-4); }
.testimonial-card {
 background: var(--testimonial-bg);
 box-shadow: var(--card-shadow);
 border-radius: var(--radius);
 margin-bottom: 24px !important;
 display: flex;
 align-items: center;
 flex-direction: column;
 justify-content: flex-start;
 gap: 12px;
 min-width: 210px;
 color: var(--text-dark);
 border-left: 6px solid var(--primary);
}
.testimonial-card p {
 color: var(--text-dark);
 font-size: 1.08rem;
 font-weight: 500;
}
.testimonial-card span {
 font-size: 0.99rem;
 color: var(--secondary);
 font-weight: 700;
}
.testimonial-card .stars {
 color: var(--energetic-3);
 font-size: 1.13rem;
 letter-spacing: 0.1em;
}

/**********************
 ABOUT, TEAM, POLICY
**********************/
.text-section {
 background: var(--accent);
 border-radius: var(--radius);
 box-shadow: 0 6px 18px rgba(34, 75, 141, 0.05);
 padding: 24px 20px 16px 20px;
 margin-bottom: 18px;
}
.team ul, .about-story ul, .studies-overview ul, .application-process ul, .application-process ol {
 display: flex;
 flex-direction: column;
 gap: 14px;
 margin-bottom: 10px;
}
.team ul li strong { color: var(--primary); }
.policy .text-section h2 { color: var(--energetic-2); margin-top: 18px; }
.policy .text-section a { color: var(--energetic-5); text-decoration: underline; }
.policy .text-section a:hover { color: var(--energetic-4); }

/**********************
 CONTACT PAGE
**********************/
.contact-info address {
 background: var(--accent);
 padding: 18px 18px 10px 18px;
 border-radius: var(--radius);
 box-shadow: 0 3px 9px 0 rgba(50, 231, 199, 0.07);
 font-size: 1.18rem;
 margin-bottom: 14px;
}

/*********************
 CTA SECTION
**********************/
.cta {
 background: linear-gradient(89deg, var(--energetic-3) 0%, var(--energetic-1) 78% );
 box-shadow: 0 0 40px 0 rgba(255,56,107,0.07);
 margin: 70px 0 0 0;
}
.cta h2, .cta-btn { color: #fff!important; }
.cta .cta-btn {
 margin-bottom: 0;
 background: linear-gradient(92deg, var(--primary) 0%, var(--energetic-2) 100%);
 font-size: 1.12rem;
 color: #fff!important;
}

/**************************
 FOOTER
**************************/
footer {
 background: var(--primary);
 color: #fff;
 border-top-left-radius: 24px;
 border-top-right-radius: 24px;
 margin-top: 60px;
 padding: 0;
 box-shadow: 0 -4px 18px 0 rgba(34,75,141,0.12);
 position: relative;
 z-index: 5;
}
footer .container {
 padding-top: 28px;
 padding-bottom: 18px;
}
footer .content-wrapper {
 flex-direction: row;
 justify-content: space-between;
 align-items: flex-start;
 gap: 40px;
 padding-bottom: 12px;
}
footer .text-section {
 background: none;
 box-shadow: none;
 color: #fff;
 padding: 0;
 margin-bottom: 0;
}
footer .text-section address, footer .text-section a {
 color: #FFF;
 font-size: 0.98rem;
}
footer img {
 width: 50px;
 margin-bottom: 8px;
}
.footer-links {
 display: flex;
 flex-wrap: wrap;
 gap: 16px;
 align-items: center;
}
.footer-links a {
 color: #fff;
 background: rgba(30,115,91,0.08);
 padding: 6px 12px;
 border-radius: 9px;
 font-size: 0.98rem;
 font-family: 'Montserrat', Arial, Helvetica, sans-serif;
 font-weight: bold;
 letter-spacing: 0.01em;
 transition: background 0.13s, color 0.13s;
}
.footer-links a:hover { background: var(--energetic-2); color: #fff; }
footer .copyright {
 font-size: 0.98rem;
 color: #D2E4FF;
 text-align: center;
 padding: 10px 0 10px 0;
}

/*******************
 COOKIE BANNER
*******************/
.cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 z-index: 9999;
 background: var(--energetic-2);
 color: #fff;
 padding: 26px 24px 22px 24px;
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 gap: 16px;
 box-shadow: 0 -4px 22px 0 rgba(34,75,141,0.24);
 border-top-left-radius: 18px;
 border-top-right-radius: 18px;
 animation: slideup-banner 0.52s cubic-bezier(.55,0,.38,1) both;
}
@keyframes slideup-banner {
  0% { transform: translateY(160px); opacity: 0.2; }
  90%{transform: translateY(-10px);}
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p { color: #fff; margin-bottom: 8px; }
.cookie-banner .cookie-btns {
 display: flex; flex-wrap: wrap; gap: 14px;
 margin-top: 4px;
}
.cookie-btn {
 font-family: 'Montserrat', Arial, Helvetica, sans-serif;
 font-size: 1.04rem;
 font-weight: 700;
 padding: 8px 22px;
 border-radius: 8px;
 border: none;
 cursor: pointer;
 margin-right: 0; margin-bottom: 0;
 transition: background 0.18s, color 0.18s;
 text-transform: uppercase;
 letter-spacing: 0.02em;
}
.cookie-btn.accept {
 background: var(--energetic-5);
 color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
 background: var(--primary);
 color: #fff;
}
.cookie-btn.reject {
 background: #fff;
 color: var(--energetic-1);
 border: 2px solid var(--energetic-1);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
 background: var(--energetic-4);
 color: #fff;
 border-color: var(--energetic-4);
}
.cookie-btn.settings {
 background: var(--accent);
 color: var(--primary);
 border: 2px solid var(--primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
 background: var(--primary);
 color: #fff;
 border-color: var(--energetic-1);
}

/* Cookie modal */
.cookie-modal-overlay {
 position: fixed;
 left: 0; top: 0; right: 0; bottom: 0;
 background: rgba(34,75,141,0.92);
 z-index: 10000;
 display: flex;
 align-items: center;
 justify-content: center;
 animation: fade-in 0.32s ease both;
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
 background: #fff;
 color: var(--text-dark);
 border-radius: 16px;
 box-shadow: 0 4px 32px 0 rgba(34,75,141,0.19);
 padding: 38px 30px 26px 30px;
 min-width: 320px;
 max-width: 90vw;
 display: flex;
 flex-direction: column;
 gap: 18px;
 position: relative;
}
.cookie-modal .cookie-modal-close {
 position: absolute;
 right: 18px; top: 18px;
 font-size: 1.7rem;
 border: none; background: none;
 color: var(--energetic-1);
 cursor: pointer;
 transition: color 0.18s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus { color: var(--primary); }
.cookie-modal h2 {
 font-size: 1.36rem;
 margin-bottom: 0;
 color: var(--primary);
 font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal .cookie-categories {
 display: flex;
 flex-direction: column;
 gap: 12px;
}
.cookie-modal .cookie-category {
 display: flex;
 align-items: center;
 gap: 18px;
 background: var(--accent);
 border-radius: 7px;
 padding: 10px 20px;
 font-size: 1.01rem;
}
.cookie-category .toggle {
 width: 36px; height: 22px; border-radius: 16px; background: #E0E4F0; display: flex; align-items: center; position: relative; transition: background 0.14s; margin-left: auto;
}
.cookie-category .toggle input[type="checkbox"] {
 appearance: none; width: 0; height: 0; margin: 0; padding: 0; border: none;
}
.cookie-category .toggle-slider {
 width: 18px; height: 18px; border-radius: 50%; background: var(--energetic-5); transition: transform 0.17s cubic-bezier(.77,0,.175,1), background 0.14s; position: absolute; left: 2px; top: 2px;
}
.cookie-category .toggle.on {
 background: var(--energetic-5);
}
.cookie-category .toggle.on .cookie-category-label {
 color: var(--primary);
}
.cookie-category .toggle.on .toggle-slider {
 background: var(--primary);
 transform: translateX(14px);
}
.cookie-category .toggle.off .toggle-slider {
 background: #C7CBE4;
}
.cookie-category .cookie-category-label {
 font-family: 'Montserrat', Arial, Helvetica, sans-serif; color: var(--text-dark); font-weight: 600;
}
.cookie-modal .cookie-modal-actions { margin-top: 8px; display: flex; gap: 16px; }
.cookie-modal .cookie-btn { font-size: 1.04rem; }

/**********************************
  CONFIRMATION PAGE
***********************************/
.confirmation {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 min-height: 50vh;
}
.confirmation .content-wrapper {
 align-items: center;
}
.confirmation h1 { color: var(--energetic-4); }
.confirmation .cta-btn {
 margin-top: 20px;
 }

/***********************************
   RESPONSIVE & FLEXBOX ADJUSTMENTS
***********************************/
@media (max-width: 1100px) {
 .content-wrapper, .card-container, .content-grid { gap: 12px; }
 .features .feature-grid, .services-detailed .text-section { gap: 16px; }
 .features .feature-grid li, .services .service-list li, .services-detailed .text-section > div { min-width: 150px; }
 footer .content-wrapper { gap: 18px; }
}
@media (max-width: 800px) {
 .features .feature-grid, .services-detailed .text-section {
   flex-direction: column;
 }
 .section, .container { padding-left: 6vw; padding-right: 6vw; }
 .content-wrapper { align-items: stretch; gap: 8px; }
 .testimonial-card { flex-direction: column; gap: 6px; }
 header nav { padding-left: 8px; padding-right: 8px; }
 footer .content-wrapper { flex-direction: column; gap: 8px; }
 .footer-links { flex-wrap: wrap; }
}
@media (max-width: 600px) {
 h1 { font-size: 1.39rem; }
 h2 { font-size: 1.09rem; }
 .hero, .section { padding-left: 2vw; padding-right: 2vw; }
 .testimonial-card, .features .feature-grid li, .services .service-list li, .services-detailed .text-section > div, .text-section {
   padding: 14px 10px 14px 10px;
   font-size: 0.98rem;
 }
 .cta-btn, .cookie-btn {
   padding: 10px 14px;
   font-size: 1.01rem;
 }
 .cookie-modal { padding: 20px 7vw 18px 7vw; }
}
@media (max-width: 400px) {
 .cookie-modal { min-width: 0; padding: 16px 3vw 10px 3vw; }
}

/*********************************************
  HOVER TRANSITIONS, SHADOWS & MICROANIMATIONS
**********************************************/
.button, .cta-btn, .cookie-btn, .services .service-list li, .features .feature-grid li, .services-detailed .text-section > div, .testimonial-card {
 transition: box-shadow .16s, background .15s, color .16s, transform .14s;
}
.cta-btn:active, .cookie-btn:active { filter: brightness(1.09) contrast(1.2) }
.cta-btn:focus, .cookie-btn:focus { outline: 3px solid var(--energetic-5); }

/* Focus states for accessibility */
a:focus-visible, button:focus-visible, .cta-btn:focus-visible, .cookie-btn:focus-visible {
  outline: 2px solid var(--energetic-5);
  outline-offset: 2px;
}

/***********************
  Z-INDEX LAYERING
**********************/
header,
header nav,
.mobile-menu,
.cookie-banner,
.cookie-modal-overlay {
  z-index: 100;
}

/***********************
  CUSTOM CLASSES FOR FLEXBOX PATTERNS
**********************/
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }

/***********************
  PRINT OPTIMIZATION
**********************/
@media print {
  header, .mobile-menu, .cookie-banner, footer { display: none !important; }
  body { background: #fff !important; color: #111 !important; }
  .container, .content-wrapper, .section { box-shadow: none !important; background: #fff !important; }
}
