/* ---- CSS RESET & NORMALIZE ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body { min-height: 100vh; background: #F7F9FB; color: #274060; font-family: 'Roboto', Arial, sans-serif; font-size: 16px; line-height: 1.6; }
img { max-width: 100%; display: block; height: auto; border: 0; }
a { color: inherit; text-decoration: none; transition: color .2s; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; background: none; border: none; outline: none; }
ul, ol { margin-left: 1.5em; }

/* ---- BRAND FONTS (Websafe fallback only) ---- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,500,700&display=swap');

:root {
  --color-primary: #274060;
  --color-primary-dark: #1E2F47;
  --color-secondary: #E2E6EA;
  --color-accent: #C1954F;
  --color-accent-dark: #b07d2c;
  --color-white: #FFFFFF;
  --color-bg: #F7F9FB;
  --color-shadow: rgba(39,64,96,0.08);
  --radius: 18px;
  --transition: .28s cubic-bezier(.68,-0.55,.27,1.55);
  --shadow-card: 0 2px 16px var(--color-shadow);
  --shadow-btn: 0 2px 8px rgba(33, 33, 33, 0.06);
  --heading-font: 'Montserrat', Arial, Helvetica, sans-serif;
  --body-font: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--heading-font);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}
h1 { font-size: 2.8rem; margin-bottom: 24px; line-height: 1.1; }
h2 { font-size: 2rem; margin-bottom: 18px; line-height: 1.2; }
h3 { font-size: 1.265rem; margin-bottom: 10px; line-height: 1.2; }
h4 { font-size: 1.08rem; margin-bottom: 8px; }
p { margin-bottom: 1em; }
ul, ol { margin-bottom: 1em; }

/* ---- PLAYFUL DYNAMIC FONT VARIATIONS ---- */
h1, h2, .cta-btn, .footer-logo p {
  font-family: 'Montserrat', var(--heading-font);
  font-weight: 900;
  text-transform: none;
}

/* Fun accent underline */
h2, .section-title {
  position: relative;
  display: inline-block;
}
h2::after, .section-title::after {
  content: '';
  display: block;
  height: 6px;
  width: 56px;
  background: var(--color-accent);
  border-radius: 3px;
  margin-top: 7px;
  margin-left: 6px;
  animation: playful-underline .7s .2s cubic-bezier(.68,-0.3,.27,1.35) both;
}
@keyframes playful-underline {
  from { width: 0; opacity: .0; }
  to { width: 56px; opacity: 1; }
}

/* ---- SPACING CLASSES ---- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 2px 32px 0 var(--color-shadow);
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  margin-bottom: 20px;
  padding: 28px 22px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 32px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-secondary);
  border-radius: var(--radius);
  box-shadow: 0 3px 16px 0 var(--color-shadow);
  margin-bottom: 24px;
  position: relative;
  transition: transform .18s, box-shadow .18s;
  min-width: 220px;
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.03) rotate(-0.7deg);
  box-shadow: 0 8px 32px 0 rgba(39,64,96,0.16);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---- HEADER & NAVIGATION ---- */
header {
  width: 100%;
  background: var(--color-primary);
  box-shadow: 0 2px 8px 0 var(--color-shadow);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 0; padding-bottom: 0;
  gap: 0;
  min-height: 78px;
}
.logo img { height: 52px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 28px;
}
.main-nav a {
  color: var(--color-secondary);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 8px 10px;
  border-radius: 9px;
  transition: background .2s, color .2s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cta-btn {
  font-family: var(--heading-font);
  font-size: 1.07rem;
  font-weight: 900;
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: 999px;
  box-shadow: var(--shadow-btn);
  padding: 12px 30px;
  margin-left: 24px;
  letter-spacing: 0.03em;
  text-align: center;
  border: none;
  transition: background .22s, box-shadow .18s, color .14s;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-accent-dark);
  color: var(--color-primary);
  box-shadow: 0 4px 20px 0 var(--color-shadow);
}
/* Hamburger for mobile */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 var(--color-shadow);
  cursor: pointer;
  margin-left: 16px;
  transition: background .16s, transform .16s;
}
.mobile-menu-toggle:active {
  background: var(--color-accent-dark);
  transform: scale(0.94) rotate(-8deg);
}

/* ---- MOBILE NAVIGATION ---- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 25000;
  padding: 40px 22px 32px 22px;
  transform: translateX(100vw);
  transition: transform .33s cubic-bezier(.62,-0.5,.55,1.25);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 260px;
  max-width: 92vw;
  box-shadow: -9px 0 60px 0 var(--color-shadow);
  gap: 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-primary);
  line-height: 1;
  cursor: pointer;
  margin-bottom: 6px;
  padding: 8px 10px;
  border-radius: 50%;
  transition: background .15s;
}
.mobile-menu-close:hover {
  background: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  color: var(--color-primary);
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.16rem;
  background: var(--color-secondary);
  border-radius: 8px;
  padding: 14px 12px;
  margin: 0;
  box-shadow: var(--shadow-btn);
  transition: background .15s, color .15s, transform .16s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--color-accent);
  color: var(--color-white);
  transform: scale(1.03) translateX(4px);
}

/* Hide main nav and show burger on mobile */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .cta-btn { margin-left: 12px; }
  .mobile-menu-toggle { display: flex; }
}

/* ---- HERO SECTION ---- */
.hero {
  background: linear-gradient(135deg, var(--color-secondary) 70%, #FCECDA 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 60px 0 46px 0;
  margin-bottom: 60px;
  min-height: 290px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.45rem;
  font-family: 'Montserrat', var(--heading-font);
  margin-bottom: 8px;
  animation: playful-pop .8s cubic-bezier(.46,1.89,.45,.87);
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.hero .cta-btn {
  margin-left: 0;
  margin-top: 14px;
  font-size: 1.13rem;
  /* Slight drop animation for fun */
  animation: bounceDown .9s .3s cubic-bezier(.59,1.65,.47,1.23) both;
}
@keyframes playful-pop { from { transform: scale(0.86); opacity: 0;} to { transform: scale(1); opacity:1; } }
@keyframes bounceDown { from { transform: translateY(-38px); opacity:0;} to { transform: translateY(0); opacity:1; } }

/* ---- FEATURES SECTIONS ---- */
.features {
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--color-bg);
  border-radius: var(--radius);
  margin-bottom: 60px;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 18px;
}
.feature {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  padding: 24px 16px 19px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: transform .18s, box-shadow .17s;
}
.feature img {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  animation: wiggleIn .7s cubic-bezier(.84,1.24,.45,1.15);
}
@keyframes wiggleIn {
  0% { transform: rotate(-17deg) scale(0.7); opacity: 0; }
  60% { transform: rotate(11deg) scale(1.09); opacity: 1; }
  100% { transform: rotate(0deg) scale(1); opacity: 1; }
}
.feature:hover {
  transform: translateY(-5px) scale(1.02) rotate(-1deg);
  box-shadow: 0 7px 30px 0 rgba(39,64,96,0.12);
}
.features ul, .features li {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.features ul > li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  font-size: 1.03rem;
}
.features ul > li::before {
  content: '★';
  color: var(--color-accent);
  font-size: 1.25em;
  position: absolute;
  left: 0;
  top: -2px;
  font-family: 'Montserrat', sans-serif;
  opacity: 0.89;
}

/* ---- SERVICE LISTS ---- */
.service-list {
  list-style-type: "+ ";
  padding-left: 22px;
  margin-bottom: 1.2em;
  font-size: 1.07rem;
}
.service-list li {
  margin-bottom: 10px;
  transition: color .16s;
}
.service-list li:hover {
  color: var(--color-accent);
}

.service-accordion {
  list-style: none;
  margin-bottom: 1em;
}
.service-accordion li {
  margin-bottom: 24px;
  background: var(--color-secondary);
  border-radius: var(--radius);
  box-shadow: 0 1px 12px 0 var(--color-shadow);
  padding: 20px 16px;
  transition: box-shadow .17s, background .16s;
  cursor: pointer;
}
.service-accordion li:hover {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 5px 20px 0 var(--color-shadow);
}
.service-accordion h3 {
  margin-bottom: 9px;
  font-weight: 800;
  font-size: 1.12rem;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: unset;
}
.testimonials h2 {
  margin-bottom: 22px;
}
.testimonial-card {
  background: var(--color-secondary);
  border-radius: var(--radius);
  box-shadow: 0 3px 16px 0 var(--color-shadow);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  transition: background .18s, box-shadow .18s, color .12s;
  border: 2.5px solid transparent;
}
.testimonial-card:hover {
  background: #FFF8EA;
  box-shadow: 0 8px 36px 0 rgba(39,64,96,0.17);
  border-color: var(--color-accent);
}
.testimonial-card p {
  font-size: 1.12rem;
  color: var(--color-primary-dark);
  margin-bottom: 1em;
}
.testimonial-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--color-accent-dark);
  font-size: 1.06rem;
}
.testimonial-meta span:first-child {
  color: #ffcf35;
  font-size: 1.17em;
}

/* ---- BLOG LIST & FEATURED POSTS ---- */
.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
}
.blog-post-list article {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 1px 12px 0 var(--color-shadow);
  padding: 20px 16px;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .15s, transform .18s;
}
.blog-post-list article:hover {
  box-shadow: 0 7px 30px 0 var(--color-shadow);
  transform: translateY(-4px) scale(1.02) rotate(-1.2deg);
}
.blog-post-list a {
  color: var(--color-accent);
  font-weight: 700;
  font-family: var(--heading-font);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
.blog-post-list a:hover {
  color: var(--color-accent-dark);
  text-decoration: underline wavy 2px;
}
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: .98rem;
  margin-bottom: 15px;
}
.categories a {
  margin: 0 6px;
  color: var(--color-primary);
  border-radius: 6px;
  background: #FFDCA4;
  padding: 3px 13px;
  font-weight: 600;
  transition: background .15s, color .14s;
}
.categories a:hover {
  background: var(--color-accent);
  color: var(--color-white);
}
.featured-post {
  background: #FCF4DD;
  border-radius: var(--radius);
  box-shadow: 0 6px 30px 0 var(--color-shadow);
  padding: 24px 18px;
  margin-bottom: 16px;
  animation: playful-pop .66s cubic-bezier(.6,1.2,.6,1.05);
}
.featured-post h3 { color: var(--color-primary); font-size: 1.22rem; }
.featured-post a {
  color: var(--color-accent-dark);
  text-decoration: underline;
  font-weight: 700;
  transition: color .13s;
}
.featured-post a:hover { color: var(--color-primary-dark); }

/* ---- PRICE TABLE ---- */
.price-table {
  width: 100%;
  border-spacing: 0;
  margin-bottom: 18px;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 12px 0 var(--color-shadow);
}
.price-table th, .price-table td {
  padding: 16px 10px;
  border-bottom: 1.5px solid #f0f0f0;
  text-align: left;
}
.price-table th {
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 1.08rem;
  font-weight: 900;
}
.price-table tr:nth-child(even) td {
  background: #FCF4DD;
}
.price-table tr:last-child td { border-bottom: none; }

/* ---- LEGAL/TEXT SECTIONS ---- */
.legal, .confirmation, .about, .contact {
  margin-bottom: 60px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 40px 20px;
}
.text-section h3 {
  font-size: 1.14rem;
  margin-bottom: 5px;
  font-weight: 800;
  color: var(--color-primary-dark);
}
.text-section p, .text-section ul { margin-bottom: 11px; }
.text-section ul { margin-left: 20px; }
.text-section li {
  margin-bottom: 8px;
  padding-left: 0px;
  font-size: 1rem;
}

/* ---- CTA SECTION ---- */
.cta {
  margin-bottom: 60px;
  background: linear-gradient(99deg, #FCE594 55%, #6DD6FC 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 38px 16px;
  text-align: center;
}
.cta .content-wrapper {
  align-items: center;
  gap: 12px;
}
.cta h2 {
  color: var(--color-primary);
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 1.66rem;
}
.cta p { font-size: 1.13rem; margin-bottom: 8px; }
.cta .cta-btn { margin-top: 10px; }

/* ---- FOOTER ---- */
footer {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 0 0 12px 0;
}
footer .container {
  padding-top: 36px;
  padding-bottom: 12px;
  flex-direction: column;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.footer-logo img {
  height: 38px;
  margin-bottom: 10px;
}
.footer-logo p { font-family: var(--heading-font); font-weight: 800; color: var(--color-accent); margin-bottom: 4px; font-size: 1.10rem; }
.footer-nav, .footer-contact, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact p img { height: 18px; width: 18px; margin-right: 8px; vertical-align: middle; display: inline-block; }
.footer-contact p, .footer-contact a {
  color: var(--color-white); font-size: .99rem;
}
.footer-nav a {
  color: var(--color-secondary);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: .97rem;
  transition: color .16s;
}
.footer-nav a:hover { color: var(--color-accent); }
.footer-social {
  flex-direction: row;
  gap: 15px;
  margin-top: 10px;
}
.footer-social a img { height: 29px; width: 29px; filter: brightness(1) saturate(0.95) drop-shadow(0 1px 2px #0001); transition: filter .1s; }
.footer-social a:hover img { filter: brightness(1) saturate(1.1) drop-shadow(0 0 8px var(--color-accent)); }
.footer-bottom {
  text-align: center;
  color: #bfc6d0;
  font-size: 90%;
  padding-top: 6px;
  border-top: 1.5px solid #30435a;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90000;
  background: #fff9e1;
  color: var(--color-primary-dark);
  box-shadow: 0 -2px 22px 0 var(--color-shadow);
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  padding: 18px 24px;
  font-size: 1rem;
  animation: slideUpBanner .5s cubic-bezier(.29,1.7,.51,.99);
}
@keyframes slideUpBanner {
  from { transform: translateY(101px); opacity: 0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  flex: 1 1 180px;
  margin-bottom: 0;
  font-size: 1rem;
}
.cookie-banner .cookie-btn {
  font-family: var(--heading-font);
  font-size: .97rem;
  border-radius: 30px;
  border: none;
  padding: 10px 20px;
  margin-left: 6px;
  margin-right: 4px;
  cursor: pointer;
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 800;
  box-shadow: 0 2px 8px 0 var(--color-shadow);
  transition: background .17s, color .13s;
}
.cookie-banner .cookie-btn.reject {
  background: #ffe3e3;
  color: #c0392b;
  margin-left: 0;
}
.cookie-banner .cookie-btn.settings {
  background: #FCF4DD;
  color: var(--color-primary);
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: var(--color-accent-dark);
  color: var(--color-white);
}
.cookie-banner .cookie-btn.reject:hover {
  background: #ffe6dc;
  color: #c0392b;
}

/* COOKIE CONSENT MODAL */
.cookie-modal {
  position: fixed;
  z-index: 91000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(39,64,96,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .25s cubic-bezier(.48,1.53,.52,1.11);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity:1; }
}
.cookie-modal-inner {
  background: #fffbe9;
  color: var(--color-primary-dark);
  border-radius: 18px;
  min-width: 315px;
  max-width: 95vw;
  box-shadow: 0 8px 40px 0 var(--color-shadow);
  padding: 44px 28px 30px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation: playful-pop .29s;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--color-primary-dark);
  cursor: pointer;
  transition: background .13s;
  border-radius: 50%;
  padding: 3px 7px;
}
.cookie-modal-close:hover {
  background: #ede4bf;
}
.cookie-consent-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.1rem;
}
.cookie-option label {
  font-weight: 700;
  color: var(--color-primary-dark);
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 23px;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #cfddb7;
  transition: background .17s;
  border-radius: 30px;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--color-accent);
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 4px; top: 3px;
  width: 16px; height: 16px;
  background: var(--color-white);
  border-radius: 50%;
  transition: .19s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(15px);
}
.cookie-option .always-on {
  color: #6e876f;
  font-size: .93em;
  font-weight: 600;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}
.cookie-modal .cookie-btn {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 1rem;
  border-radius: 30px;
  border: none;
  padding: 11px 25px;
  margin-left: 0;
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 2px 8px 0 var(--color-shadow);
}
.cookie-modal .cookie-btn.reject {
  background: #ffe3e3;
  color: #c0392b;
}
.cookie-modal .cookie-btn.settings {
  background: #FCF4DD;
  color: var(--color-primary);
}
.cookie-modal .cookie-btn:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
}

/* ---- VARIOUS PLACEHOLDERS ---- */
.team-photo-placeholder {
  background: #FCF4DD;
  border-radius: var(--radius);
  height: 130px;
  width: 100%;
  margin: 18px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.12rem;
  color: #cca952;
  letter-spacing: .018em;
}
.map-placeholder {
  background: #FCE594;
  border-radius: 17px;
  padding: 28px 21px;
  text-align: center;
  color: #b49a3e;
  font-size: 1.02rem;
  font-family: var(--body-font);
  margin-bottom: 8px;
}

/* ---- RESPONSIVENESS ---- */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
  .features .feature-grid, .card-container, .blog-post-list {
    gap: 18px;
    justify-content: start;
  }
  .footer-row { gap: 22px; }
}
@media (max-width: 870px) {
  .footer-row {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .about, .contact, .confirmation, .legal, .features, .cta { padding-left: 8px; padding-right: 8px; }
}
@media (max-width: 768px) {
  .section, .features, .about, .contact, .legal, .confirmation, .cta {
    padding: 30px 7px;
    margin-bottom: 36px; 
  }
  .hero {
    padding: 38px 0;
    min-height: 180px;
    border-radius: 0;
  }
  .container { padding: 0 5px; }
  .content-grid,
  .card-container,
  .blog-post-list,
  .features .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .featured-post { padding: 13px 7px; }
  .mobile-menu {
    min-width: 70vw;
    padding: 22px 6vw 22px 6vw;
    font-size: 1.08rem;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1.0rem; }
  .footer-row { gap: 12px; }
  .footer-logo img { height: 30px; }
  .footer-social a img { height: 23px; width: 23px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 12px 8px; font-size: .97rem; gap: 13px; }
}

/* ---- UTILITY CLASSES ---- */
.hide { display: none !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* ---- FORMS (if any) ---- */
input, textarea, select {
  border: 1.5px solid #dcdcdc;
  border-radius: 9px;
  padding: 10px;
  margin-bottom: 14px;
  box-shadow: 0 1px 4px var(--color-shadow);
  font-size: 1rem;
  width: 100%;
  transition: border .15s, box-shadow .15s;
  background: var(--color-secondary);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 3px 10px 0 var(--color-shadow);
}
label { font-weight: 600; color: var(--color-primary-dark); margin-bottom: 5px; display: inline-block; }

/* ---- Animations & Microinteractions ---- */
a, .cta-btn, .main-nav a, .mobile-nav a, .cookie-btn, .feature, .testimonial-card, .card {
  transition: 
    background .22s, 
    color .18s, 
    transform .18s, 
    box-shadow .17s,
    border .12s;
}

/* --- END OF CSS --- */

