/* === 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, 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  background: #F7FFF2;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #1B2E22;
  background-color: #F7FFF2;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* === VARIABLES === */
:root {
  --color-primary: #29573B;
  --color-primary-rgb: 41,87,59;
  --color-secondary: #F7FFF2;
  --color-accent: #E5C76E;
  --color-accent-dark: #BB9834;
  --color-text: #1B2E22;
  --color-muted: #CCCCBB;
  --color-card-bg: #FFF;
  --shadow-light: 0 4px 32px rgba(41, 87, 59, 0.06);
  --shadow-card: 0 2px 14px rgba(41, 87, 59, 0.07), 0 1.5px 8px rgba(229,199,110,0.05);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 32px;
  --font-family-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-family-body: 'Roboto', Arial, Helvetica, sans-serif;
  --section-padding-y: 60px;
  --gap: 24px;
}

/* === UTILITY CLASSES === */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 18px;
}

/* === HEADER === */
header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-card-bg);
  box-shadow: 0 2px 14px rgba(41,87,59,0.05);
  padding: 0 32px;
  height: 76px;
  position: relative;
  z-index: 30;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: var(--font-family-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .02em;
  color: var(--color-primary);
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s;
}
header nav a:hover,
header nav a:focus {
  color: var(--color-accent);
}
.main-cta {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 11px 28px;
  font-family: var(--font-family-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 10px rgba(229,199,110,0.14);
  border: none;
  cursor: pointer;
  margin-left: 22px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  position: relative;
}
.main-cta:hover, .main-cta:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 2px 23px rgba(229,199,110,0.22);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 30px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 90;
  box-shadow: 0 .5px 4px rgba(229,199,110,0.08);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-toggle:active {
  background: var(--color-accent-dark);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(41, 87, 59, 0.96);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(-110vw);
  transition: transform 0.38s cubic-bezier(.39, .31, .2, 1);
  z-index: 120;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 36px;
  padding: 18px 22px 4px 0;
  cursor: pointer;
  margin-top: 18px;
  margin-right: 10px;
}
.mobile-nav {
  width: 100%;
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 30px 44px 0 44px;
}
.mobile-nav a {
  color: #fff;
  font-size: 21px;
  font-family: var(--font-family-display);
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 12px 0;
  transition: color 0.17s;
  border-bottom: 1px solid rgba(229,199,110,0.12);
  width: 100%;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
}

/* === HERO SECTION === */
.hero {
  background: var(--color-primary);
  color: #fff;
  padding: 64px 0 52px 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 260px;
}
.hero .content-wrapper {
  gap: 18px;
  max-width: 650px;
}
.hero h1 {
  font-family: var(--font-family-display);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
  color: #fff;
  line-height: 1.1;
}
.hero p {
  font-size: 19px;
  font-family: var(--font-family-body);
  color: #F7FFF2;
  margin-bottom: 20px;
}
.cta-btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  padding: 13px 35px;
  font-family: var(--font-family-display);
  font-weight: 600;
  letter-spacing: 0.035em;
  font-size: 18px;
  margin-top: 4px;
  box-shadow: 0 2px 16px rgba(229,199,110,0.19);
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.18s, box-shadow 0.21s;
  position: relative;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 32px rgba(229,199,110,0.27);
}

/* === SECTION BASE LAYOUT === */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.features, .values, .services, .team, .tips-list, .workshops, .inspiration, .legal, .thank-you, .about, .map, .tips-intro, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* === FLEX CONTAINERS === */
.card-container, .card-grid, .service-list, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: var(--color-card-bg);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 14px;
  transition: box-shadow 0.19s;
  min-width: 260px;
}
.card:hover {
  box-shadow: 0 4px 32px rgba(229,199,110,0.16);
}
.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;
}
.feature-item, .team-member, .faq-category {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1.5px solid #E5C76E;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(229,199,110,0.09), 0 1px 8px rgba(41, 87, 59, 0.055);
  padding: 32px 38px;
  max-width: 460px;
  margin-bottom: 20px;
  color: var(--color-primary);
  font-size: 16px;
  position: relative;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus {
  border-color: var(--color-accent-dark);
  box-shadow: 0 4px 28px rgba(229,199,110,0.22);
}

/* TESTIMONIALS LAYOUT - GAPS */
.testimonials .content-wrapper {
  gap: 28px;
  align-items: flex-start;
}
.testimonials .testimonial-card {
  flex: 1 1 270px;
  min-width: 270px;
  max-width: 480px;
}
.testimonials {
  background: rgba(247, 255, 242, 0.74);
  margin-bottom: 60px;
  padding: 40px 0 45px 0;
}
.testimonials h2 {
  color: var(--color-primary);
  margin-bottom: 20px;
  font-family: var(--font-family-display);
  font-size: 34px;
  font-weight: 700;
}
.testimonial-card p {
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  font-family: var(--font-family-body);
}
.testimonial-card span {
  color: var(--color-accent-dark);
  font-family: var(--font-family-display);
  font-weight: 600;
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 6px;
}
.testimonial-card img {
  height: 22px;
  margin: 0 1.5px;
  vertical-align: middle;
  display: inline-block;
}

/* === LISTS, VALUES & FEATURES === */
.features h2, .values h2, .services h1, .services h2, .workshops h2 {
  font-family: var(--font-family-display);
  color: var(--color-primary);
  font-size: 31px;
  font-weight: 700;
  margin-bottom: 18px;
}
.features ul, .values ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 16px;
}
.features li, .values li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  color: #22362a;
  font-family: var(--font-family-body);
  padding: 6px 0;
  border-left: 4px solid var(--color-accent);
  padding-left: 18px;
  background: rgba(229,199,110,0.05);
  border-radius: 0 15px 15px 0;
}
.features li img,
.values li img {
  height: 27px;
  width: 27px;
  margin-right: 10px;
}

/* === SERVICES, PRICES CARDS === */
.service-list, .workshop-list {
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.service-list > div, .workshop-list > div {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 30px 24px 26px 24px;
  flex: 1 1 260px;
  min-width: 250px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  border: 1.3px solid var(--color-accent);
  margin-bottom: 20px;
  transition: box-shadow 0.17s, border-color 0.17s;
}
.service-list > div:hover,
.workshop-list > div:hover {
  border-color: var(--color-accent-dark);
  box-shadow: 0 4px 32px rgba(229,199,110,0.19);
}
.service-list h3, .workshop-list h3, .service-list h2 {
  font-family: var(--font-family-display);
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.service-list p, .workshop-list p {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 6px;
}
.service-list span, .workshop-list span, .service-list strong {
  color: var(--color-accent-dark);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  font-family: var(--font-family-display);
  margin-top: 4px;
}

/* === TEAM SECTION === */
.team {
  background: rgba(229,199,110,0.03);
  border-radius: var(--radius-lg);
}
.team-member {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 8px rgba(41,87,59,0.047);
  padding: 22px 24px 17px 24px;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s;
}
.team-member h3 {
  color: var(--color-primary);
  font-family: var(--font-family-display);
  font-size: 19px;
  font-weight: 700;
}
.team-member p {
  font-size: 16px;
  color: var(--color-text);
}

/* === FOOTER === */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 54px 0 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: 70px;
  position: relative;
}
footer nav {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}
footer nav a {
  color: #fff;
  font-family: var(--font-family-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-accent);
}
.footer-contact {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  padding: 16px 0;
}
.footer-contact img {
  height: 56px;
}
.footer-contact p {
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  font-family: var(--font-family-body);
}
.footer-contact a { color: var(--color-accent); text-decoration: underline; }
.footer-contact a:hover { color: #fff; }
footer small {
  display: block;
  margin-top: 14px;
  color: #E5C76E;
  font-size: 13px;
}

/* === CTA SECTIONS === */
.cta {
  background: var(--color-accent);
  margin-bottom: 60px;
  padding: 38px 0 42px 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 32px rgba(229,199,110,0.21);
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 17px;
}
.cta h2 {
  font-family: var(--font-family-display);
  color: var(--color-primary);
  font-size: 32px;
  font-weight: 800;
}
.cta p {
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

/* === ABOUT/LEGAL/POLICY/TIPS PAGES === */
.legal, .thank-you, .about, .map, .tips-intro, .tips-list {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 32px rgba(41,87,59,0.06);
}
.legal h1, .thank-you h1, .about h1, .tips-intro h1, .map h2 {
  font-family: var(--font-family-display);
  color: var(--color-primary);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}
.legal ul, .thank-you ul, .about ul {
  margin: 16px 0 10px 26px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.7;
  list-style: disc;
}
.legal ol {
  margin: 14px 0 10px 26px;
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.6;
  list-style: decimal;
}

/* === FAQ / TIPS === */
.tips-list .faq-category {
  margin-bottom: 29px;
}
.faq-category h3 {
  font-size: 20px;
  font-family: var(--font-family-display);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 8px;
}
.faq-category ul {
  margin-left: 0;
  margin-top: 4px;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
}
.faq-category strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--color-primary);
}
.faq-category p {
  margin-left: 8px;
  color: #445C46;
  font-size: 15px;
  line-height: 1.5;
}

/* === THANK YOU === */
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.thank-you h1 {
  font-size: 32px;
}
.thank-you ul {
  color: var(--color-primary);
  margin: 15px 0 10px 20px;
  font-size: 16px;
}

/* === CONTACT SECTION === */
.contact .text-section p {
  font-size: 17px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-family-body);
  color: var(--color-primary);
}
.contact .text-section img {
  height: 20px;
  width: auto;
}
.contact h2 {
  font-size: 22px;
  font-family: var(--font-family-display);
  color: var(--color-accent-dark);
  margin-bottom: 9px;
}

/* === MAP SECTION === */
.map h2 {
  font-size: 23px;
  color: var(--color-primary);
}
.map p {
  font-size: 16px;
  color: #23372d;
  margin-bottom: 4px;
}

/* === GALLERY (INSPIRATION) === */
.inspiration h1 {
  font-size: 30px;
  font-family: var(--font-family-display);
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 10px;
}
.inspiration p {
  font-size: 17px;
  color: var(--color-text);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-display);
}
h1 { font-size: 32px; font-weight: 800; margin-bottom: 5px; }
h2 { font-size: 28px; font-weight: 700; margin-bottom: 5px; }
h3 { font-size: 21px; font-weight: 700; }
h4 { font-size: 18px; font-weight: 600; }
h5 { font-size: 17px; font-weight: 400; }
h6 { font-size: 15px; font-weight: 400; }
p {
  font-family: var(--font-family-body);
  color: #23372d;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.7;
}

/* === BUTTONS === */
button {
  font-family: var(--font-family-display);
  font-size: 17px;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 11px 27px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(229,199,110,0.09);
  transition: background 0.17s, color 0.17s, box-shadow 0.18s;
}
button:hover, button:focus {
  background: var(--color-accent-dark);
  color: #fff;
  box-shadow: 0 6px 32px rgba(229,199,110,0.19);
}

/* === MICRO-INTERACTIONS === */
a, .cta-btn, .main-cta, button {
  transition: background 0.16s, color 0.18s, box-shadow 0.19s;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* === GAPS & SPACING === */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .card-grid, .service-list, .workshop-list {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}
.content-grid, .text-image-section, .testimonial-card, .feature-item, .team-member { gap: 20px; }

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: var(--color-primary);
  border-top: 2.5px solid var(--color-accent);
  box-shadow: 0 -2px 28px rgba(41,87,59,0.09);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 9999;
  transition: transform 0.28s, box-shadow 0.18s;
  font-size: 15px;
  font-family: var(--font-family-body);
  border-radius: 16px 16px 0 0;
}
.cookie-banner.hide {
  transform: translateY(150%);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  margin-top: 7px;
}
.cookie-banner .cookie-btns button {
  min-width: 110px;
  font-size: 15px;
  padding: 9px 24px;
  border-radius: 9px;
  font-family: var(--font-family-display);
  font-weight: 600;
}
.cookie-banner .accept {
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-accent);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--color-accent-dark);
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner .settings {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 2px solid var(--color-accent-dark);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--color-accent-dark);
  color: #fff;
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 100vh);
  min-width: 320px;
  max-width: 97vw;
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 54px 10px rgba(41,87,59,0.19);
  padding: 38px 30px 26px 30px;
  z-index: 12000;
  display: flex;
  flex-direction: column;
  gap: 19px;
  transition: transform 0.36s cubic-bezier(.37, .05, .27, 1);
}
.cookie-modal.show {
  transform: translate(-50%, -50%);
}
.cookie-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cookie-modal h2 {
  font-family: var(--font-family-display);
  font-size: 22px;
  color: var(--color-primary);
}
.cookie-modal .close-modal {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-accent);
  border-radius: 50%;
  font-size: 26px;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.cookie-modal .modal-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
}
.cookie-modal .cookie-category label {
  font-family: var(--font-family-body);
  font-size: 16px;
  color: var(--color-primary);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-accent);
  width: 17px;
  height: 17px;
  border-radius: 6px;
}
.cookie-modal .locked {
  opacity: 0.68;
  pointer-events: none;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .container { max-width: 95vw; }
}
@media (max-width: 992px) {
  .footer-contact { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-contact img { margin-bottom: 4px; }
  .card-container, .card-grid, .service-list, .workshop-list, .content-grid {
    justify-content: center;
  }
}
@media (max-width: 820px) {
  .hero h1 { font-size: 32px; }
  .cta h2, .services h1, .cta .content-wrapper h2, .features h2 { font-size: 24px; }
  .service-list > div, .workshop-list > div { padding: 26px 16px; }
}
@media (max-width: 768px) {
  header {
    flex-direction: row;
    height: 60px;
    padding: 0 11px;
  }
  header nav,
  .main-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .container {
    padding: 0 7px;
  }
  .hero, .cta, section, .section {
    padding-left: 6px;
    padding-right: 6px;
  }
  .features ul, .values ul {
    gap: 14px;
    font-size: 15px;
  }
  .testimonial-card, .service-list > div, .workshop-list > div, .card {
    padding: 18px 10px;
    max-width: 100%;
  }
  .faq-category {
    padding: 6px 4px 6px 0;
  }
  .footer-contact { flex-direction: column; gap: 6px; padding: 7px 0; }
  .footer-contact img { height: 43px; }
}
@media (max-width: 650px) {
  .hero .container { min-height: 160px; padding-top: 12px; }
  .hero h1 { font-size: 25px; }
  .content-wrapper { gap: 10px; }
  .cta .content-wrapper { gap: 10px; }
}
@media (max-width: 540px) {
  .footer-contact img { height: 36px; }
  .testimonial-card { padding: 17px 5px; }
  .cookie-modal { padding: 20px 8px 12px 8px; min-width: unset; }
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* === HIDE MOBILE MENU AT DESKTOP === */
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 12px;
  background: #f4f4f4;
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 10px;
}

/* END OF STYLE FILE */
