/* ==== 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, 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-size: 16px;
  line-height: 1.5;
  height: 100%;
  background: #F5F8FA;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #163041;
  background: #F5F8FA;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
  margin: 0;
}
a {
  color: #064579;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #35A7C2;
  outline: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

/* ==== VARIABLES ==== */
:root {
  --color-primary: #064579;
  --color-secondary: #35A7C2;
  --color-accent: #F5F8FA;
  --color-light: #ffffff;
  --color-dark: #163041;
  --color-mid: #B7C2CC;
  --color-border: #E2E6EA;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --radius: 12px;
  --radius-sm: 7px;
  --shadow-sm: 0 2px 8px rgba(0,24,64,0.06);
  --shadow-md: 0 6px 24px rgba(0,24,64,0.11);
  --shadow-intensive: 0 6px 24px rgba(6,69,121,0.14);
  --transition: .2s cubic-bezier(.52,.02,.36,1);
  --section-spacing: 60px;
  --section-padding: 40px 20px;
}

/* ==== TYPE SCALE & HEADINGS ==== */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  line-height: 1.17;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.22;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.26rem;
  line-height: 1.23;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 10px;
}
p, .text-section {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 16px;
}
.subheadline {
  font-family: var(--font-body);
  font-size: 1.19rem;
  color: var(--color-secondary);
  margin-bottom: 24px;
  font-weight: 500;
}
strong {
  font-weight: 600;
}

/* ==== CONTAINER, LAYOUTS ==== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section {
  margin-bottom: var(--section-spacing);
  padding: var(--section-padding);
  background: transparent;
}

/* ==== FLEXBOX MANDATED LAYOUTS ==== */
.card-container, .card-grid, .course-cards, .benefit-grid, .feature-grid, .team-member-list, .guide-list, .instructor-cards, .categories-list, .testimonial-cards, .resource-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.card {
  position: relative;
  margin-bottom: 20px;
}
.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: flex-start;
  gap: 20px;
  padding: 20px;
}
.feature-item, .benefit-item, .guide-item, .team-member, .value-item, .resource-categories li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== HEADER & NAV ==== */
header {
  width: 100%;
  background: var(--color-light);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.logo img, .footer-logo img {
  height: 40px;
  width: auto;
}
.main-nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav li {
  display: flex;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-primary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-left: 32px;
  transition: background .2s, color .2s, box-shadow .2s;
  border: none;
  letter-spacing: 0.02em;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: var(--shadow-intensive);
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: #fff;
  font-size: 2.1rem;
  border-radius: var(--radius-sm);
  padding: 6px 20px 6px 14px;
  margin-left: auto;
  margin-right: 0;
  transition: background .15s, color .15s;
  z-index: 350;
  border: none;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-secondary);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(16,32,40,0.93);
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.54,0,.3,1); /* slide in */
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #fff;
  background: none;
  margin: 30px 0 30px 28px;
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100vw;
  margin-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.22rem;
  padding: 11px 0;
  border-radius: var(--radius-sm);
  transition: color .11s, background .11s;
  width: calc(100vw - 64px);
  max-width: 320px;
  outline: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-secondary);
  background: rgba(53,167,194,0.19);
}

/* ==== HERO ==== */
.hero, .faq-hero {
  min-height: 340px;
  position: relative;
  background: var(--color-light);
  display: flex;
  align-items: center;
  margin-bottom: var(--section-spacing);
  padding: 32px 0 32px 0;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 2px 28px rgba(6,69,121,0.06);
}
.hero .content-wrapper, .faq-hero .content-wrapper {
  max-width: 570px;
  gap: 20px;
}

/* ==== FEATURES, BENEFITS, CARDS ==== */
.feature-grid, .benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 8px;
}
.feature-item, .benefit-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  padding: 28px 22px 23px 22px;
  flex: 1 1 230px;
  min-width: 240px;
  transition: box-shadow .22s, border-color .2s, transform .16s;
  cursor: default;
}
.feature-item:hover, .benefit-item:hover {
  box-shadow: var(--shadow-intensive);
  border-color: var(--color-secondary);
  transform: translateY(-3px) scale(1.02);
}
.feature-item img, .benefit-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  opacity: 0.95;
}

/* ==== TEAM MEMBERS ==== */
.team-member-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.team-member {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  padding: 20px 18px;
  min-width: 270px;
  flex: 1 1 290px;
}

/* ==== COURSES PAGE ==== */
.course-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.course-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 23px 20px 18px 20px;
  flex: 1 1 275px;
  min-width: 250px;
  max-width: 360px;
  border: 1px solid var(--color-border);
  transition: box-shadow .18s, border-color .18s, transform .17s;
}
.course-card:hover {
  box-shadow: var(--shadow-intensive);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}
.course-filters {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 10px;
}
.course-filters input, .course-filters select {
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-accent);
}
.course-filters input[disabled], .course-filters select[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ==== INSTRUCTOR CARDS ==== */
.instructor-cards {
  flex-wrap: wrap;
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}
.instructor-card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  min-width: 300px;
  max-width: 520px;
  width: 100%;
  padding: 26px 26px 18px 24px;
  align-items: center;
  transition: box-shadow .18s, border-color .18s;
}
.instructor-card:hover {
  box-shadow: var(--shadow-intensive);
  border-color: var(--color-secondary);
}
.instructor-card img {
  min-width: 48px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 2px 14px rgba(6,69,121,0.12);
  background: var(--color-accent);
}
.instructor-info h3 {
  margin-bottom: 8px;
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  background: #F9FBFC;
  border-top: 1px solid var(--color-border);
  padding: 40px 0 0 0;
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  background: #fff;
  color: #1c2630;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  padding: 24px 22px;
  min-width: 250px;
  max-width: 375px;
  flex: 1 1 270px;
  font-size: 1.04rem;
  transition: box-shadow .21s, border-color .12s;
  position: relative;
}
.testimonial-card p {
  color: #1a2633;
  margin-bottom: 18px;
  font-style: italic;
  font-size: 1.04rem;
  line-height: 1.5;
}
.testimonial-author {
  color: var(--color-primary);
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-intense);
  border-color: var(--color-secondary);
}

/* ==== CTA FINAL, TEAM CTA ==== */
.cta-final, .cta-team {
  background: linear-gradient(96deg, #f5f8fa 78%, #eaf0f5 100%);
  border-radius: var(--radius);
  margin-bottom: 0;
  padding: 42px 0 52px 0;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.cta-final .content-wrapper, .cta-team .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ==== ABOUT & HISTORY ==== */
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.value-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  padding: 24px 20px 21px 20px;
  min-width: 220px;
  flex: 1 1 220px;
}
.text-section {
  margin-bottom: 0;
}
.timeline {
  margin: 18px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.timeline li {
  font-size: 1.02rem;
  color: var(--color-primary);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  border-left: 3px solid var(--color-secondary);
}

/* ==== RESOURCES PAGE ==== */
.resource-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.resource-categories li {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 15px 20px;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  border: 1px solid var(--color-border);
  min-width: 140px;
  transition: background .15s, border .2s;
}
.resource-categories li:hover {
  background: var(--color-accent);
  border-color: var(--color-secondary);
}
.guide-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.guide-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  flex: 1 1 220px;
  min-width: 220px;
  padding: 19px 19px 16px 19px;
  transition: box-shadow .18s, border-color .18s, transform .12s;
}
.guide-item:hover {
  box-shadow: var(--shadow-intensive);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}

/* ==== FAQ PAGE ==== */
.faq-list {
  background: #F9FBFC;
  border-radius: var(--radius);
  padding: 32px 0;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  padding: 19px 22px 15px 22px;
  transition: box-shadow .2s, border .17s;
  box-shadow: var(--shadow-sm);
}
.faq-item h3 {
  font-size: 1.12rem;
  color: var(--color-primary);
  margin-bottom: 8px;
  font-weight: 600;
}
.faq-item p {
  font-size: 1rem;
}

/* ==== CONTACT PAGE ==== */
.contact-details {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.info-block {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  padding: 12px 18px;
  min-width: 205px;
}
.info-block img {
  width: 26px;
  height: 26px;
}
.map-location {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 13px 0 0 0;
}
.map-location img {
  width: 56px;
  height: 56px;
}
.hours-table {
  margin: 14px 0 16px 0;
  border-collapse: collapse;
}
.hours-table td {
  padding: 8px 16px 8px 3px;
  font-size: 1rem;
  color: var(--color-dark);
}
.support-methods {
  margin-top: 20px;
}
.support-methods h3 {
  margin-bottom: 7px;
}

/* ==== LEGAL PAGES ==== */
.privacy-policy,.gdpr,.cookies-policy,.terms-of-use {
  background: #fff;
  border-radius: var(--radius);
  margin: 36px 0;
  padding: 38px 0 44px 0;
  box-shadow: var(--shadow-sm);
}

/* ==== THANK YOU PAGE ==== */
.thank-you .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.thank-you .btn-primary {
  margin: 12px 0 0 0;
}

/* ==== FOOTER ==== */
footer {
  background: var(--color-light);
  border-top: 1px solid var(--color-border);
  margin-top: 48px;
  padding: 0 0 6px 0;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 10px 0;
  gap: 20px;
  border-bottom: 1px solid var(--color-border);
}
.footer-logo img {
  height: 36px;
}
.footer-top nav {
  display: flex;
  gap: 21px;
}
.footer-top nav a {
  font-size: 1rem;
  color: var(--color-primary);
  padding: 5px 11px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: background .13s, color .12s;
}
.footer-top nav a:hover, .footer-top nav a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.96rem;
  padding: 9px 0 0 0;
  color: var(--color-mid);
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -2px 18px rgba(6,69,121,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 650;
  padding: 20px 34px 18px 34px;
  gap: 18px;
  max-width: 100vw;
  transition: transform .3s var(--transition), opacity .2s;
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: var(--color-dark);
  font-size: 1rem;
  margin-right: 18px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-cookie {
  background: var(--color-secondary);
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-display);
  border-radius: var(--radius-sm);
  padding: 8px 22px;
  margin-right: 0;
  border: none;
  font-weight: 500;
  transition: background .19s, color .17s;
}
.btn-cookie:focus, .btn-cookie:hover {
  background: var(--color-primary);
  color: #fff;
}
.btn-cookie.settings {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 8px 16px;
  transition: background .19s, color .18s, border .2s;
}
.btn-cookie.settings:focus, .btn-cookie.settings:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-secondary);
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 30, 45, 0.29);
  z-index: 755;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  transition: opacity .20s;
  opacity: 0;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px 24px 28px;
  max-width: 440px;
  width: 93vw;
  margin-bottom: 60px;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookie-modal-pop .36s cubic-bezier(.85,0,.39,1);
}
@keyframes cookie-modal-pop {
  0% { transform: translateY(70px) scale(0.98); opacity: 0; }
  80% { transform: translateY(-3px) scale(1.02); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 13px;
  background: transparent;
  color: var(--color-secondary);
  font-size: 1.7rem;
  border-radius: 50%;
  border: none;
  width: 38px; height: 38px;
  text-align: center;
  transition: background .17s, color .17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--color-dark);
  font-family: var(--font-body);
  font-weight: 500;
}
.cookie-toggle {
  min-width: 42px;
  height: 24px;
  border-radius: 12px;
  background: var(--color-accent);
  border: 1px solid var(--color-border);
  position: relative;
  cursor: pointer;
  margin-top: 2px;
  display: inline-block;
  outline: none;
  transition: border-color .21s;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
  position: absolute;
}
.cookie-toggle span {
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #bcd3df;
  position: absolute;
  top: 2px; left: 4px;
  transition: left .2s, background .2s;
}
.cookie-toggle input:checked+span {
  left: 20px;
  background: var(--color-secondary);
}
/* Always enabled category: dim toggle */
.cookie-category.essential .cookie-toggle {
  opacity: 0.5;
  pointer-events: none;
}

/* ==== ANIMATIONS/INTERACTIONS ==== */
.card, .course-card, .feature-item, .benefit-item, .value-item, .testimonial-card, .instructor-card, .team-member, .resource-categories li, .guide-item, .faq-item {
  transition: box-shadow .23s, transform .14s, border-color .13s, background .13s;
}
@media (hover: hover) {
  .card:hover, .course-card:hover, .feature-item:hover, .benefit-item:hover, .value-item:hover, .testimonial-card:hover, .instructor-card:hover, .team-member:hover, .resource-categories li:hover, .guide-item:hover, .faq-item:hover {
    box-shadow: 0 12px 32px rgba(6,69,121,0.13);
    background: #f9fbfc;
    transform: translateY(-2px) scale(1.018);
  }
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--color-secondary);
  border-color: var(--color-secondary);
}

/* ==== RESPONSIVE RULES ==== */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .feature-grid, .benefit-grid, .instructor-cards, .guide-list, .testimonial-cards, .team-member-list, .card-container {
    gap: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  :root {
    --section-padding: 22px 5vw;
    --section-spacing: 40px;
  }
  h1, .h1 { font-size: 2.1rem; }
  h2, .h2 { font-size: 1.41rem; }
  .main-nav ul { display: none; }
  .main-nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0 6px 0;
  }
  .content-wrapper {
    padding-left: 0; padding-right: 0;
  }
  .contact-details, .categories-list, .feature-grid, .benefit-grid, .resource-categories, .guide-list, .instructor-cards, .testimonial-cards, .card-container, .team-member-list, .timeline {
    flex-direction: column;
    gap: 18px;
  }
  .cta-final, .cta-team {
    padding: 36px 0 36px 0;
  }
  .about, .history, .team {
    padding: 0;
    margin: 20px 0 24px 0;
  }
  .privacy-policy, .gdpr, .cookies-policy, .terms-of-use {
    margin: 16px 0;
    padding: 21px 0 28px 0;
  }
  .faq-hero, .hero {
    min-height: unset;
    padding: 26px 0 26px 0;
  }
  .map-location {
    flex-direction: column;
    gap: 12px;
  }
  .footer-top nav {
    flex-direction: column;
    gap: 11px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 10px 18px 12px;
  }
}
@media (max-width: 510px) {
  .container {
    padding: 0 7px;
  }
  .footer-logo img { height: 28px; }
  .logo img { height: 32px; }
  .main-nav { padding-top: 11px; padding-bottom: 11px; }
  .cta-final,
  .cta-team {
    border-radius: 0;
  }
}

/* ==== SCROLLBAR ==== */
::-webkit-scrollbar {
  width: 8px;
  background: var(--color-accent);
}
::-webkit-scrollbar-thumb {
  background: #e1e6ec;
  border-radius: 6px;
}

body {
  scrollbar-color: #e1e6ec var(--color-accent);
  scrollbar-width: thin;
}

/* ==== UTILITY CLASSES ==== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.pt-0 { padding-top: 0!important; }
.pb-0 { padding-bottom: 0!important; }

/* ==== PRINT FRIENDLY ==== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none!important; }
  .container, body { background: #fff!important; }
}

/* ==== END SCANDINAVIAN CLEAN ==== */