/* =======================================
  RESET & NORMALIZE (Mobile-first)
======================================== */
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;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #F6F2ED;
  color: #181E1C;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .18s;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
strong, b {
  font-weight: bold;
}

/* =======================================
  BRAND COLORS & FONTS (CSS VARIABLES)
======================================== */
:root {
  --color-primary: #266150;
  --color-secondary: #F6F2ED;
  --color-accent: #FF9933;
  --color-accent-dark: #b25c00;
  --color-dark: #181E1C;
  --color-light: #FFFFFF;
  --color-highlight: #44CF6C;
  --color-pink: #FF4171;
  --color-blue: #2196F3;
  --shadow-md: 0 2px 8px 0 rgba(38,97,80,.10);
  --shadow-lg: 0 4px 16px 0 rgba(38,97,80,.14);
  --shadow-sm: 0 1px 3px 0 rgba(38,97,80,.08);
  --radius-base: 16px;
  --radius-sm: 8px;
  --app-max-width: 1220px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

@media (max-width: 600px) {
  :root { --radius-base: 10px; }
}

/* =======================================
  TYPOGRAPHY & HEADINGS
======================================== */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-primary);
  line-height: 1.13;
  margin-bottom: 24px;
  text-shadow: 0 1px 0 var(--color-accent);
}
@media (max-width: 600px) {
  h1, .h1 {font-size:2rem;}
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  margin-bottom: 18px;
  line-height: 1.17;
}
@media (max-width: 600px) {
  h2, .h2 {font-size:1.5rem;}
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.17;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
}
p, ul, ol, li, dl, dd, dt, span {
  font-size: 1rem;
  margin-bottom: 0;
  font-family: var(--font-body);
}

/* =======================================
  CONTAINERS, WRAPPERS, SECTIONS
======================================== */
.container {
  width: 100%;
  max-width: var(--app-max-width);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 850px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .content-wrapper {max-width: 100%;}
}

/* =======================================
  HEADER & NAVIGATION
======================================== */
header {
  background: var(--color-light);
  border-bottom: 4px solid var(--color-accent);
  position: relative;
  z-index: 15;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header a img {
  height: 44px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
  transition: color 0.14s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
  text-shadow: 0 1px 0 var(--color-accent-dark);
}

.cta-primary {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  padding: 12px 30px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, transform 0.14s, box-shadow 0.18s;
  margin-left: 15px;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: var(--shadow-lg);
}
.cta-secondary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 22px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-base);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  margin-top: 8px;
  transition: background 0.2s, transform 0.12s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-1.5px) scale(1.03);
}

/* ---------- MOBILE NAVIGATION ---------- */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  font-size: 2rem;
  color: var(--color-accent);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 22;
  margin-left: 12px;
  transition: color .18s, transform .13s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--color-primary);
  transform: scale(1.10);
}
.mobile-menu {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(38,97,80, 0.94);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  padding-top: 50px;
  padding-left: 0;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.6,.1,.3,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: auto;
  margin-right: 16px;
  margin-bottom: 16px;
  background: var(--color-accent);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  box-shadow: var(--shadow-md);
  transition: background .18s;
  cursor: pointer;
  z-index: 10000;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--color-accent-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 32px 32px 0 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  padding: 10px 0;
  transition: background .12s, color .14s;
  margin-right: 0;
  border-radius: var(--radius-sm);
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 2px 8px 0 #181E1C33;
}

/* Hide burger on desktop, main-nav on mobile */
@media (min-width: 900px) {
  .mobile-menu-toggle {display: none;}
  .mobile-menu {display: none !important;}
  .main-nav {display: flex;}
}
@media (max-width: 899px) {
  .main-nav {display: none;}
  .cta-primary {margin-right: 12px;}
}

/* =======================================
  HERO/INTRO SECTIONS
======================================== */
section:first-of-type {
  background: linear-gradient(90deg, #FF9933 0%, #44CF6C 100%);
  color: #fff;
  border-radius: 0 0 var(--radius-base) var(--radius-base);
  box-shadow: var(--shadow-lg);
}
section:first-of-type h1,
section:first-of-type p {
  color: #fff;
}
section:first-of-type .cta-primary {
  margin-top: 20px;
  background: var(--color-light);
  color: var(--color-accent);
  box-shadow: 0 2px 16px 0 rgba(0,0,0,.09);
  border: none;
}
section:first-of-type .cta-primary:hover, section:first-of-type .cta-primary:focus {
  background: var(--color-accent);
  color: var(--color-light);
}

/* =======================================
  FLEX LAYOUTS - CARDS, GRIDS, LISTS
======================================== */
/* Mandatory Flexbox spacing patterns */
.feature-grid, .category-grid, .service-list, .card-container, .content-grid, .tip-grid, .blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 8px;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .feature-grid, .category-grid, .service-list, .card-container, .content-grid, .tip-grid, .blog-grid {
    flex-direction: column;
    gap: 18px;
  }
}
.feature-grid > li,
.category-grid > li,
.service-list > li {
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-md);
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(25% - 18px);
  min-width: 220px;
  margin-bottom: 20px;
  gap: 15px;
  position: relative;
  border-left: 6px solid var(--color-accent);
  transition: box-shadow 0.15s, transform 0.19s;
}
.feature-grid > li:hover,
.category-grid > li:hover,
.service-list > li:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px) scale(1.04);
  border-left-color: var(--color-highlight);
}
.feature-grid img, .category-grid img, .service-list img {
  height: 42px;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .feature-grid > li,
  .category-grid > li,
  .service-list > li {
    width: 100%;
    min-width: 0;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  min-width: 230px;
  background: var(--color-light);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-md);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow 0.16s, transform 0.14s;
}
.card:hover, .card:focus-within {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px) scale(1.017);
}

/* content-grid - e.g. two columns for text-image sections, splits on mobile */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .content-grid {flex-direction: column;}
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {flex-direction: column; align-items: center; gap: 18px;}
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-md);
  margin-bottom: 18px;
  border-left: 4px solid var(--color-accent);
  color: #1e2220;
  transition: box-shadow .16s, border-color .19s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-left-color: var(--color-accent-dark);
}
.testimonial-card p {
  color: #1e2220;
  font-size: 1.1rem;
  font-family: var(--font-body);
  margin-bottom: 0;
}
.testimonial-card span {
  color: #266150;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.rating-overview {
  margin-top: 14px;
  font-weight: bold;
  color: var(--color-primary);
  background: #FFF7E3;
  border-radius: var(--radius-sm);
  padding: 12px;
  box-shadow: var(--shadow-sm);
  font-size: 1.12rem;
  letter-spacing: .02em;
  margin-bottom: 12px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Blog cards */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-md);
  padding: 20px 24px;
  min-width: 230px;
  flex: 1 1 240px;
  transition: box-shadow 0.16s, transform 0.14s;
  margin-bottom: 20px;
}
.blog-card:hover {
  background: #FFF8F4;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px) scale(1.017);
}

@media (max-width: 900px) {
  .blog-grid {flex-direction: column;}
}

.tip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.tip-card {
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-md);
  padding: 20px 18px;
  flex: 1 1 240px;
  min-width: 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.14s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tip-card:hover {
  background: #F9FFFA;
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px) scale(1.02);
}
.tip-card img {
  height: 38px;
  margin-bottom: 4px;
}

/* =======================================
  SEARCH BAR & FILTERS (Rezepte)
======================================== */
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-sm);
  padding: 7px 12px;
  width: 100%;
  max-width: 420px;
  margin: 0 0 18px 0;
}
.search-bar input {
  border: none;
  flex: 1;
  padding: 8px 2px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: #333;
  background: transparent;
  outline: none;
}
.search-bar button {
  border: none;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 8px 13px;
  cursor: pointer;
  transition: background 0.12s;
}
.search-bar button img {
  height: 21px;
}
.search-bar button:hover {
  background: var(--color-primary);
}
.category-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 9px 0 4px 0;
}
.category-filters span {
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1rem;
}
.category-filters a {
  background: var(--color-accent);
  color: #fff;
  font-size: 0.97rem;
  font-weight: 600;
  font-family: var(--font-display);
  border-radius: var(--radius-sm);
  padding: 6px 15px;
  transition: background .13s;
}
.category-filters a:hover, .category-filters a:focus {
  background: var(--color-primary);
}
.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
.filter-options li {
  background: #fcf3f9;
  color: var(--color-dark);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 0;
}
.filter-options img {
  height: 22px;
  margin-right: 6px;
}

/* =======================================
  FOOTER
======================================== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 38px 0 0 0;
  border-top-right-radius: var(--radius-base);
  border-top-left-radius: var(--radius-base);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 28px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0;
  transition: color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.97rem;
}
.footer-contact-info img {
  height: 19px;
  margin-right: 8px;
}
.newsletter-signup h4 {
  font-size: 1.07rem;
  color: #fff;
  font-family: var(--font-display);
  margin-bottom: 8px;
}
.newsletter-signup p {
  margin-bottom: 10px;
  font-size: 0.97rem;
  color: #fff;
}
.social-links {
  display: flex;
  gap: 20px;
}
.social-links a {
  background: #fff;
  border-radius: 50%;
  padding: 7px;
  display: inline-flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .14s, background .16s;
}
.social-links a:hover {
  background: var(--color-accent);
  box-shadow: var(--shadow-lg);
}
.social-links img {
  height: 22px;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 34px;
    align-items: flex-start;
    padding-bottom: 18px;
  }
}

/* =======================================
  COOKIE BANNER
======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 1998;
  width: 100%;
  background: #fffbe6;
  color: #181E1C;
  box-shadow: 0 -3px 14px 0 #181E1C22;
  font-size: 1.07rem;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-top: 4px solid var(--color-accent);
  animation: slideUp .7s cubic-bezier(.63,-0.13,.42,1.08);
}
@keyframes slideUp {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}
.cookie-banner .cookie-banner-title {
  font-weight: bold;
  font-family: var(--font-display);
  color: var(--color-accent-dark);
  margin-bottom: 6px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  padding: 10px 26px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  border-radius: var(--radius-base);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .18s, color .11s, box-shadow .12s;
}
.cookie-banner .accept {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-md);
  margin-right: 4px;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: var(--color-primary);
}
.cookie-banner .reject {
  background: #eee;
  color: var(--color-accent-dark);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--color-accent-dark);
  color: #fff;
}
.cookie-banner .settings {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--color-accent-dark);
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2000;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-lg);
  width: 96vw;
  max-width: 400px;
  padding: 28px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: cookieModalIn .32s cubic-bezier(.45,1.15,.55,1);
}
@keyframes cookieModalIn {
  from { transform: translate(-50%,30%) scale(.7); opacity: 0; }
  to { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.33rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 8px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 15px; right: 20px;
  background: transparent;
  border: none;
  color: var(--color-primary);
  font-size: 1.7rem;
  cursor: pointer;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #1d322b;
  font-weight: 600;
}
.cookie-modal .cookie-switch {
  min-width: 44px;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  background: #ededed;
  border-radius: 32px;
  position: relative;
  padding: 2px;
  transition: background .13s;
}
.cookie-modal .cookie-switch input[type="checkbox"] {
  display: none;
}
.cookie-modal .cookie-switch span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  display: inline-block;
  transition: transform .15s cubic-bezier(.34,1.6,.39,.9);
}
.cookie-modal .cookie-switch input[type="checkbox"]:checked + span {
  background: var(--color-accent);
  transform: translateX(22px);
}
/* Essential cookies: always enabled (no toggle) */
.cookie-modal .cookie-category.essential label {
  color: var(--color-accent-dark);
  font-style: italic;
}
.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 21px;
}
.cookie-modal-buttons button {
  background: var(--color-accent);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 23px;
  border-radius: var(--radius-base);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background .15s;
}
.cookie-modal-buttons button:focus,
.cookie-modal-buttons button:hover {
  background: var(--color-primary);
}

/* Modal backdrop */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 1999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,45,36, 0.45);
  animation: fadein .35s;
}
@keyframes fadein {
  from { opacity: 0; } to { opacity: 1; }
}

/* =======================================
  SECTION UTILITIES & COMMONS
======================================== */
.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;
}

/* =======================================
  FAQ, HINT, MISC CARDS, TABLES
======================================== */
.contact-info, .business-hours, .footer-contact-info {
  background: #f1fffa;
  color: #151c18;
  padding: 14px 19px;
  border-radius: var(--radius-base);
  margin-bottom: 16px;
  font-size: 1.04rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.frequently-asked-questions {
  background: #fff7e5;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-md);
  padding: 18px 22px;
  margin-bottom: 14px;
}
.frequently-asked-questions h3 {
  color: var(--color-accent);
  margin-bottom: 14px;
}
.frequently-asked-questions dt {
  font-weight: bold;
  margin-top: 14px;
  color: var(--color-primary);
}
.frequently-asked-questions dd {
  margin-left: 0;
  margin-bottom: 10px;
  color: #181E1C;
  font-size: .99rem;
}

.map-embed {
  margin: 16px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.map-embed img {
  max-height: 110px;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-sm);
}
.contact-hint {
  margin: 12px 0;
  background: #eafeee;
  border-radius: var(--radius-sm);
  color: #222;
  font-size: .97rem;
  padding: 9px 12px;
}

/* =======================================
  MISCELLANEOUS - ANIMATIONS & UTILITIES
======================================== */
@media (hover: hover) and (pointer: fine) {
  a, button, .cta-primary, .cta-secondary { transition: all .16s; }
}
::-webkit-input-placeholder { color: #888; opacity:1; }
:-ms-input-placeholder      { color: #888; opacity:1; }
::placeholder              { color: #888; opacity:1; }

@media (max-width: 780px) {
  .container { padding-left:12px; padding-right:12px; }
  .footer-contact-info, .business-hours, .contact-info { padding:10px 12px; }
  .footer-nav {gap:5px;}
}
@media (max-width: 600px) {
  h1, .h1 {font-size:1.38rem;}
  h2, .h2 {font-size:1rem;}
  .container { padding-left:5px; padding-right:5px; }
  .section {padding-top:20px; padding-bottom:24px;}
}

/* =======================================
  THANK YOU PAGE / CONFIRMATION
======================================== */
.thank-you-message {
  background: #fff7e5;
  border-left: 6px solid var(--color-accent);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-md);
  margin-bottom: 19px;
  padding: 21px 18px;
  color: var(--color-primary);
  font-family: var(--font-body);
}

/* =======================================
  ACCESSIBILITY
======================================== */
a:focus, button:focus, input:focus {
  outline: 2px dashed var(--color-accent);
  outline-offset: 2px;
}

/* Hide visually but available for screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* =======================================
   PRINT & SELECTION COLOR
======================================== */
@media print {
  * { color: #222 !important; background: none !important; box-shadow: none !important; }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-backdrop { display:none !important; }
}
::selection {
  background: var(--color-accent);
  color: #fff;
}
