/* 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.5;
}
ol, ul {
  list-style: none;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font: inherit;
}
*, *:before, *:after {
  box-sizing: inherit;
}

:root {
  --primary: #235B4E;
  --secondary: #F0F3EF;
  --accent: #E3B965;
  --action: #FF69B4;
  --bright1: #57E2D7;
  --bright2: #FFC93C;
  --bright3: #FE6D73;
  --neutralWhite: #fff;
  --neutralDark: #202C2B;
  --shadow: 0 8px 32px 0 rgba(52, 154, 109, 0.14);
  --radius: 18px;
  --radius-sm: 10px;
  --main-font: 'Roboto', Arial, sans-serif;
  --display-font: 'Montserrat', 'Roboto', Arial, sans-serif;
}


a:focus-visible, button:focus-visible {
  outline: 2px solid var(--action);
  outline-offset: 2px;
}

body {
  font-family: var(--main-font);
  background-color: var(--secondary);
  color: var(--neutralDark);
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}
body.overflow-hidden {
  overflow: hidden !important;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* HEADER & NAV */
header {
  width: 100%;
  background: var(--primary);
  box-shadow: 0 6px 24px rgba(35,91,78,0.13);
  z-index: 100;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  color: var(--neutralWhite);
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 17px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  position: relative;
}
header nav a:hover {
  background: var(--accent);
  color: var(--neutralDark);
  transform: translateY(-2px) scale(1.07) rotate(-2deg);
  text-shadow: 0 4px 16px rgba(255,201,60,0.16);
}
header nav .cta-primary {
  background: var(--accent);
  color: var(--primary);
  padding: 11px 22px;
  font-size: 19px;
  border-radius: 30px;
  font-family: var(--display-font);
  font-weight: 700;
  box-shadow: 0 1px 6px rgba(227,185,101,0.12);
  transition: background 0.22s, color 0.22s, transform 0.18s;
}
header nav .cta-primary:hover {
  background: var(--action);
  color: var(--neutralWhite);
  transform: scale(1.09) rotate(2deg);
}
.logo, header img {
  height: 46px;
  width: auto;
  margin-right: 15px;
}

.mobile-menu-toggle {
  display: none;
  background: var(--action);
  color: var(--neutralWhite);
  border-radius: var(--radius);
  font-size: 32px;
  padding: 7px 17px 7px 15px;
  line-height: 1;
  margin-left: 14px;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
  box-shadow: 0 2px 24px 0 rgba(255, 105, 180, 0.08);
  z-index: 1301;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--bright1);
  box-shadow: 0 2px 16px 0 rgba(35,91,78,.08);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--neutralWhite);
  box-shadow: 0 0 120px 0 rgba(35,91,78,0.25);
  transform: translateX(-100%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.35s cubic-bezier(.19,1,.22,1);
  gap: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 19px 27px 10px 0;
  font-size: 34px;
  color: var(--primary);
  border-radius: 50%;
  background: var(--bright2);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px 0 rgba(227,185,101,0.13);
  transition: background 0.12s, color 0.12s;
  z-index: 2100;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--action);
  color: var(--neutralWhite);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0 32px;
}
.mobile-nav a {
  font-family: var(--display-font);
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
  padding: 20px 0 15px 0;
  border-bottom: 1px solid var(--secondary);
  transition: background 0.19s, color 0.19s, transform 0.15s;
  border-radius: 0;
  text-align: left;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover {
  background: var(--bright1);
  color: var(--action);
  transform: translateX(6px) scale(1.04) rotate(-2deg);
}

/* MAIN SPACING PATTERNS */
.section,
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.hero {
  background: linear-gradient(120deg, var(--bright1) 3%, var(--secondary) 98%) no-repeat;
  background-size: cover;
  min-height: 260px;
  display: flex;
  align-items: center;
  border-radius: 0 0 90px 0;
  box-shadow: 0 12px 36px 0 rgba(236,184,101,0.09);
  margin-bottom: 60px;
  animation: hero-pop 1.2s ease;
}
@keyframes hero-pop {
  0% { opacity: 0; transform: scaleY(0.96) translateY(40px); }
  80% { opacity: 0.93; }
  100% { opacity: 1; transform: scaleY(1) translateY(0); }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  max-width: 880px;
  margin: 0 auto;
}


/* CARDS, CARD-CONTAINER, GRIDS */
.card-container, .feature-grid, .service-grid, .testimonial-slider, .tips-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: var(--neutralWhite);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.17s;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 240px;
  max-width: 370px;
}
.card:hover {
  box-shadow: 0 14px 48px 0 rgba(87,226,215,0.12), 0 0 0 4px var(--bright1);
  transform: translateY(-4px) scale(1.04) rotate(-1.3deg);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-grid, .feature-grid {
  gap: 32px;
  justify-content: space-between;
}
.feature {
  min-width: 250px;
  flex: 1 1 0px;
  background: var(--bright1);
  padding: 36px 26px 28px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  transition: box-shadow 0.19s, background 0.17s, transform 0.14s;
}
.feature:hover {
  background: var(--bright2);
  box-shadow: 0 10px 32px 0 rgba(255,201,60,0.13);
  transform: translateY(-2px) scale(1.03) rotate(1deg);
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.service {
  background: var(--bright2);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 220px;
  max-width: 340px;
  justify-content: flex-start;
  transition: box-shadow 0.17s, background 0.17s, transform 0.13s;
}
.service:hover {
  background: var(--action);
  color: var(--neutralWhite);
  box-shadow: 0 10px 32px 0 rgba(255,105,180,0.11);
  transform: rotate(-2deg) scale(1.02) translateY(-4px);
}

.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
}
.tips-grid > div {
  background: var(--bright3);
  color: var(--neutralWhite);
  border-radius: var(--radius);
  padding: 28px 19px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 340px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.17s, background 0.16s, color 0.17s;
}
.tips-grid > div:hover {
  background: var(--primary);
  color: var(--bright1);
  box-shadow: 0 20px 48px 0 rgba(35,91,78,.13);
}

.feature-list, .features-list, .service-list, .guide-list, .assistance-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 27px;
  margin-top: 7px;
}
.feature-list li, .features-list li, .service-list li, .guide-list li, .assistance-options li {
  background: var(--neutralWhite);
  padding: 18px 14px;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 6px rgba(35,91,78,0.07);
  font-size: 17px;
  font-family: var(--main-font);
  display: flex;
  align-items: center;
  gap: 17px;
  font-weight: 500;
  position: relative;
  transition: background 0.15s, box-shadow 0.16s, color 0.15s;
  margin-bottom: 7px;
}
.feature-list li img {
  width: 34px; height: 34px;
}
.feature-list li:hover, .features-list li:hover, .service-list li:hover, .guide-list li:hover, .assistance-options li:hover {
  background: var(--bright1);
  color: var(--primary);
  box-shadow: 0 4px 16px 0 rgba(87,226,215,0.08);
}

.benefit-highlights, .trend-highlights {
  background: var(--bright1);
  color: var(--primary);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  box-shadow: 0 1px 14px rgba(87,226,215,0.10);
  font-size: 18px;
  margin-bottom: 24px;
  margin-top: 8px;
  font-weight: 700;
}
.trend-highlights ul {
  margin-top: 9px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.moodboard-descriptions {
  font-size: 17px;
  font-style: italic;
  color: var(--action);
  margin-top: 8px;
  margin-bottom: 18px;
}

.faq {
  margin: 29px 0 25px 0;
}
.faq h3 {
  font-size: 22px;
  color: var(--bright3);
  font-family: var(--display-font);
  font-weight: 800;
  margin-bottom: 13px;
}
.faq ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.faq li {
  background: var(--secondary);
  border-left: 6px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 13px 19px;
  font-size: 16px;
  box-shadow: 0 1px 8px rgba(227,185,101,0.05);
}

/* TESTIMONIALS */
.testimonials {
  background: var(--neutralWhite);
  border-top: 8px solid var(--accent);
  border-radius: 60px 0 0 0;
  box-shadow: 0 1px 22px rgba(35,91,78,0.04);
  margin-top: 60px;
}
.testimonials .content-wrapper {
  gap: 28px;
}
.testimonial-slider, .testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--bright1);
  color: #202C2B;
  border-radius: var(--radius);
  box-shadow: 0 1px 12px 0 rgba(87,226,215,0.12);
  transition: background 0.16s, box-shadow 0.17s, transform 0.13s;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 730px;
  font-size: 17px;
  position: relative;
}
.testimonial-card:hover {
  background: var(--accent);
  box-shadow: 0 6px 32px 0 rgba(227,185,101,0.14);
  color: var(--primary);
  transform: scale(1.015) rotate(-1.5deg) translateY(-4px);
}
.testimonial-card blockquote {
  font-family: var(--display-font);
  font-size: 19px;
  font-weight: 700;
  color: inherit;
  margin-right: 11px;
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.testimonial-card footer {
  font-size: 16px;
  font-style: italic;
  color: var(--bright3);
  font-weight: 700;
}

/* BUTTONS & CTAs */
.cta-primary, .cta-secondary, .cta-accent {
  display: inline-block;
  font-family: var(--display-font);
  font-weight: 700;
  cursor: pointer;
  border-radius: 42px;
  padding: 15px 34px;
  font-size: 20px;
  transition: background 0.22s, color 0.22s, box-shadow 0.17s, transform 0.17s;
  margin-top: 18px;
  margin-bottom: 10px;
  box-shadow: 0 5px 20px 0 rgba(227,185,101,0.11);
  border: none;
}
.cta-primary {
  background: var(--accent);
  color: var(--primary);
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--action);
  color: var(--neutralWhite);
  box-shadow: 0 10px 32px 0 rgba(255,105,180,0.09);
  transform: scale(1.07) rotate(-2deg);
}
.cta-secondary {
  background: var(--action);
  color: var(--neutralWhite);
  font-size: 18px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--primary);
  color: var(--bright1);
  box-shadow: 0 6px 18px 0 rgba(35,91,78,0.13);
  transform: scale(1.04) rotate(2deg);
}
.cta-accent {
  background: var(--bright1);
  color: var(--action);
  font-size: 18px;
}
.cta-accent:hover, .cta-accent:focus {
  background: var(--accent);
  color: var(--primary);
}

/* TEXT STYLES */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display-font);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 9px;
  line-height: 1.12;
}
h1 { font-size: 36px; letter-spacing: -0.01em; }
h2 { font-size: 28px; letter-spacing: 0; margin-top: 24px; }
h3 { font-size: 22px; margin-top: 12px; }
h4 { font-size: 19px; font-weight: 800; color: var(--action);}
h5 { font-size: 16px; }
h6 { font-size: 14px; }
p, li, blockquote {
  font-size: 17px;
  font-family: var(--main-font);
  color: var(--neutralDark);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
strong, b {
  color: var(--action);
  font-weight: 700;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section h2, .text-section h3 {
  margin-top: 15px;
}
.text-section ul {
  padding-left: 24px;
  list-style: disc inside;
}
.text-section ul li {
  font-size: 16px;
  padding-left: 0;
}

/* CONTACT PAGE */
.contact-info, .working-hours, .map-embed {
  margin-bottom: 24px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info img {
  margin-right: 7px;
  width: 27px;
  height: 27px;
  vertical-align: middle;
}
.contact-info a {
  color: var(--action);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.13s;
}
.contact-info a:hover {
  color: var(--bright3);
}
.working-hours ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-left: 15px;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--neutralWhite);
  border-radius: 60px 60px 0 0;
  box-shadow: 0 -1px 15px 0 rgba(87,226,215,0.11);
  margin-top: 60px;
  padding-top: 44px;
}
footer .container {
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 15px;
}
footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display-font);
  font-weight: bold;
  font-size: 24px;
  color: var(--neutralWhite);
  margin-bottom: 10px;
}
footer .footer-brand img {
  width: 42px; height: auto;
}
footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  margin-bottom: 8px;
}
footer .footer-contact img {
  width: 22px; height: 22px; margin-right: 7px;
}
footer .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
footer .footer-menu a {
  color: var(--bright2);
  font-family: var(--display-font);
  font-size: 16px;
  transition: color 0.16s;
}
footer .footer-menu a:hover {
  color: var(--action);
}
footer .footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
}
footer .footer-social img {
  width: 30px; height: 30px;
  transition: transform 0.19s;
}
footer .footer-social img:hover {
  transform: scale(1.18) rotate(-6deg);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent);
  color: var(--primary);
  padding: 24px 20px 24px 20px;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 0 54px rgba(227,185,101,0.12);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  z-index: 3010;
  transition: transform 0.3s;
  max-width: 700px;
  margin: 0 auto;
  left: 50%;
  transform: translate(-50%, 0);
}
.cookie-banner.hide {
  transform: translate(-50%,110%);
}
.cookie-banner-message {
  font-size: 17px;
  flex: 1 1 60%;
  font-weight: 700;
  color: var(--primary);
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  border-radius: 22px;
  padding: 12px 22px;
  font-family: var(--display-font);
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.13s;
  box-shadow: 0 1px 8px 0 rgba(35,91,78,0.07);
}
.cookie-btn.accept {
  background: var(--action);
  color: var(--neutralWhite);
}
.cookie-btn.accept:hover {
  background: var(--primary);
  color: var(--bright1);
}
.cookie-btn.reject {
  background: var(--bright3);
  color: var(--neutralWhite);
}
.cookie-btn.reject:hover {
  background: var(--primary);
  color: var(--bright3);
}
.cookie-btn.settings {
  background: var(--neutralWhite);
  color: var(--accent);
  border: 1px solid var(--accent);
}
.cookie-btn.settings:hover {
  background: var(--accent);
  color: var(--primary);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(32,44,43,0.67);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3020;
  opacity: 1;
  transition: opacity 0.28s;
}
.cookie-modal.hide {
  opacity: 0 !important;
  pointer-events: none;
}
.cookie-modal-content {
  background: var(--neutralWhite);
  color: var(--primary);
  border-radius: 38px;
  box-shadow: 0 2px 50px rgba(35,91,78,0.18);
  padding: 36px 38px 26px 38px;
  max-width: 400px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
  position: relative;
  animation: modal-fade .48s cubic-bezier(.19,1,.22,1);
}
@keyframes modal-fade {
  0% { opacity: 0; transform: scale(0.96) translateY(60px); }
  90% { opacity: 0.93; }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 22px;
  background: var(--bright2);
  color: var(--primary);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  transition: background 0.14s, color 0.14s;
  z-index: 2;
  border: none;
}
.cookie-modal-close:hover {
  background: var(--action);
  color: var(--neutralWhite);
}
.cookie-modal h2 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 12px;
}
.cookie-categories {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-size: 16px;
  width: 100%;
  font-weight: 500;
}
.cookie-category .toggle {
  margin-left: auto;
}
.toggle {
  --toggleW: 46px;
  --toggleH: 24px;
  position: relative;
  display: inline-block;
  width: var(--toggleW);
  height: var(--toggleH);
}
.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--action);
  transition: background 0.12s;
  border-radius: 99px;
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background: var(--neutralWhite);
  transition: .2s;
  border-radius: 50%;
  box-shadow: 0 1px 5px 0 rgba(32,44,43,0.09);
}
.toggle input:checked + .toggle-slider {
  background: var(--primary);
}
.toggle input:checked + .toggle-slider:before {
  transform: translateX(22px);
}
.toggle input:disabled + .toggle-slider {
  background: var(--accent);
  cursor: not-allowed;
}

/* ANIMATE A LITTLE FUN! */
.cta-primary, .cta-secondary, .feature, .service, .card, .testimonial-card {
  animation: popfade 0.66s cubic-bezier(.23,1.34,.23,1.05);
}
@keyframes popfade {
  0% { opacity: 0; transform: scale(0.98) translateY(18px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* SPACING & FLEXBOX MANDATORY STYLES */
.section, main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid {
  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;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 1240px) {
  .container {
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 980px) {
  .content-wrapper {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  header .container { flex-direction: column; height: auto; gap: 13px; }
  header nav { flex-wrap: wrap; gap: 12px; }
  .feature-grid, .service-grid { flex-direction: column; gap: 20px; align-items: stretch; }
  .card-container, .testimonial-slider, .tips-grid, .content-grid { flex-direction: column; gap: 13px; }
  .card, .feature, .service, .tips-grid > div, .testimonial-card { min-width: 0; max-width: 100%; }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  h1 { font-size: 27px; }
  h2 { font-size: 22px; }
  .hero { min-height: 170px; border-radius: 0 0 60px 0; }
  .container { padding-left: 7px; padding-right: 7px; }
  .content-wrapper { gap: 20px; padding: 0; }
  .section, main > section { padding: 29px 7px; }
  header .container { padding-left: 7px; padding-right: 7px; }
  header nav { display: none; }
  .mobile-menu-toggle { display: block; }
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 700px) {
  .testimonial-card, .card, .feature, .service, .tips-grid > div { padding: 17px 9px; max-width: 98vw; }
}
@media (max-width: 520px) {
  .hero { border-radius: 0 0 30px 0; min-height: 55px; }
  h1 { font-size: 19px; }
  h2 { font-size: 16px; }
  .cta-primary, .cta-secondary, .cta-accent { font-size: 15px; padding: 10px 16px; }
  .cookie-banner { left: 0; transform: none; padding: 15px 5px; max-width: 100vw; border-radius: 13px 13px 0 0; }
  .cookie-banner-message { font-size: 14px; }
  .cookie-btn { font-size: 14px; padding: 8px 13px; }
  .cookie-modal-content { padding: 18px 7px 18px 7px; border-radius: 20px; font-size: 13px; }
}

/* UTILITY CLASSES */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-12 { margin-top: 12px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.text-center { text-align: center !important; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.gap-16 { gap: 16px; }

/* Z-INDEX SAFEPOINTS */
header { z-index: 1000; }
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 3010; }
.cookie-modal { z-index: 3020; }
