/* --- 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,main,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #fff;
  color: #181818;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #f8f9fa;
  color: #181818;
  line-height: 1.7;
}
img,svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul { list-style: disc inside; }
strong { font-weight: 700; }
a { text-decoration: none; color: inherit; transition: color 0.15s; }
p { margin-bottom: 1em; }
:focus { outline: 2px solid #224477; outline-offset: 2px; }

/* --- BRAND FONT FACES --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #111;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }
body, p, li, input, button, select, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #222;
}

/* --- COLOR PALETTE (Monochrome Sophisticated with Brand Accents)--- */
:root {
  --color-bg: #fff;
  --color-bg-dark: #18191c;
  --color-bg-light: #f8f9fa;
  --color-text: #181818;
  --color-text-light: #fff;
  --color-primary: #224477;
  --color-secondary: #19bca6;
  --color-accent: #f8f9fa;
  --color-gray: #e2e4e8;
  --color-border: #e2e4e8;
  --color-divider: #babcc0;
  --shadow-default: 0 2px 10px rgba(24,25,28,0.08);
  --shadow-card: 0 4px 20px rgba(24,25,28,0.10);
  --radius-md: 14px;
  --radius-lg: 32px;
}

/* --- CONTAINERS & GLOBAL LAYOUT --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-default);
}
@media (max-width: 768px) {
  .section { padding: 22px 6px; margin-bottom:32px; }
  .container { padding: 0 8px; }
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1001;
  width: 100%;
  box-shadow: 0 2px 8px 0 rgba(24,25,28,.04);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
header a img {
  height: 40px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  font-size: 1rem;
  color: #111;
  padding: 6px 0;
  transition: color 0.18s;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.1px;
}
nav a.cta {
  color: #fff !important;
  background: #181818;
  padding: 7px 20px;
  border-radius: 22px;
  font-weight: 700;
  margin-left: 10px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 16px rgba(34,44,77,0.08);
  border: none;
}
nav a.cta:hover, nav a.cta:focus {
  background: #224477;
  color: #fff;
  box-shadow: 0 4px 28px rgba(34,68,119,0.08);
}
nav a:hover, nav a:focus {
  color: #224477;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #181818;
  cursor: pointer;
  margin-left: 16px;
  transition: color 0.18s;
  padding: 4px 8px;
  border-radius: 8px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #224477;
  background: #ecf0f6;
}

@media (max-width: 1024px) {
  nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #18191c;
  z-index: 2002;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.61,.04,.41,.98);
  box-shadow: 0 12px 64px rgba(24,25,28,0.27);
  padding-top: 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 0 22px 18px 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 2010;
  border-radius: 8px;
  padding: 4px 12px;
  transition: background 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #333950;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
  padding: 8px 36px;
}
.mobile-nav a {
  color: #fff !important;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid #222428;
  width: 100%;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #19bca6 !important;
  background: #191b23;
  border-radius: 6px;
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(135deg, #fff 70%, #e2e4e9 100%);
  padding-top: 48px;
  padding-bottom: 48px;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.hero .content-wrapper {
  max-width: 620px;
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #181818;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  line-height: 1.12;
}
.hero p {
  color: #222;
  font-size: 1.18rem;
  margin-bottom: 12px;
}
.hero .cta {
  margin-top: 16px;
}
@media (max-width: 600px) {
  .hero { padding-top: 28px; padding-bottom: 22px; }
  .hero h1 { font-size: 1.65rem; }
}

/* --- FEATURE GRID / SECTIONS --- */
.features, .about, .services, .steps, .faq, .blog-list, .testimonials, .contact, .thankyou, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-default);
}
@media (max-width: 768px) {
  .features, .about, .services, .steps, .faq, .blog-list, .testimonials, .contact, .thankyou, .legal { padding: 18px 4px; margin-bottom:25px; }
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 8px;
  align-items: stretch;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px 22px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 240px;
  border: 1px solid #e6e7e9;
  margin-bottom: 20px;
  transition: transform 0.16s, box-shadow 0.18s;
}
.feature-item:hover,
.feature-item:focus-within {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 4px 40px rgba(24,25,28,0.10);
  border-color: #b7b9bc;
}
.feature-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
}
.feature-item h3 {
  font-size: 1.12rem;
  margin-bottom: 6px;
  color: #224477;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-item p {
  font-size: 1rem;
  color: #222;
}
@media (max-width: 890px) {
  .feature-grid { gap: 15px; }
}
@media (max-width: 590px) {
  .feature-grid { flex-direction: column; gap: 18px; }
}

/* --- CARDS & RESUSABLES --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 22px;
  min-width: 220px;
  transition: transform 0.16s;
}
.card:hover,
.card:focus-within {
  transform: translateY(-4px) scale(1.014);
}

/* --- CTA BUTTONS & MICRO-INTERACTIONS --- */
.cta,
button.cta,
input[type="submit"].cta {
  display: inline-block;
  padding: 11px 36px;
  background: #181818;
  color: #fff !important;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-size: 1.16rem;
  border: none;
  box-shadow: 0 3px 20px rgba(18,18,18,.09);
  transition: background 0.18s, box-shadow 0.16s, transform 0.16s;
  cursor: pointer;
  outline: none;
  margin-top: 10px;
}
.cta:hover,
.cta:focus {
  background: #224477;
  color: #fff !important;
  box-shadow: 0 8px 32px rgba(34,68,119,0.10);
  transform: translateY(-2px) scale(1.01);
}

/* Utility buttons */
button, .button {
  font-size:1rem;
  font-family:inherit;
  background: #eee;
  border-radius: 8px;
  border: none;
  padding: 8px 20px;
  transition: background 0.16s;
  cursor: pointer;
}
button:hover, .button:hover,
button:focus, .button:focus {
  background: #d8dbe2;
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #f6f6f8;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(24,25,28,0.045);
  padding: 16px 20px;
  border: 1px solid #e2e4e8;
}
.faq-item h3 {
  font-size: 1.08rem;
  color: #224477;
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-item p {
  margin: 0;
  color: #222;
  font-size: 0.98rem;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #fff;
}
.testimonial-slider, .testimonials .content-wrapper > .testimonial-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #f5f6f7;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 18px rgba(24,25,28,0.06);
  padding: 20px;
  min-width: 240px;
  max-width: 380px;
  border-left: 5px solid #224477;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.15s;
}
.testimonial-card p {
  color: #181818;
  font-size: 1.07rem;
  font-style: italic;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card strong {
  margin-bottom: 0.5em;
  color: #224477;
  font-size: 1.04rem;
}
.stars {
  display: flex;
  gap: 2px;
}
.stars img {
  width: 21px;
  height: 21px;
  filter: grayscale(20%);
}
.testimonial-card:hover {  box-shadow: 0 8px 32px rgba(24,25,28,0.10);  transform: translateY(-2px); }
.testimonials p { color: #222; }
@media (max-width: 900px) {
  .testimonial-slider, .testimonials .content-wrapper > .testimonial-card { flex-direction: column; gap: 18px; }
}

/* --- STEP LIST --- */
.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}
.step {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px 18px 20px 18px;
  min-width: 210px;
  max-width: 310px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  border: 1px solid #e2e4e8;
  margin-bottom: 20px;
  transition: transform 0.14s, box-shadow 0.18s;
}
.step img {
  width: 40px;
  height: 40px;
}
.step:hover {  box-shadow: 0 6px 24px rgba(34,44,77,0.10);  transform: translateY(-4px) scale(1.018); }
@media (max-width: 768px) {
  .step-list { flex-direction: column; gap: 15px; }
}

/* --- COURSE LIST --- */
.course-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  align-items: stretch;
}
.course-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  flex: 1 1 220px;
  padding: 24px 20px;
  margin-bottom:20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #e5e7e9;
  transition: transform 0.15s, box-shadow .18s;
  position: relative;
}
.course-card:hover {
  box-shadow: 0 8px 32px rgba(24,25,28,0.096);
  transform: translateY(-5px) scale(1.012);
}
.course-card h3 {
  color: #181818;
  font-size: 1.13rem;
}
.course-card p {
  color: #2c2c2c;
  font-size: 0.98rem;
  margin-bottom: 0;
}
.course-tag {
  display: inline-block;
  background: #18191c;
  color: #fff;
  font-size: 0.89rem;
  padding: 5px 14px;
  border-radius: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-top: 6px;
}
@media (max-width: 666px) {
  .course-list-grid { flex-direction: column; gap: 12px; }
}

/* --- BLOG ARTICLE LIST --- */
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.article-list article {
  background: #f8f9fa;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-default);
  padding: 24px 18px 18px 18px;
  min-width: 210px;
  max-width: 340px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article-list article h3 {
  font-size: 1.09rem;
  color: #181818;
}
.article-list article a {
  font-size: 0.97rem;
  color: #224477;
  font-weight: 700;
  align-self: flex-start;
  margin-top: 10px;
  text-decoration: underline;
}
.article-list article a:hover { color: #19bca6; }
@media (max-width: 700px) {
  .article-list { flex-direction: column; gap: 12px; }
}

/* --- SEARCH BAR & FILTERS --- */
.search-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 18px 0 8px;
  width: 100%;
}
.search-bar input[type="text"] {
  padding: 10px 16px;
  font-size: 1rem;
  border: 1px solid #d2d6db;
  border-radius: 16px 0 0 16px;
  background: #fff;
  width: 100%;
}
.search-bar button {
  background: #181818;
  border: none;
  padding: 10px 18px;
  border-radius: 0 16px 16px 0;
  cursor: pointer;
  transition: background 0.17s;
}
.search-bar button:hover {
  background: #224477;
}
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 8px 0 0 0;
  align-items: center;
}
.category-filters span { color: #555; font-weight: 600; }
.category-filters a {
  color: #224477;
  padding: 5px 10px;
  border-radius: 13px;
  background: #fff;
  font-size: 0.98rem;
  transition: background 0.16s, color 0.16s;
}
.category-filters a:hover,
.category-filters a:focus {
  background: #181818;
  color: #fff;
}

/* --- PROGRESS BAR --- */
.progress-bar {
  background: #e5e6ea;
  border-radius: 16px;
  width: 100%;
}
.progress {
  background: linear-gradient(90deg, #224477 80%, #333950 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 15px;
  padding: 8px 0;
  text-align: center;
  width: 100%;
  transition: width 0.26s;
  font-size: 1.01rem;
  box-shadow: 0 2px 7px rgba(34,44,77,0.13);
}

/* --- LOCATION MAP BLOCK --- */
.location-map {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #f4f6f9;
  border-radius: var(--radius-md);
  box-shadow: 0 1px 6px rgba(24,25,28,0.056);
  padding: 16px 20px;
  margin-top: 18px;
}
.location-map img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

/* --- CONTENT GRID / FLEX SPACING --- */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .content-grid { flex-direction: column; gap: 18px; }
}

/* --- FOOTER --- */
footer {
  background: #181818;
  color: #f8f9fa;
  letter-spacing: 0.02em;
  padding: 0;
}
footer .container {
  padding-top: 44px;
  padding-bottom: 6px;
}
.main-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #23242c;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 130px;
  max-width: 200px;
}
.footer-logo img {
  height: 44px;
  width: auto;
}
.footer-logo p {
  color: #dadcdf;
  font-size: 0.96rem;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 140px;
  flex: 1 1 150px;
}
.footer-menu a {
  color: #efefef;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  text-decoration: none;
  padding: 2px 0;
  transition: color 0.16s;
}
.footer-menu a:hover,
.footer-menu a:focus { color: #19bca6; }
.footer-contact {
  min-width: 180px;
  max-width: 245px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  color: #dadcdf;
}
.footer-contact h3 {
  color: #f8f9fa;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1.06rem;
  margin-bottom: 7px;
}
.footer-contact p{
  color: white;
}
.footer-contact p img {
  width: 16px;
  height: 16px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-social {
  display: flex;
  gap: 16px;
  min-width: 110px;
}
.footer-social a img {
  width: 30px;
  height: 30px;
  filter: grayscale(100%);
  opacity: 0.78;
  transition: filter 0.17s, opacity 0.17s;
}
.footer-social a:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.footer-bottom {
  margin-top: 18px;
  text-align: center;
  font-size: 0.99rem;
  color: #bbbcc0;
  padding-bottom: 18px;
}
@media (max-width: 900px) {
  .main-footer { flex-direction: column; align-items: flex-start; gap: 18px; }
}
@media (max-width: 700px) {
  footer .container { padding-top: 23px; }
}

/* --- THANK YOU PAGE --- */
.thankyou ul {
  margin: 18px 0;
  padding-left: 26px;
}
.thankyou li {
  margin: 0 0 10px 0; font-size: 1rem;
}

/* --- LEGAL/PRIVACY/COOKIE --- */
.legal h1 {
  color: #181818;
  font-size: 2rem;
}
.legal h2 { font-size: 1.23rem; color: #224477; }
.legal ul { margin: 11px 0 20px 26px; }
.legal li { margin-bottom: 7px; font-size: 0.99rem; }

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #18191c;
  color: #fff;
  padding: 28px 20px 22px 20px;
  box-shadow: 0 -4px 32px rgba(24,25,28,0.18),0 -1.5px 9px rgba(34,68,119,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 20px 20px 0 0;
  animation: fadeInBottom 0.6s cubic-bezier(.31,1.18,.29,1);
}
@keyframes fadeInBottom {
  0% {opacity:0;transform:translateY(48px);}
  100% {opacity:1;transform:translateY(0);}
}
.cookie-consent-banner p {
  color: #fff;
  font-size: 1.06rem;
}
.cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-buttons button {
  padding: 11px 30px;
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 2px;
  cursor: pointer;
  background: #224477;
  color: #fff !important;
  transition: background 0.18s;
  box-shadow: 0 2px 12px rgba(18,18,18,0.06);
}
.cookie-buttons .reject {
  background: #babcc0;
  color: #181818 !important;
}
.cookie-buttons .settings {
  background: #fff;
  color: #181818 !important;
  border: 1.5px solid #224477;
}
.cookie-buttons button:hover,
.cookie-buttons button:focus {
  background: #19bca6;
  color: #fff !important;
}
.cookie-buttons .settings:hover,
.cookie-buttons .settings:focus { background: #ecf0f6; color: #224477 !important; }
.cookie-consent-banner.hidden{
  display: none;
}

@media (max-width: 700px) {
  .cookie-consent-banner {
    padding: 16px 5px 12px 8px;
    border-radius: 12px 12px 0 0;
  }
  .cookie-buttons {
    flex-direction: column;
    gap: 9px;
    width: 100%;
  }
  .cookie-buttons button { width: 100%; }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(24,25,28,0.45);
  z-index: 3500;
  animation: fadeInModalBg 0.34s;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@keyframes fadeInModalBg {
  0% { opacity:0; }
  100%{ opacity:1; }
}
.cookie-modal {
  background: #fff;
  color: #181818;
  padding: 30px 30px 24px 30px;
  border-radius: 24px 24px 0 0;
  width: 100vw;
  max-width: 440px;
  box-shadow: 0 6px 48px rgba(24,25,28,0.25);
  margin-bottom: 0;
  animation: fadeInBottom 0.47s cubic-bezier(.25,1.21,.29,1.04);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal h2 {
  font-size: 1.37rem;
  margin-bottom: 4px;
  color: #224477;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
  padding: 7px 0;
}
.cookie-category label {
  font-size: 1.03rem;
  color: #19191d;
  font-weight: 600;
}
.cookie-category input[type='checkbox'] {
  accent-color: #19bca6;
  width: 18px;
  height: 18px;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cookie-modal button {
  padding: 9px 25px;
  border-radius: 17px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  background: #224477;
  color: #fff;
  transition: background 0.14s;
}
.cookie-modal button.secondary-btn {
  background: #babcc0;
  color: #181818;
}
.cookie-modal button:hover,
.cookie-modal button:focus {
  background: #19bca6;
  color: #fff;
}
@media (max-width: 500px) {
  .cookie-modal { padding: 18px 4px 12px 11px; max-width: 97vw; }
}

/* --- UTILITIES --- */
.text-center { text-align: center; }
.hide-for-mobile { display: block; }
@media (max-width: 700px) { .hide-for-mobile { display: none !important; } }

/* --- FORM ELEMENTS --- */
input,select,textarea{
  font-family:inherit;
  font-size:1rem;
  border-radius:11px;
  border:1px solid #dbe1e5;
  background:#f9fafb;
  color:#181818;
  padding:9px 14px;
  margin-bottom:10px;
  width:100%;
  transition: border-color 0.18s;
}
input:focus,select:focus,textarea:focus {
  border-color: #19bca6;
  background: #fff;
}

/* --- LINKS --- */
a, .link {
  color: #224477;
  text-decoration: underline;
  transition: color 0.15s;
}
a:hover, a:focus { color: #19bca6; text-decoration: underline; }

/* --- SPACING HELPERS --- */
.mb-0 { margin-bottom: 0!important; }
.mb-8 { margin-bottom: 8px!important; }
.mb-16 { margin-bottom: 16px!important; }
.mb-24 { margin-bottom: 24px!important; }
.mt-16 { margin-top:16px!important; }
.mt-24 { margin-top:24px!important; }

/* --- ACCESSIBILITY --- */
.sr-only { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; overflow: hidden!important; clip: rect(1px, 1px, 1px, 1px)!important; white-space: nowrap!important; border: 0!important; }

/* --- END --- */
