/* ===================== 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7F7FF;
  color: #2F4858;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a {
  background-color: transparent;
  color: #2F4858;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4A259;
  outline: none;
}
ul, ol {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.15s;
}
h1, h2, h3, h4,
.cta-main, .cta-header, .cta-secondary, .cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.4rem; line-height: 1.15; margin-bottom: 18px; }
h2 { font-size: 1.8rem; line-height: 1.2; margin-bottom: 14px; }
h3 { font-size: 1.25rem; line-height: 1.3; margin-bottom: 10px; }
@media (min-width: 600px) {
  h1 {font-size: 3rem;}
  h2 {font-size: 2.2rem;}
  h3 {font-size: 1.35rem;}
}
strong {
  font-weight: 700;
}

/* ===================== GEOMETRIC STRUCTURED THEME ===================== */
:root {
  --color-primary: #2F4858;
  --color-secondary: #F4A259;
  --color-accent: #F7F7FF;
  --color-dark: #1d2730;
  --color-grey: #e0e4ea;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* ===================== UTILITY CLASSES ===================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
}

.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;
}

/* ===================== HEADER ===================== */
header {
  background: var(--color-accent);
  box-shadow: 0 2px 10px rgba(47,72,88,0.05);
  padding: 0;
  border-bottom: 1.75px solid var(--color-secondary);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo img {
  height: 44px;
  margin-right: 10px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
}
.main-nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  padding: 3px 0;
  transition: color 0.16s;
}
.main-nav a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.22s cubic-bezier(0.77,0,0.175,1);
  margin-top: 2px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-secondary);
}

.cta-header {
  margin-left: 22px;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 14px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  box-shadow: 0 1px 6px rgba(47,72,88,0.05);
  transition: background 0.2s, color 0.2s, box-shadow 0.15s;
}
.cta-header:hover, .cta-header:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 4px 14px rgba(244,162,89,0.15);
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: 18px;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 12px;
  font-size: 2.2rem;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.18s, box-shadow 0.15s;
  z-index: 2001;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}

@media (max-width: 900px) {
  .main-nav,
  .cta-header {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    padding-left: 10px;
    padding-right: 10px;
    height: 70px;
  }
}

/* ===================== MOBILE MENU OVERLAY ===================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  color: var(--color-accent);
  z-index: 2002;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.79, 0, 0.22, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 24px 24px 16px 16px;
  align-self: flex-end;
  background: none;
  color: var(--color-accent);
  font-size: 2.5rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  transition: background 0.17s;
  z-index: 2100;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 20px 32px;
  margin-top: 24px;
}
.mobile-nav a {
  color: var(--color-accent);
  font-size: 1.24rem;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 0;
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}


/* ===================== HERO SECTIONS ===================== */
.hero {
  background: linear-gradient(90deg, #F7F7FF 60%, #F4A25911 100%);
  padding: 40px 0 36px 0;
  display: flex;
  align-items: center;
  min-height: 290px;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 12px 24px 0 rgba(47,72,88,0.05);
}
.hero .container { display: flex; flex-direction: column; align-items: flex-start; }
.hero .content-wrapper {
  gap: 18px;
  max-width: 650px;
}
.hero h1 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 900;
  font-size: 2.1rem;
  margin-bottom: 0;
  line-height: 1.13;
}
.hero .subheadline, .hero .thank-you-msg {
  font-size: 1.12rem;
  color: var(--color-dark);
  font-weight: 400;
  margin-bottom: 10px;
  max-width: 730px;
}
@media (min-width: 710px) {
  .hero h1 { font-size: 2.7rem; }
  .hero .content-wrapper { gap: 28px; }
  .hero { min-height: 340px; }
}

/* ===================== BUTTONS & CTA ===================== */
.cta-main, .cta-secondary {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  text-transform: uppercase;
  border-radius: 20px 4px 20px 4px;
  padding: 13px 34px;
  margin-top: 14px;
  box-shadow: 0 4px 16px 0 rgba(244,162,89,0.09);
  letter-spacing: 0.04em;
  border: none;
  transition: background 0.18s, color 0.13s, box-shadow 0.20s, transform 0.13s;
  position: relative;
  outline: none;
}
.cta-main:hover, .cta-main:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  transform: translateY(-2px) scale(1.04) skewX(-3deg);
  box-shadow: 0 6px 24px 0 rgba(47,72,88,0.13);
}
.cta-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
  margin-top: 14px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px 0 rgba(47,72,88,0.13);
  transform: translateY(-2px) scale(1.034) skewX(-3deg);
}

@media (max-width: 480px) {
  .cta-main, .cta-secondary {
    font-size: 1rem;
    padding: 11px 20px;
    margin-top: 10px;
  }
}

/* ===================== FEATURES & LIST LAYOUTS ===================== */
.features {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 28px rgba(47,72,88,0.07);
  margin-bottom: 60px;
  padding: 38px 0 30px 0;
}
.features h2 {
  margin-bottom: 22px;
}
.features .content-wrapper { gap: 24px; }
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
}
.features ul li {
  flex: 1 1 210px;
  min-width: 180px;
  background: var(--color-accent);
  border: 2px solid var(--color-primary);
  border-radius: 20px 0 16px 0;
  padding: 22px 16px 18px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(47,72,88,0.04);
  transition: box-shadow 0.16s, border 0.12s;
}
.features ul li img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #fffdf7;
  box-shadow: 0 1px 4px rgba(244,162,89,0.12);
}
.features ul li:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 4px 18px rgba(244,162,89,0.12);
}
.features ul li small {
  display: block;
  color: #757575;
  margin-top: 7px;
  font-size: 0.98em;
  font-weight: 400;
}

@media (max-width: 900px) {
  .features ul { gap: 14px; }
  .features ul li { font-size: 0.97em; min-width: 120px; }
}
@media (max-width: 600px) {
  .features ul { flex-direction: column; gap: 12px; }
  .features ul li { width: 100%; }
}

/* ===================== SERVICE CARDS ===================== */
.services {
  margin-bottom: 60px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 28px rgba(47,72,88,0.07);
  padding: 38px 0 30px 0;
}
.services h2 { margin-bottom: 18px; }
.services .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
}
.services ul li {
  flex: 1 1 210px;
  background: var(--color-accent);
  border: 2px solid var(--color-primary);
  border-radius: 12px 0 18px 0;
  padding: 22px 14px 18px 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(47,72,88,0.04);
  margin-right: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.services ul li strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.08em;
  color: var(--color-primary);
}
.services ul li span {
  display: inline-block;
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1.01em;
  font-weight: 700;
  padding-bottom: 3px;
  margin-bottom: 0;
}
.services ul li:hover,
.services ul li:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 4px 18px rgba(244,162,89,0.10);
}

@media (max-width: 800px) {
  .services ul { gap: 14px; }
}
@media (max-width: 700px) {
  .services ul { flex-direction: column; gap: 10px; }
  .services ul li { width: 100%; }
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  background: var(--color-accent);
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(47,72,88,0.07);
  padding: 36px 0 32px 0;
}
.testimonials h2 {margin-bottom: 20px;}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 20px 0 16px 0;
  box-shadow: 0 1px 10px rgba(47,72,88,0.05);
  padding: 24px 28px 20px 20px;
  min-width: 220px;
  max-width: 340px;
  color: #2F4858;
  font-family: var(--font-body);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, border 0.15s;
  position: relative;
}
.testimonial-card:after {
  content: '';
  width: 42px; height: 42px;
  background: var(--color-secondary);
  border-radius: 0 0 24px 0;
  position: absolute;
  right: 0; bottom: 0;
  z-index: 1;
  opacity: 0.18;
}
.testimonial-card p {
  font-size: 1.04rem;
  color: #212c38;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 8px;
  z-index: 2;
}
.testimonial-card .name {
  font-size: 1em;
  color: #2F4858;
  font-family: var(--font-display);
  font-weight: 700;
  z-index: 2;
}
.testimonial-card .rating {
  font-size: 1.15em;
  color: var(--color-secondary);
  font-family: var(--font-display);
  letter-spacing: 0.15em;
  z-index: 2;
}
.testimonial-card:hover,
.testimonial-card:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 6px 24px rgba(244,162,89,0.10);
}

@media (max-width: 700px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card {
    max-width: 100%;
    width: 100%;
  }
}

/* ===================== ABOUT / TEAM / TIMELINE ===================== */
.about {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(47,72,88,0.06);
  margin-bottom: 60px;
}
.about h2 {
  margin-bottom: 10px;
}
.about .content-wrapper {
  gap: 20px;
}
.about .text-section {
  font-size: 1.05rem;
  color: #2F4858;
}
.about blockquote {
  border-left: 7px solid var(--color-secondary);
  padding-left: 18px;
  margin-top: 13px;
  margin-bottom: 13px;
  font-family: var(--font-display);
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.15em;
}
.about .founder-highlight {
  color: var(--color-primary);
  font-weight: 700;
  margin-top: 10px;
  font-family: var(--font-display);
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 12px 0;
}
.timeline li {
  position: relative;
  padding-left: 22px;
  font-size: 1rem;
  color: #303d4a;
}
.timeline li:before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 6px;
  width: 12px;
  height: 12px;
  background: var(--color-secondary);
  border-radius: 2px 9px 2px 9px;
}
.mission {
  margin-top: 9px;
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-weight: 700;
}
.unique-values, .team-intros {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 700px) {
  .about .content-wrapper {
    flex-direction: row;
    gap: 36px;
  }
  .about .text-section {flex: 2 1 370px;}
  .timeline, .mission, .unique-values, .team-intros {flex: 1 1 200px;}
}

/* ===================== CTA SECTION ===================== */
.cta {
  background: linear-gradient(85deg, #F4A25908 0%, #2F485809 100%);
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(244,162,89,0.08);
  margin-bottom: 60px;
  padding: 46px 0 36px 0;
}
.cta .content-wrapper {
  align-items: flex-start;
}
.cta ul {
  margin-bottom: 18px;
  padding-left: 18px;
}
.cta ul li {
  font-family: var(--font-body);
  font-size: 1.04em;
  color: #2F4858;
  margin-bottom: 8px;
  position: relative;
}
.cta ul li:before {
  content: '\25A0';
  color: var(--color-secondary);
  margin-right: 7px;
  font-size: 1em;
  position: relative;
  top: -0.5px;
}
.benefit {
  font-size: 1rem;
  color: #2F4858;
  margin-top: 0.8em;
  margin-bottom: 0;
}

/* ===================== LEGAL SECTIONS ===================== */
.legal {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(47,72,88,0.07);
  margin: 40px 0 60px 0;
  padding: 36px 0 30px 0;
}
.legal .content-wrapper {
  gap: 14px;
}
.legal h1, .legal h2, .legal h3 {
  color: var(--color-primary);
  font-weight: 800;
}
.legal ul {
  margin-left: 1.2em;
  margin-bottom: 1em;
}
.legal ul li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #354356;
  margin-bottom: .65em;
}
.legal a { color: var(--color-secondary); font-weight: 600; }
.legal a:hover, .legal a:focus {color:var(--color-primary); text-decoration:underline;}

/* ===================== CONTACT PAGE ===================== */
.contact {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(47,72,88,0.07);
  padding: 34px 0 30px 0;
  margin-bottom: 60px;
}
.contact .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
}
.contact-data {
  font-size: 1rem;
  color: var(--color-primary);
}
.contact-data strong {
  color: var(--color-secondary);
}
.social-links {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-links a img {
  width: 28px; height: 28px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(244,162,89,0.12);
  transition: box-shadow 0.15s;
}
.social-links a:hover img { box-shadow: 0 3px 12px rgba(244,162,89,0.16); }
.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.map-embed {
  background: var(--color-accent);
  border-radius: 7px 21px 12px 0;
  border: 1.5px solid var(--color-primary);
  padding: 24px 20px;
  color: var(--color-primary);
  font-size: 1rem;
}

@media (max-width: 820px) {
  .contact .content-wrapper { flex-direction: column; gap: 14px; }
  .contact-cta { align-items: flex-start; }
}

/* ===================== SEARCH BAR & FILTER BUTTONS (REZEPTE) ===================== */
.search-bar {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 12px;
}
.search-bar label {
  font-family: var(--font-display);
  font-size: 1em;
  font-weight: 600;
  color: var(--color-primary);
}
.search-bar input[type="text"] {
  border: 2px solid var(--color-primary);
  border-radius: 11px;
  padding: 7px 15px;
  font-size: 1em;
  font-family: var(--font-body);
  transition: border 0.15s;
  color: #2F4858;
  background: #fff;
  min-width: 190px;
}
.search-bar input:focus {
  border-color: var(--color-secondary);
}
.filter-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.filter-buttons button {
  background: var(--color-accent);
  border: 2px solid var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: .98em;
  font-weight: 700;
  border-radius: 12px 0 12px 0;
  padding: 7px 17px;
  text-transform: uppercase;
  transition: background 0.15s, color 0.13s, box-shadow 0.13s, border 0.13s;
}
.filter-buttons button:hover, .filter-buttons button.active {
  background: var(--color-secondary);
  color: var(--color-accent);
  border-color: var(--color-primary);
  box-shadow: 0 2px 10px rgba(244,162,89,0.16);
}

/* ===================== USP/COURSE BENEFITS/FAQ ===================== */
.usp-list, .course-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0 0 0;
}
.usp-list li, .course-benefits li {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.02em;
  background: #fff8f2;
  border-left: 5px solid var(--color-secondary);
  border-radius: 0 16px 8px 0;
  padding: 8px 12px 8px 18px;
}

.booking-process, .faq-snippet {
  background: var(--color-accent);
  border-left: 7px solid var(--color-secondary);
  border-radius: 0 20px 0 20px;
  padding: 15px 17px;
  margin-top: 12px;
  margin-bottom: 7px;
}

/* ===================== FOOTER ===================== */
footer {
  background: #fff;
  border-top: 2.5px solid var(--color-secondary);
  padding: 0;
  box-shadow: 0 -2px 8px rgba(47,72,88,0.04);
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 44px;
  padding-bottom: 24px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.footer-top img {
  height: 42px;
}
.footer-nav {
  display: flex;
  gap: 32px;
}
.footer-nav a {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--color-secondary);
  text-decoration: underline;
}
.footer-contact {
  color: var(--color-primary);
  font-size: 0.98em;
  line-height: 1.7;
}
.footer-contact a {
  color: var(--color-secondary);
  word-break: break-all;
  text-decoration: underline;
}
.footer-bottom {
  text-align: left;
  color: #2F4858cc;
  font-family: var(--font-body);
  font-size: 0.98em;
}

@media (max-width: 900px) {
  .footer-top { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-nav { gap: 20px; flex-wrap: wrap; }
}

@media (max-width: 500px) {
  .footer-top img { height: 32px; }
}

/* ===================== COOKIE CONSENT BANNER & MODAL ===================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 3px solid var(--color-secondary);
  color: #2F4858;
  font-family: var(--font-body);
  padding: 22px 24px 22px 22px;
  box-shadow: 0 -4px 20px rgba(47,72,88,0.07);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  animation: fadeInUpBanner 0.5s;
}
@keyframes fadeInUpBanner {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.cookie-banner button {
  padding: 9px 22px;
  border-radius: 12px 0 12px 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.13s, color 0.13s;
  border: 2px solid var(--color-primary);
  background: #fff;
  color: var(--color-primary);
}
.cookie-banner button.accept {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}
.cookie-banner button.reject {
  background: #fff;
  color: var(--color-primary);
}
.cookie-banner button.reject:hover,
.cookie-banner button.reject:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner button.settings {
  background: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.cookie-banner button.settings:hover,
.cookie-banner button.settings:focus {
  background: var(--color-secondary);
  color: var(--color-accent);
}

@media (max-width: 480px) {
  .cookie-banner {padding: 17px 12px; font-size: 0.99em;}
  .cookie-banner .cookie-actions {flex-direction: column;gap:10px;}
}

.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  width: 100vw;
  height: 100vh;
  background: rgba(47,72,88,0.58);
  z-index: 3020;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.33s;
  pointer-events: none;
  opacity: 0;
  transition: opacity .13s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
@keyframes fadeInOverlay {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 410px;
  width: 93vw;
  padding: 35px 32px 27px 32px;
  box-shadow: 0 6px 44px rgba(47,72,88,0.21);
  position: relative;
  z-index: 3100;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeInModal .38s;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(44px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.cookie-modal h2 {
  font-family: var(--font-display);
  font-size: 1.35em;
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 0.5em;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.cookie-category .cookie-toggle {
  appearance: none;
  width: 34px; height: 18px;
  background: var(--color-grey);
  border-radius: 10px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-category .cookie-toggle:checked {
  background: var(--color-secondary);
}
.cookie-category .cookie-toggle[disabled] {
  opacity: .6;
  background: var(--color-grey);
  cursor: not-allowed;
}
.cookie-category .switch-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s;
}
.cookie-category .cookie-toggle:checked + .switch-slider {
  left: 18px;
}
.cookie-modal button {
  align-self: flex-end;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 12px 0 12px 0;
  padding: 8px 21px;
  font-family: var(--font-display);
  font-weight: 700;
  border: 2px solid var(--color-secondary);
  font-size: 1rem;
  margin-top: 13px;
  transition: background .15s, color .15s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}

@media (max-width: 460px) {
  .cookie-modal {padding: 18px 7vw 16px 7vw;}
  .cookie-modal h2 {font-size: 1.09em;}
}

/* ===================== GENERAL SPACING & DEFAULTS ===================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 800px) {
  section {
    margin-bottom: 32px;
    padding: 25px 6px;
  }
}
hr {
  border: none;
  height: 2px;
  background: var(--color-grey);
  margin: 40px 0;
  border-radius: 5px;
}

/* ===================== RESPONSIVE FLEXBOX RULES ===================== */
.text-image-section {flex-direction: row;}
@media (max-width: 768px) {
  .content-wrapper, .features ul, .services ul, .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .section, section {padding: 28px 7px;}
}

/* ===================== ANIMATIONS ===================== */
.card, .testimonial-card, .services ul li, .features ul li {
  transition: box-shadow 0.18s, border 0.11s, transform 0.15s;
}
.card:hover, .testimonial-card:hover,
.services ul li:hover, .features ul li:hover {
  transform: translateY(-4px) scale(1.008);
}

/* ===================== FOCUS STATES FOR ALL BUTTONS & LINKS ===================== */
a:focus, button:focus, input:focus, .cta-main:focus, .cta-header:focus, .cta-secondary:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* ===================== PRINT FRIENDLY ===================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  section, .section, .main-content { padding: 0; margin-bottom: 0; box-shadow:none; }
}
