/* =======================================================
   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;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F6F7F8;
  color: #223347;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}
a {
  background: none;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
  outline: none;
}
input, textarea, select {
  font: inherit;
  outline: none;
}

/* =======================================================
   Variables for Brand & Style (with fallbacks)
======================================================= */
:root {
  --primary: #1B4368;
  --secondary: #FFFFFF;
  --accent: #FFB74D;
  --brand-blue: #23588C;
  --bg-muted: #F8FAFC;
  --bg-decor: #E0E8EF;
  --text-dark: #222C40;
  --text-light: #fff;
  --text-muted: #556985;
  --grey-border: #E0E0E0;
  --shadow-subtle: 0 6px 24px 0 rgba(34,56,61,0.07);
  --radius: 16px;
  --radius-card: 12px;
  --spacing-main: 40px;
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Georgia', 'Times New Roman', serif;
  --font-contrast: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* Hide skip-link if not focused */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 999;
}
.skip-link:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  padding: 12px 24px;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--text-light);
  font-weight: 600;
}

/* =======================================================
   GENERAL TYPOGRAPHY
======================================================= */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--bg-muted);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 {font-size: 2.4rem; margin-bottom: 24px;}
h2 {font-size: 2rem; margin-bottom: 20px;}
h3 {font-size: 1.3rem; margin-bottom: 12px;}
h4 {font-size: 1.1rem; margin-bottom: 10px; font-weight: 600;}
h5,h6 {font-size: 1rem; margin-bottom: 8px; font-weight: 500;}

p, li, blockquote, cite {font-size: 1.08rem; color: var(--text-dark);}
strong {font-weight: 600;}
blockquote {
  font-style: italic;
  background: var(--bg-decor);
  color: var(--primary);
  border-left: 4px solid var(--accent);
  padding: 18px 28px;
  margin: 0 0 16px 0;
  border-radius: var(--radius-card) 0 0 var(--radius-card);
}
cite {
  display: block;
  margin-top: 8px;
  margin-bottom: 8px;
  color: var(--primary);
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
}
a {
  color: var(--primary);
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--accent);
  text-decoration: underline;
}

/* Spacing utilities */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 32px; }

hr {
  border: none;
  border-top: 1px solid var(--grey-border);
  margin: 32px 0;
}

/* List style reset & pseudo marker */
ul {
  list-style: none;
  padding-left: 0;
}
ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
}
ul li:before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 1.2em;
  line-height: 1.6;
}

/* No marker for feature/benefit and card list layouts */
.features ul,
.benefit-grid,
.benefit-icons,
.category-filters,
.ebook-list,
.service-list,
.service-overview-grid,
.testimonial-card ul,
.pricing-table,
.seminar-list ul,
.category-grid {
  list-style: none!important;
}
.features ul li:before,
.benefit-grid > div:before,
.benefit-icons > div:before,
.category-grid > div:before {
  display: none;
}

/* =======================================================
   LAYOUT: CONTAINERS & WRAPPERS
======================================================= */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.section {
  background: var(--secondary, #fff);
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  min-width: 260px;
  background: var(--secondary, #fff);
  box-shadow: var(--shadow-subtle);
  border-radius: var(--radius-card);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  flex: 1 1 280px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 10px 36px 0 rgba(34,56,61,0.13);
  transform: translateY(-3px) scale(1.018);
  z-index: 2;
}

.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;
}
.text-image-section > * {
  flex: 1 1 300px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-subtle);
  padding: 20px 24px;
  margin-bottom: 20px;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.18s, border-color 0.18s;
  max-width: 520px;
}
.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px 0 rgba(34,56,61,0.10);
}
.testimonial-card blockquote {
  color: var(--primary);
  background: none;
  border-left: 3px solid var(--primary);
  padding: 0 0 0 14px;
  margin: 0 0 12px 0;
  border-radius: 0;
}
.testimonial-card cite {
  color: #314267;
  font-size: 0.98rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

/* ================= HERO ===================== */
.hero, .newsletter, .callout, .confirmation {
  background: linear-gradient(90deg, #e8edf2 60%, #f6f7f9 100%);
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 40px 20px 48px 20px;
  min-height: 240px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.hero h1, .hero h2, .callout h2 { color: var(--primary); }
.hero p, .callout p { color: var(--text-muted); max-width: 640px; }

.cta-featured-box {
  background: var(--bg-decor);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 1px 8px 0 rgba(34,56,61,0.06);
  margin: 24px 0 0 0;
}

/* =======================================================
   NAVIGATION: MAIN & FOOTER
======================================================= */
header {
  background: var(--secondary);
  box-shadow: 0 2px 16px rgba(34,56,61,0.03);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 99;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 20px;
  background: none;
}
.main-nav > a img {
  height: 48px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  margin-left: 32px;
}
.main-nav ul li a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: .02em;
  transition: background 0.15s, color 0.15s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: var(--accent);
  color: #fff;
}
.cta-btn {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 12px 30px;
  border-radius: 28px;
  font-size: 1.09rem;
  border: none;
  outline: none;
  letter-spacing: 0.04em;
  margin-left: auto;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(34,56,61,0.08);
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent);
  color: var(--primary);
}

/* ================= MOBILE NAV ===================== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 18px;
  background: var(--primary);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 6px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  z-index: 102;
  box-shadow: 0 2px 6px rgba(34,56,61,0.10);
  transition: background 0.2s, color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--accent);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 6px 32px 0 rgba(34,56,61,0.13);
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.62,.04,.38,1), opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
  transition: transform 0.34s cubic-bezier(.62,.04,.38,1), opacity 0.26s;
}
.mobile-menu-close {
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-self: flex-end;
  margin: 22px 24px 10px 0;
  box-shadow: 0 2px 8px #ffdca7;
  transition: background 0.18s;
}
.mobile-menu-close:hover {
  background: #fff4e5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 0 28px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  padding: 14px 18px;
  border-radius: 8px;
  transition: background 0.15s, color 0.18s;
  width: 100%;
  text-align: left;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--bg-decor);
  color: var(--accent);
}

/* Show mobile menu button & hide menu at breakpoints */
@media (max-width: 1020px) {
  .main-nav ul {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .main-nav > a img { height: 40px; }
}

/* Sticky + overlay hack for body when menu open */
body.mobile-menu-open {
  overflow: hidden;
}

/* ================= FOOTER ===================== */
footer {
  background: var(--secondary);
  box-shadow: 0 -2px 12px 0 rgba(34,56,61,0.03);
}
footer section {
  padding: 32px 0 0 0;
  background: none;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 64px;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid var(--grey-border);
  padding-top: 32px;
}
footer nav {
  margin-bottom: 12px;
}
footer nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav ul li a {
  color: var(--primary);
  font-size: 1.08rem;
  line-height: 1.5;
  border-radius: 4px;
  padding: 2px 8px;
}
footer nav ul li a:hover { background: var(--bg-decor); }
footer .contact-info { max-width: 280px; color: var(--text-muted); font-size: .98rem; font-family: var(--font-display);}
footer .contact-info a { color: var(--primary); text-decoration: underline; }
footer .social-links {
  display: flex;
  gap: 16px;
}
footer .social-links a {
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-decor);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  border: none;
}
footer .social-links a img {
  height: 22px;
  width: 22px;
}
footer .social-links a:hover {
  background: var(--accent);
}

/* =======================================================
   SECTIONS, CARDS, FLEX GRIDS & SPECIALS
======================================================= */
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}
.features ul li {
  background: var(--bg-decor);
  border-radius: var(--radius-card);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  min-width: 240px;
  box-shadow: var(--shadow-subtle);
  margin-bottom: 0;
  color: var(--primary);
  transition: box-shadow 0.13s;
}
.features ul li img {
  width: 30px; height: 30px;
  flex-shrink: 0;
  filter: grayscale(30%);
}
.features ul li:hover {
  box-shadow: 0 2px 16px 0 rgba(34,56,61,0.07);
}

.service-list,
.service-overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 16px 0;
}
.service-list > div,
.service-overview-grid > div {
  flex: 1 1 260px;
  background: var(--bg-decor);
  border-radius: var(--radius-card);
  padding: 24px 28px 28px 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #e3e7ea;
}
.service-list > div span,
.service-overview-grid > div span {
  font-size: .97rem;
  color: var(--primary);
  font-weight: 700;
  font-family: var(--font-display);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.category-filters button {
  background: var(--bg-decor);
  border-radius: 6px;
  border: 1px solid var(--grey-border);
  padding: 7px 18px;
  font-family: var(--font-display);
  color: var(--primary);
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.15s, color 0.17s, border-color 0.18s;
}
.category-filters button:hover, .category-filters button.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 28px;
}
.category-grid > div {
  background: var(--bg-decor);
  border-radius: var(--radius-card);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.11rem;
  font-weight: 500;
  color: var(--primary);
  min-width: 165px;
  transition: background 0.13s, color 0.17s;
  box-shadow: var(--shadow-subtle);
}
.category-grid > div:hover {
  background: #fffbe8;
  color: #af6b08;
}
.category-grid > div img {
  width: 24px; height: 24px;
}

.tips-list ul, .seminar-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.tips-list ul li, .seminar-list ul li, .ebook-list li {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-subtle);
  padding: 26px 24px 24px 24px;
  min-width: 250px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
  transition: box-shadow 0.13s, border-color 0.12s;
}
.tips-list ul li:hover, .ebook-list li:hover {
  box-shadow: 0 8px 26px 0 rgba(34,56,61,0.08);
  border-color: var(--accent);
}
.tips-list ul li a,
.seminar-list ul li a {
  align-self: flex-start;
  color: var(--primary);
  font-weight: 600;
  border-radius: 6px;
  padding: 3px 7px;
  margin-top: 4px;
}
.tips-list ul li a:hover { color: var(--accent); background: var(--bg-decor); }

.ebook-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.ebook-list li button {
  background: var(--accent);
  color: var(--primary);
  font-size: 1.09rem;
  font-family: var(--font-display);
  padding: 8px 24px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  margin-top: 14px;
  transition: background 0.16s, color 0.18s;
}
.ebook-list li button:hover {
  background: var(--primary);
  color: #fff;
}
.ebook-list li span {
  color: var(--primary);
  font-weight: 600;
}

.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 0 0;
}
.benefit-grid > div, .benefit-icons > div {
  background: var(--bg-decor);
  padding: 16px 18px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  min-width: 170px;
}
.benefit-grid > div img, .benefit-icons > div img {
  width: 22px; height: 22px;
}

.benefit-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.quote-section {
  background: var(--bg-decor);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin-top: 18px;
  color: var(--primary);
  font-style: italic;
  font-family: var(--font-display);
  box-shadow: var(--shadow-subtle);
}
.quote-section blockquote {
  border: none;
  padding-left: 0;
  background: none;
  margin-bottom: 8px;
}
.quote-section cite {
  color: #314267;
  font-style: normal;
  font-size: 1rem;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  margin-bottom: 22px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-subtle);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  font-family: var(--font-display);
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 16px 18px;
}
.pricing-table thead th {
  background: var(--bg-decor);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
}
.pricing-table tbody tr:last-child {
  border-bottom: none;
}
.pricing-table td {
  color: var(--text-dark);
  font-size: 1.05rem;
}

.comparison-section {
  background: var(--bg-decor);
  border-radius: var(--radius-card);
  padding: 22px 28px;
  margin-top: 24px;
  font-size: 1.05rem;
  font-family: var(--font-display);
  box-shadow: var(--shadow-subtle);
}
.comparison-section h3 { margin-top: 0; }

.founder-highlight {
  background: var(--bg-decor);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius-card);
  padding: 20px 28px;
  margin: 12px 0 0 0;
  font-size: 1.07rem;
}

/* Generic text block with spacing */
.text-section {
  margin: 0 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-placeholder {
  background: var(--bg-decor);
  border: 1px dashed #b5cbe1;
  border-radius: var(--radius-card);
  color: var(--primary);
  padding: 32px 0 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
}

/* Legal and Cookie Sections */
.legal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-subtle);
  margin-bottom: 60px;
  padding: 40px 24px;
}
.legal h1, .legal h2 { color: var(--primary);}
.legal h2 {font-size: 1.35rem; margin-top: 18px;}
.legal ul { margin-bottom: 12px; }
.legal li { margin-bottom: 8px; }
.legal .text-section a {
  color: var(--accent);
  text-decoration: underline;
}

/* Confirmation Message (Thank You) */
.confirmation {
  background: linear-gradient(94deg, #f6f7f9 60%, #e0e8ef 100%);
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 60px 20px 68px 20px;
  min-height: 240px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  justify-content: center;
}
.confirmation h1 { margin-bottom: 14px; }

/* Newsletter Signup Callout */
.newsletter-signup {
  background: var(--bg-decor);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-subtle);
  margin-bottom: 60px;
  padding: 36px 18px 40px 18px;
  display: flex;
}
.newsletter-signup .cta-btn { margin-top: 14px; }

/* ========== FAQ Section ========== */
.faq ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq ul li {
  background: var(--bg-decor);
  border-radius: var(--radius-card);
  padding: 18px 22px;
  box-shadow: var(--shadow-subtle);
  font-size: 1.08rem;
  color: var(--primary);
  font-family: var(--font-display);
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
  .features ul, .service-list, .category-grid, .benefit-grid, .benefit-icons, .ebook-list, .tips-list ul, .seminar-list ul {
    gap: 14px;
  }
  .hero, .newsletter, .callout, .confirmation {
    padding: 24px 10px 32px 10px;
    min-height: 160px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    padding: 12px 6px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .section, .legal {
    padding: 18px 10px;
    margin-bottom: 42px;
  }
  .footer .content-wrapper {
    gap: 18px 8px;
  }
  .features ul, .service-list, .category-grid, .benefit-grid, .benefit-icons, .ebook-list, .tips-list ul, .seminar-list ul {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .confirmation {
    padding: 38px 10px 44px 10px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.16rem; }
  .card, .service-list > div, .service-overview-grid > div, .tips-list ul li, .ebook-list li, .category-grid > div, .features ul li {
    min-width: 0;
    padding: 14px 10px 14px 10px;
  }
  .testimonial-card {
    padding: 14px 10px;
    max-width: 96vw;
  }
}

/* =======================================================
   BUTTONS, FORMS & MICRO-INTERACTIONS
======================================================= */
button, .cta-btn {
  transition: background 0.15s, color 0.14s, transform 0.13s, box-shadow 0.14s;
}
button:active, .cta-btn:active {
  transform: scale(0.96);
}

button:focus, .cta-btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

input, textarea, select {
  border-radius: 6px;
  border: 1px solid #d2dae3;
  padding: 9px 12px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: var(--text-dark);
  margin-bottom: 18px;
}
input:focus, textarea:focus {
  border-color: var(--primary);
}

/* =======================================================
   COOKIE BANNER & MODAL
======================================================= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 16px 0 rgba(34,56,61,0.12);
  border-top: 2px solid var(--accent);
  padding: 24px 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  z-index: 5010;
  opacity: 1;
  transition: transform 0.29s cubic-bezier(.62,.04,.38,1), opacity 0.18s;
  font-family: var(--font-display);
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner p {
  color: var(--primary);
  font-size: 1rem;
  flex: 3 1 280px;
  margin-bottom: 0;
}
.cookie-consent-banner .btn {
  margin-right: 12px;
  font-size: 1.02rem;
  padding: 8px 24px;
  border-radius: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  border: 1px solid var(--accent);
  cursor: pointer;
  background: var(--accent);
  color: var(--primary);
  transition: background 0.16s, color 0.17s;
}
.cookie-consent-banner .btn.settings {
  background: #fff7ec;
  color: var(--accent);
  border-color: var(--accent);
}
.cookie-consent-banner .btn:hover {
  background: var(--primary);
  color: #fff;
}
.cookie-consent-banner .btn.settings:hover {
  background: var(--accent);
  color: var(--primary);
}

.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34, 67, 104, 0.26);
  z-index: 5050;
  opacity: 1;
  transition: opacity 0.13s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 6px 26px 0 rgba(34,56,61,0.17);
  min-width: 320px;
  max-width: 96vw;
  padding: 40px 30px 32px 30px;
  position: relative;
  z-index: 5051;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: popIn 0.33s cubic-bezier(.62,.04,.38,1) 1;
}
@keyframes popIn {
  0% { transform: scale(0.94) translateY(18px); opacity: 0; }
  80% { transform: scale(1.01); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.22rem;
  color: var(--primary);
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--primary);
}
.cookie-modal .category-label {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--primary);
}
.cookie-modal .toggle {
  margin-left: auto;
  font-size: 1.02rem;
}
.cookie-modal .btns {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.cookie-modal .btn {
  background: var(--accent);
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 9px 20px;
  border-radius: 19px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.cookie-modal .btn.reject {
  background: #fff7eb;
  color: var(--accent);
  border-color: var(--accent);
}
.cookie-modal .btn.settings {
  background: #fff;
  color: var(--primary);
}
.cookie-modal .btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.cookie-modal .close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 2rem;
  color: var(--primary);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 38px; height: 38px;
  transition: background 0.12s;
}
.cookie-modal .close:hover {
  background: #f6f7f9;
}

/* Cookie Banner/Modal Responsive */
@media (max-width: 600px) {
  .cookie-consent-banner { flex-direction: column; align-items: stretch; gap: 10px; padding: 18px 6px; }
  .cookie-modal { padding: 22px 8px 16px 12px; min-width: 0; }
}

/* ========= Accessibility Utilities ============= */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }

/* Hide visually but keep for screen readers */

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