/* ----------------------------
   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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
}
ul, ol {
  list-style: none;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

/* -------------------------------
   BRAND & TYPOGRAPHY
------------------------------- */
:root {
  --primary: #253C5B;
  --secondary: #B2B8C5;
  --accent: #F2A541;
  --background-light: #FAFAFC;
  --background: #F5F7FB;
  --text: #21242A;
  --heading: #253C5B;
  --border-radius: 16px;
  --shadow: 0 8px 24px 0 rgba(37,60,91,0.07);
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
}
@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
}
@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans'), url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: var(--background);
  color: var(--text);
  font-size: 16px;
  min-height: 100vh;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: var(--heading);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
p, li, blockquote {
  font-size: 1rem;
  font-weight: 400;
}
strong {
  font-weight: 700;
}
small {
  font-size: 0.9375em;
  color: var(--secondary);
}

/* ----------------------------------
   LAYOUT UTILITIES & CONTAINERS
---------------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--background-light);
  border-radius: var(--border-radius);
}

.text-section {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

@media (max-width: 768px) {
  .container {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }
  .section {
    padding: 32px 10px;
    margin-bottom: 40px;
  }
}

/* -----------------------------------
   HEADER, NAVIGATION & BRANDING
----------------------------------- */
header {
  background: var(--primary);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}
header nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 0;
  font-size: 1rem;
  opacity: 0.92;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
}
header nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.2s;
  margin-top: 2px;
}
header nav a:hover, header nav a:focus {
  color: var(--accent);
  opacity: 1;
}
header nav a:hover:after, header nav a:focus:after {
  width: 100%;
}
header a.button.primary {
  margin-left: var(--space-md);
}
header img {
  height: 48px;
  width: auto;
}

/* Hamburger toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin-left: auto;
  cursor: pointer;
  z-index: 1020;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover {
  color: var(--accent);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--primary);
  color: #fff;
  z-index: 1010;
  transform: translateX(-105%);
  transition: transform 0.4s cubic-bezier(.86,.01,.48,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-md);
  width: 100%;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: auto;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: var(--space-xs);
  cursor: pointer;
  margin-bottom: var(--space-sm);
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s, color 0.2s;
  border-radius: var(--border-radius);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: rgba(255,255,255,0.05);
}

@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ---------------------------
   HERO, CTA, SECTIONS
--------------------------- */
.hero {
  min-height: 56vh;
  background: linear-gradient(96deg, #b2b8c5 0%, #f2a541 100%);
  background: linear-gradient(102deg, #f6f8fa 0%, #e0e4ed 55%, #f2a541 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.hero h1 {
  color: var(--primary);
}
.hero .content-wrapper {
  background: rgba(255,255,255,0.85);
  border-radius: var(--border-radius);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow);
  align-items: flex-start;
  gap: var(--space-md);
}
.cta {
  background: linear-gradient(90deg, #f2a541 0%, #b2b8c5 100%);
  border-radius: var(--border-radius);
  padding: var(--space-lg) 0;
  color: #253C5B;
  margin-bottom: 60px;
}
.cta .content-wrapper {
  align-items: center;
}
.cta h2 {
  color: var(--primary);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .hero, .cta {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .hero .content-wrapper, .cta .content-wrapper {
    padding: var(--space-md) var(--space-xs);
  }
}

/* -----------------------------
   BUTTONS
----------------------------- */
.button {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.85em 2em;
  border-radius: 999px;
  outline: none;
  border: 0;
  letter-spacing: 0.04em;
  margin: 0.5em 0;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 2px 12px rgba(37,60,91,0.08);
  transition: background 0.22s, color 0.22s, box-shadow 0.16s;
  text-align: center;
}
.button.primary {
  background: var(--primary);
  color: #fff;
}
.button.primary:hover, .button.primary:focus {
  background: #18283f;
  box-shadow: 0 7px 24px rgba(37,60,91,0.12);
}
.button.secondary {
  background: var(--secondary);
  color: var(--primary);
}
.button.secondary:hover, .button.secondary:focus {
  background: #dde1ee;
  color: #18283f;
}
.button.accent {
  background: var(--accent);
  color: var(--primary);
}
.button.accent:hover, .button.accent:focus {
  background: #e39323;
  color: #fff;
  box-shadow: 0 9px 28px rgba(242,165,65,0.13);
}
.button:active {
  transform: translateY(2px) scale(0.97);
}

/* -----------------------------
   FEATURES SECTION
----------------------------- */
.features {
  margin-bottom: 60px;
}
.features .content-wrapper {
  align-items: flex-start;
  gap: var(--space-lg);
}
.features ul, .features ol {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.features ul li, .features ol li {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-width: 240px;
  max-width: 350px;
 
  margin-bottom: 20px;
  transition: box-shadow 0.21s, transform 0.21s;
}
.features ul li:hover {
  box-shadow: 0 12px 32px rgba(37,60,91,0.13);
  transform: translateY(-3px) scale(1.01);
}
.features ul li img {
  width: 44px; height: 44px;
  margin-right: 8px;
}
.features ul li h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2em;
  color: var(--primary);
}
.features ul li p {
  color: #3a4050;
}

/* -----------------------------
   SERVICES / KURSE / WORKSHOP
----------------------------- */
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: var(--space-lg);
}
.services .service-list > div {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: var(--space-lg) var(--space-md) var(--space-md) var(--space-md);
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.19s;
}
.services .service-list > div:hover {
  box-shadow: 0 13px 32px rgba(37,60,91,0.15);
  transform: translateY(-2px) scale(1.01);
}
.services .service-list h3, .services .service-list h2 {
  font-size: 1.13rem;
  color: var(--primary);
  margin-bottom: var(--space-xs);
  margin-top: 0;
}
.services .service-list p {
  margin-bottom: var(--space-xs);
}
.services .service-list strong {
  color: var(--accent);
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}
.services ul,
.services ol {
  margin: 0 0 var(--space-md) var(--space-lg);
}
.services ul li,
.services ol li {
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 500;
}

/* -----------------------------
   TESTIMONIALS
----------------------------- */
.testimonials {
  margin-bottom: 60px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: var(--space-lg) 0;
}
.testimonials .content-wrapper {
  gap: 32px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 32px;
  max-width: 600px;
  color: #242433;
  border-left: 7px solid var(--accent);
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card blockquote {
  font-size: 1.13rem;
  font-style: italic;
  color: #232340;
  margin-bottom: 10px;
}
.testimonial-card p {
  font-size: 1rem;
  color: #333;
  margin-top: 0;
}
.testimonial-card:hover {
  box-shadow: 0 16px 32px rgba(37,60,91,0.14);
  transform: translateY(-2px) scale(1.01);
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 20px 14px;
  }
}

/* -----------------------------
   FOOTER
----------------------------- */
footer {
  background: var(--primary);
  color: #fff;
}
footer .container {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-md);
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
  align-items: flex-start;
  justify-content: space-between;
}
footer .content-wrapper > div, footer nav {
  min-width: 160px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.86;
  transition: color 0.18s, opacity 0.2s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--accent);
  opacity: 1;
}
footer img {
  margin-bottom: var(--space-xs);
  height: 38px;
  width: auto;
}
footer .content-wrapper small {
  width: 100%;
  display: block;
  text-align: center;
}
footer a img {
  height: 25px;
  width: 25px;
  margin-right: 6px;
  display: inline-block;
  transition: filter 0.14s;
}
footer a img:hover {
  filter: brightness(1.23);
}

@media (max-width: 850px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: var(--space-md);
    align-items: flex-start;
  }
}

/* ------------------------------------
   RESPONSIVE FLEXBOX PATTERNS (MANDATORY)
------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  background: #fff;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 12px 32px rgba(37,60,91,0.15);
  transform: translateY(-2px);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ----------------------------------
   ADDITIONAL: MAP SNIPPET & MISC
---------------------------------- */
.map-snippet {
  background: var(--secondary);
  color: var(--primary);
  padding: var(--space-sm);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  font-size: 1rem;
}

/* ----------------------------------
   COOKIE CONSENT BANNER | MODAL
---------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100%;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 -4px 26px -6px rgba(37,60,91,0.12);
  z-index: 2000;
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.05rem;
  animation: cookieBannerIn 0.56s cubic-bezier(.53,1.94,.7,.61);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0;} to { transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  margin-right: var(--space-md);
}
.cookie-banner .button {
  margin: 0 var(--space-xs);
  font-size: 0.99rem;
  min-width: 124px;
}
.cookie-banner .button.secondary {
  background: var(--secondary);
  color: var(--primary);
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2010;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(37,60,91,0.38);
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  min-width: 320px;
  max-width: 95vw;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 14px 46px 0 rgba(37,60,91,0.18);
  z-index: 2030;
  padding: 2.5em 2em 2em 2em;
  display: flex;
  flex-direction: column;
  animation: fadeModalIn 0.32s cubic-bezier(.32,1.94,.7,.91);
}
@keyframes fadeModalIn {
  from { opacity: 0; transform: translate(-50%,-54%) scale(0.91);} to {opacity: 1; transform: translate(-50%,-50%) scale(1);}
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.cookie-modal label {
  font-size: 1rem;
  color: var(--primary);
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--accent);
  width: 19px;
  height: 19px;
  margin-right: var(--space-xs);
}
.cookie-modal .button {
  margin-top: var(--space-md);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 1.45rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.cookie-modal .close-modal:hover {
  opacity: 1;
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 10px 6px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-modal {
    min-width: 98vw;
    padding: 1.1em .4em 1.4em .4em;
  }
  .cookie-modal h2 {
    font-size: 1.11rem;
  }
}

/* --------------------------
   ANIMATIONS, MICRO-UX
-------------------------- */
.button, .button:focus {
  outline: none;
}
a, button {
  transition: color 0.15s, background 0.17s, box-shadow 0.17s;
}
.button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
input[type="checkbox"]:focus-visible,
input[type="radio"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1.5px;
}

/* --------------------------
   CUSTOM SCROLLBAR
-------------------------- */
::-webkit-scrollbar {
  width: 8px;
  background: var(--background-light);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 8px;
}

/* --------------------------
   HELPER CLASSES
-------------------------- */
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.mt-48 { margin-top: 48px; }
.mb-48 { margin-bottom: 48px; }

/* --------------------------
   OVERRIDES/COMMON
-------------------------- */
::-selection {
  background: var(--accent);
  color: var(--primary);
}

/* --------------------------
   PRINT SUPPORT
-------------------------- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { color: #222; background: #fff; }
}

/* END OF CSS FILE */
