/* ====================================================
   CSS RESET & NORMALIZE (simple, concise, mostly reset)
======================================================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: #23374D;
  background: #FFFDF9;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #23374D;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 22px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
}
p, ul, ol {
  margin-bottom: 16px;
  font-size: 1rem;
}
strong {
  font-weight: bold;
}
a {
  color: #D96B6C;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #FAAE2B;
  outline: none;
}
ul, ol {
  padding-left: 20px;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}
/* ============================================
   BRAND PALETTE & PLAYFUL_DYNAMIC ACCENTS
============================================= */
:root {
  --primary: #23374D;
  --secondary: #D6B36A;
  --accent: #FFFFFF;
  --fun-pink: #F36D8B;
  --fun-sky: #44B7E3;
  --fun-yellow: #FAAE2B;
  --fun-green: #49D69C;
  --bg-soft: #FFFDF9;
  --shadow-lg: 0 8px 24px 0 rgba(34,55,77,0.09);
  --shadow: 0 4px 12px 0 rgba(34,55,77,0.08);
  --rounded: 18px;
}
/* =============== GLOBAL CONTAINERS =============== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .section {
    padding: 32px 8px;
    margin-bottom: 36px;
    border-radius: 12px;
  }
}
/* =============== HEADER & NAVIGATION =============== */
header {
  width: 100%;
  background: var(--primary);
  padding: 0;
  box-shadow: 0 4px 16px 0 rgba(34,55,77,0.06);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo img {
  height: 48px;
  width: auto;
}
nav {
  display: flex;
  gap: 26px;
}
nav a {
  color: var(--accent);
  font-size: 1.05rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  border-radius: 8px;
  padding: 6px 10px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  outline: none;
}
.cta {
  background: linear-gradient(90deg,var(--fun-pink) 0%,var(--fun-yellow) 100%);
  color: var(--primary);
  border: none;
  border-radius: 40px;
  padding: 12px 32px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 16px 0 rgba(243,109,139,0.11),0 1.5px 5px 0 rgba(36,45,81,0.12);
  cursor: pointer;
  margin-left: 16px;
  transition: transform 0.14s, box-shadow 0.17s, background 0.2s;
  text-shadow: 0px 2px 13px rgba(255,255,255,0.3);
  outline: none;
  z-index: 3;
}
.cta:hover, .cta:focus {
  background: linear-gradient(90deg,var(--fun-yellow) 0%,var(--fun-sky) 100%);
  color: #23374D;
  transform: translateY(-3px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 40px 0 rgba(250,174,43,0.07), 0 2px 10px 0 rgba(68,183,227,0.09);
}
@media (max-width: 990px) {
  nav {
    gap: 16px;
  }
  .cta {
    padding: 11px 20px;
    font-size: 1.01rem;
    margin-left: 7px;
  }
}
@media (max-width: 768px) {
  header .container {
    gap: 7px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  nav {
    display: none;
  }
  .cta {
    display: none;
  }
}
/* =============== MOBILE MENU =============== */
.mobile-menu-toggle {
  display: none;
  background: var(--fun-pink);
  color: var(--primary);
  font-size: 2.125rem;
  padding: 7px 16px;
  border-radius: 24px;
  margin-left: auto;
  z-index: 105;
  border: 2px solid var(--fun-sky);
  box-shadow: 0 2px 8px 0 rgba(68,183,227,0.13);
  transition: background 0.18s, color 0.18s, transform 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--fun-yellow);
  color: var(--primary);
  transform: scale(1.06) rotate(2deg);
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 370px;
  height: 100vh;
  background: var(--accent);
  box-shadow: -2px 0 32px 0 rgba(34,55,77,0.15);
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(.55,1.6,.56,.94);
  z-index: 3009;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  gap: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: var(--fun-yellow);
  color: var(--primary);
  border-radius: 60px;
  padding: 10px 15px;
  margin-bottom: 2px;
  box-shadow: 0 2px 10px 0 rgba(250,174,43,0.14);
  border: 2px solid var(--fun-sky);
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--fun-pink);
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  font-size: 1.21rem;
  color: var(--primary);
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--bg-soft);
  transition: background 0.18s, color 0.14s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--fun-yellow);
  color: var(--primary);
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}
/* ====================================
   HERO & PRIMARY HEADLINES
====================================== */
.hero {
  background: linear-gradient(119deg, var(--fun-yellow) 61%, var(--fun-pink) 99%);
  color: var(--primary);
  border-radius: var(--rounded);
  margin-bottom: 60px;
  box-shadow: 0 8px 28px 0 rgba(68,183,227,0.09);
  min-height: 40vh;
  display: flex;
  align-items: center;
  position: relative;
  animation: hero-slidein 1.2s cubic-bezier(.51,1.07,.44,1) 0.32s 1 both;
}
@keyframes hero-slidein {
  from { opacity:0; transform: translateY(70px) scale(0.98); }
  to { opacity:1; transform: none; }
}
.hero .container {
  min-height: 260px;
  padding-top: 54px;
  padding-bottom: 54px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 900;
  text-shadow: 1px 2px 18px rgba(255,255,255,0.19);
  letter-spacing: 0.03em;
}
.hero .subheadline {
  font-size: 1.2rem;
  color: #334D64;
  font-family: 'Lato', Arial, sans-serif;
  margin-bottom: 24px;
  max-width: 470px;
}
.hero .cta {
  margin-top: 7px;
  font-size: 1.16rem;
}
@media (max-width: 768px){
  .hero {
    min-height: unset;
    margin-bottom: 34px
  }
  .hero .container {
    min-height: 160px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero .subheadline {
    font-size: 1.01rem;
    margin-bottom: 14px;
  }
}
/* =============== FLEX SPACING LAYOUTS =============== */
.feature-grid, .service-cards, .testimonial-grid, .testimonial-snippets, .content-grid, .card-container, .case-study-snippets, .core-values, .menu-categories-list, .event-type-list, .event-count-stats, .value-statements, .service-overview-list, .process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-item {
  background: var(--bg-soft);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px 22px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 280px;
  position: relative;
  transition: box-shadow 0.21s, transform 0.21s;
  border: 3px solid transparent;
  animation: feature-bounce 0.88s cubic-bezier(.29,1.19,.54,1.07) 0.18s both;
}
@keyframes feature-bounce {
  from { opacity:0; transform: scale(.92) translateY(33px); }
  60% { opacity:1; transform: scale(1.04) translateY(-7px); }
  to { opacity:1; transform: none; }
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 30px 0 rgba(44,183,227,0.13);
  transform: translateY(-4px) scale(1.038);
  border-color: var(--fun-yellow);
}
.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  border-radius: 50%;
  box-shadow: 0 1px 8px 0 rgba(243,109,139,0.08), 0 3px 13px 0 rgba(250,174,43,0.08);
  background: var(--accent);
}
/* ========== Service Cards ========== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-card {
  background: var(--fun-yellow);
  color: var(--primary);
  border-radius: 13px;
  box-shadow: var(--shadow-lg);
  flex: 1 1 220px;
  min-width: 205px;
  max-width: 270px;
  padding: 22px 20px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.15s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 2px dashed var(--fun-pink);
  position: relative;
  z-index: 1;
}
.service-card:hover, .service-card:focus-within {
  background: var(--fun-pink);
  color: var(--accent);
  transform: translateY(-2px) scale(1.025) rotate(-1deg);
  box-shadow: 0 12px 40px 0 rgba(243,109,139,0.13);
  border-color: var(--fun-sky);
}
.service-card .price {
  margin-top: 7px;
  background: var(--fun-sky);
  color: #174569;
  font-weight: 800;
  border-radius: 8px;
  padding: 4px 14px;
  font-size: 1rem;
}
/* ========== Card Containers & General Cards ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--bg-soft);
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
  padding: 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* ========== Testimonials ========== */
.testimonial-grid, .testimonial-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--accent);
  color: #18283C;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 14px 40px 20px 20px;
  box-shadow: 0 4px 18px 0 rgba(34,55,77,0.12);
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  border-left: 8px solid var(--fun-green);
  border-bottom: 3px solid var(--fun-yellow);
  font-family: 'Lato', Arial, sans-serif;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.12s;
  z-index: 1;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 12px 36px 0 rgba(68,183,227,0.10);
  transform: scale(1.033) rotate(-1deg);
}
.testimonial-card p {
  font-size: 1.12rem;
  color: #18283C;
}
.testimonial-card span {
  color: var(--fun-pink);
  font-size: 1rem;
  font-weight: 600;
}
/* ==== Other distinctive section layouts ==== */
.case-study-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.case-study {
  background: var(--fun-sky);
  color: var(--primary);
  border-radius: 16px;
  box-shadow: var(--shadow);
  flex: 1 1 230px;
  max-width: 300px;
  min-width: 210px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.18s;
}
.case-study:hover, .case-study:focus-within {
  transform: scale(1.02) rotate(1deg);
  box-shadow: 0 10px 36px 0 rgba(68,183,227,0.12);
}
.menu-categories-list li {
  background: var(--fun-green);
  color: var(--primary);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px 0 rgba(40,213,156,0.09);
  font-weight: 600;
  font-size: 1.02rem;
}
@media (max-width: 768px) {
  .feature-grid, .service-cards, .testimonial-grid, .testimonial-snippets, .content-grid, .card-container, .case-study-snippets {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .service-card, .case-study, .testimonial-card {
    max-width: unset;
    min-width: unset;
  }
}
/* =============== SECTION SPACING (MANDATORY) =============== */
.section, .about, .values, .why-choose-us, .services, .approach, .menus, .dietary-info, .event-types, .case-studies, .stats, .gdpr-policy, .privacy-policy, .cookie-policy, .terms-conditions, .contact, .location, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section, .about, .values, .why-choose-us, .services, .approach, .menus, .dietary-info, .event-types, .case-studies, .stats, .gdpr-policy, .privacy-policy, .cookie-policy, .terms-conditions, .contact, .location, .thank-you {
    padding: 28px 8px 32px 8px;
    margin-bottom: 36px;
  }
}
/* =============== VISUAL CARDS UTILITIES =============== */
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* =============== LISTS, BADGES, ETC. =============== */
.core-values, .event-type-list, .event-count-stats, .value-statements, .service-overview-list, .process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.core-values li, .event-type-list li, .event-count-stats li, .value-statements li, .service-overview-list li, .process-steps li {
  background: var(--fun-sky);
  color: var(--primary);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  box-shadow: 0 2px 6px 0 rgba(68,183,227,0.08);
}
.policy-overview li, .user-rights ul li, .data-processing-info ul li, .limitations-liabilities ul li, .user-obligations ul li {
  margin-bottom: 4px;
}
/* =============== UTILS / BADGES / PRICES =============== */
.price {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 8px;
  padding: 5px 16px;
  font-size: 1rem;
  font-weight: 800;
  margin-left: 12px;
}
@media (max-width: 480px){
  .price {
    display: block;
    margin-left: 0;
    margin-top: 7px;
  }
}
/* =============== FORM ELEMENTS =============== */
input, select, textarea {
  border: 2px solid var(--fun-pink);
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1rem;
  color: #334D64;
  margin-bottom: 13px;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--fun-yellow);
  outline: none;
  background: #FFFDEA;
}
/* =============== FOOTER =============== */
footer {
  width: 100%;
  background: var(--primary);
  color: var(--secondary);
  padding: 0;
  position: relative;
  z-index: 90;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -2px 18px 0 rgba(34,55,77,0.07);
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 20px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 7px;
  transition: background 0.17s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--fun-yellow);
  color: var(--primary);
  outline: none;
}
.footer-logo img {
  height: 38px;
  width: auto;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    padding: 18px 8px;
  }
}
/* =============== CTA BUTTONS =============== */
.cta {
  background: linear-gradient(90deg,var(--fun-pink) 0%,var(--fun-yellow) 100%);
  color: var(--primary);
  border: none;
  border-radius: 40px;
  padding: 12px 32px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 4px 16px 0 rgba(243,109,139,0.11),0 1.5px 5px 0 rgba(36,45,81,0.12);
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.2s, color 0.2s, transform 0.14s, box-shadow 0.17s;
  text-shadow: 0px 2px 13px rgba(255,255,255,0.2);
  outline: none;
}
.cta:hover, .cta:focus {
  background: linear-gradient(90deg,var(--fun-yellow) 0%,var(--fun-sky) 100%);
  color: #23374D;
  transform: translateY(-3px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 40px 0 rgba(250,174,43,0.10), 0 2px 10px 0 rgba(68,183,227,0.12);
}
.cta:active {
  transform: scale(0.98);
}
/* =============== COOKIE CONSENT BANNER =============== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, var(--fun-yellow) 70%, var(--fun-pink) 100%);
  color: var(--primary);
  padding: 28px 14px 16px 14px;
  z-index: 4010;
  box-shadow: 0 -2px 18px 0 rgba(243,109,139,0.13);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  animation: cookie-up 0.61s cubic-bezier(.34,1.04,.63,1.09) both;
}
@keyframes cookie-up {
  from { transform: translateY(70px); opacity:0; }
  to { transform: none; opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 1 1 70%;
  font-size: 1.05rem;
  color: #1E2E4C;
  margin-right: 12px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--primary);
  color: var(--accent);
  border: none;
  border-radius: 30px;
  padding: 7px 18px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin-right: 0;
  margin-bottom: 0;
  transition: background 0.18s, color 0.13s, transform 0.13s;
  cursor: pointer;
}
.cookie-btn.settings {
  background: var(--fun-yellow);
  color: var(--primary);
}
.cookie-btn.reject {
  background: var(--fun-pink);
  color: var(--accent);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--fun-sky);
  color: var(--primary);
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.97rem;
    padding: 14px 7px 12px 7px;
  }
}
/* ================= COOKIE MODAL =================== */
.cookie-modal {
  position: fixed;
  z-index: 4030;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(30,46,76,0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s cubic-bezier(.5,1,.38,.98);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-dialog {
  background: var(--accent);
  border-radius: 22px;
  max-width: 480px;
  width: 94vw;
  padding: 34px 30px 24px 30px;
  box-shadow: 0 9px 28px 0 rgba(68,183,227,0.17),0 1.5px 5px 0 rgba(36,45,81,0.15);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 18px;
  font-size: 1.85rem;
  color: var(--fun-pink);
  background: var(--accent);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--fun-yellow);
  color: var(--primary);
}
.cookie-modal-title {
  font-size: 1.375rem;
  font-family: 'Playfair Display',serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-category-group {
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 10px 14px;
}
.cookie-category label {
  font-weight: 600;
  color: var(--primary);
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--fun-sky);
  width: 20px; height: 20px;
}
.cookie-category.disabled label {
  color: #909bbd;
  text-decoration: line-through;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
@media (max-width: 480px) {
  .cookie-modal-dialog {
    padding: 20px 10px 18px 10px;
    border-radius: 15px;
  }
}
/* =============== RESPONSIVE UTILITIES =============== */
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 992px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.42rem; }
  .hero h1 { font-size: 1.44rem; }
}
@media (max-width: 500px){
  h1 { font-size: 1.34rem; }
  .hero h1 {font-size: 1.02rem;}  
}
/* ============== MICR0-INTERACTIONS ============= */
a, button, .cta, .service-card, .feature-item, .testimonial-card, .case-study {
  transition-property: color, background, box-shadow, transform, border-color;
  transition-duration: 0.13s, 0.13s, 0.18s, 0.15s, 0.13s;
}
/* ============== ANIMATED DECORATIVE ELEMENTS ============= */
/* Example: Bouncing blob for playful look */
.hero:before {
  content: '';
  display: block;
  position: absolute;
  top: -56px; left: -56px;
  width: 150px; height: 120px;
  background: var(--fun-green);
  opacity: 0.19;
  border-radius: 80% 65% 77% 50%/75% 55% 80% 60%;
  z-index: 0;
  animation: blob-bounce 3.8s infinite cubic-bezier(.6,2,-0.7,1);
}
@keyframes blob-bounce{
  0%,100% {transform: translateY(0);} 
  45%{transform: translateY(18px) scaleX(1.16) rotate(-8deg);} 
}
.hero .content-wrapper { position: relative; z-index: 2; }
/* ============== TYPOGRAPHY (Playful Fonts) ============= */
h1, h2, h3, .cta, .cookie-btn {
  font-family: 'Playfair Display', serif;
}
body, p, a, nav, li, .testimonial-card, .service-card, .feature-item {
  font-family: 'Lato', Arial, sans-serif;
}
/* ===================== MISC/OVERRIDES ===================== */
::-webkit-input-placeholder { color: #899199; }
::-moz-placeholder { color: #899199; }
:-ms-input-placeholder { color: #899199; }
::placeholder { color: #899199; }

/* Prevent images dragging ghost effect on mobile */
img, svg { user-drag: none; user-select: none; pointer-events: auto; }

/* Map placeholder styling */
.map-embed-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--fun-sky);
  border-radius: 14px;
  background: #ebfbfb;
  min-height: 120px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
}

/* ============= THANK YOU PAGE ============= */
.thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirmation-message {
  background: var(--fun-green);
  color: var(--primary);
  border-radius: 11px;
  padding: 18px 19px;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px 0 rgba(40,213,156,0.09);
  font-size: 1.03rem;
}
.next-steps-info {
  background: var(--bg-soft);
  color: var(--primary);
  border-radius: 9px;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 400;
}
@media (max-width: 768px){
  .thank-you, .confirmation-message, .next-steps-info {
    padding: 0;
    margin: 0;
    border-radius: 8px;
  }
}

/* Extra style for headings (playful sense) */
h1, h2, h3 {
  letter-spacing: 0.03em;
}
h1 span, h2 span {
  color: var(--fun-pink);
  background: var(--fun-yellow);
  border-radius: 8px;
  padding: 0 8px;
  margin-left: 2px;
  display: inline-block;
  transform: rotate(-2deg);
}

/* END OF CSS */
