/* ---------------------------------------------------
   CSS Reset & Normalize
--------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #FEFAF5;
  color: #25405C;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #25405C;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #B2C1D0;
  outline-offset: 2px;
}
ul, ol {
  margin-left: 1.5em;
}
img {
  max-width: 100%;
  border-radius: 12px;
  display: block;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}

/* ---------------------------------------------------
   CSS Vars (Brand Colors & Fonts)
--------------------------------------------------- */
:root {
  --color-primary: #25405C;
  --color-secondary: #B2C1D0;
  --color-accent: #DDE7F0;
  --color-warm: #FFD6A0;
  --color-bg: #FEFAF5;
  --color-bg-section: #FFF1E1;
  --color-card: #FFFFFF;
  --color-shadow: 0 4px 16px 0 rgba(37,64,92,0.09);
  --color-focus: #E9B872;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 6px 0 rgba(37,64,92,0.07);
  --shadow-md: 0 4px 16px 0 rgba(37,64,92,0.10);

  --font-display: 'Merriweather', serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ---------------------------------------------------
   Layout Containers
--------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
main > section:not(.cta-section) {
  background: var(--color-bg-section);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ---------------------------------------------------
   Typography & Headings
--------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
h2 {
  font-size: 1.9rem;
  margin-bottom: 12px;
  line-height: 1.25;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.12rem;
  font-weight: 600;
}
p, ul, ol, li, address {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #2B415C;
  margin-bottom: 0.8em;
}
.subheadline {
  font-size: 1.25rem;
  color: #624813;
  margin-bottom: 20px;
  font-family: var(--font-body);
}
strong {
  font-weight: 700;
}

/* ---------------------------------------------------
   Header & Navigation
--------------------------------------------------- */
header {
  background: var(--color-card);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid #F0E8E0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 12px;
}
header img {
  height: 42px;
  border-radius: 0; /* logomark stays crisp */
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 18px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.main-nav .cta-nav {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-family: var(--font-body);
  margin-left: 12px;
  box-shadow: var(--shadow-sm);
  border: none;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.main-nav .cta-nav:hover, 
.main-nav .cta-nav:focus {
  background: var(--color-focus);
  color: var(--color-primary);
}

/* Burger menu button */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  color: var(--color-primary);
  border: none;
  padding: 4px 8px;
  line-height: 1;
  border-radius: var(--radius-md);
  transition: background 0.2s;
  margin-left: 10px;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-accent);
}

/* ---------------------------------------------------
   Mobile Navigation Drawer
--------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37,64,92, 0.25);
  z-index: 999;
  display: none;
  flex-direction: column;
  align-items: stretch;
  transition: opacity 0.4s;
}
.mobile-menu.open {
  display: flex;
  animation: mobileMenuSlideIn 0.35s cubic-bezier(.4,.41,.21,1);
}
@keyframes mobileMenuSlideIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.mobile-menu > nav {
  background: var(--color-card);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 6px 32px 0 rgba(37,64,92,0.10);
  width: 90vw;
  max-width: 400px;
  min-width: 210px;
  margin-top: 0;
  margin-left: 0;
  align-self: flex-start;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 38px 18px 18px 28px;
  animation: drawerSlideIn 0.35s cubic-bezier(.4,.41,.21,1);
  transform: translateX(-6px);
}
@keyframes drawerSlideIn {
  from { transform: translateX(-60vw); }
  to   { transform: translateX(0); }
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  left: 16px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 2.1rem;
  border: none;
  border-radius: var(--radius-md);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-focus);
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 44px;
}
.mobile-nav a {
  font-size: 1.09rem;
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  background: transparent;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* Hamburger on mobile */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ---------------------------------------------------
   Hero Section
--------------------------------------------------- */
.hero {
  background: linear-gradient(120deg, #FFE4B6 0%, #FFF7ED 100%);
  padding: 60px 0 60px 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.cta-main, .cta-secondary {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.2rem;
  padding: 14px 38px;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: 0.01em;
  transition: background 0.22s, box-shadow 0.2s, transform 0.17s;
  text-align: center;
}
.cta-main:hover, .cta-main:focus,
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-focus);
  color: var(--color-primary);
  box-shadow: 0 6px 24px 0 rgba(37,64,92,0.15);
  transform: translateY(-2px) scale(1.01);
}
.cta-secondary {
  background: var(--color-warm);
  color: var(--color-primary);
  margin-top: 0;
}

/* ---------------------------------------------------
   Section, Card & Flex Utilities
--------------------------------------------------- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--color-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 26px 22px 22px 22px;
  min-width: 220px;
  max-width: 360px;
  flex: 1 1 240px;
  gap: 12px;
  transition: box-shadow 0.19s, transform 0.2s;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 7px 32px 0 rgba(254, 180, 98, 0.18);
  transform: translateY(-2px) scale(1.02);
}
.feature img {
  width: 46px;
  height: 46px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  padding: 6px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.service {
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 22px 22px 18px 22px;
  box-shadow: var(--shadow-sm);
  min-width: 220px;
  flex: 1 1 240px;
  max-width: 350px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price {
  color: #BD7A0F;
  font-family: var(--font-body);
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-top: 6px;
}
.quick-links {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
.quick-links a {
  color: var(--color-primary);
  background: var(--color-accent);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: background 0.19s;
}
.quick-links a:hover, .quick-links a:focus {
  background: var(--color-warm);
  color: var(--color-primary);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 25px 28px 25px;
  min-width: 220px;
  flex: 1 1 280px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 9px 40px 0 rgba(37,64,92,0.12);
  transform: translateY(-2px) scale(1.02);
}

.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;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 28px 0 rgba(37,64,92,0.11);
  padding: 32px 26px 24px 26px;
  min-width: 220px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #F6EDE2;
  transition: box-shadow 0.16s, border-color 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 36px 0 rgba(254,180,98, 0.16);
  border-color: #FFD6A0;
}
.testimonial-card p {
  color: #374151;
  font-size: 1.03rem;
  line-height: 1.7;
}
.testimonial-card .author {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
}
.testimonial-card .stars {
  color: #E9B872;
  font-size: 1.09rem;
  letter-spacing: 2px;
}
.testimonial-details {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: var(--color-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 20px 21px 14px 21px;
  margin-bottom: 8px;
  transition: box-shadow 0.16s;
}
.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.10rem;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 5px 27px 0 #FFD6A04A;
}

.benefits ul, .text-section ul {
  padding-left: 1.1em;
  margin-bottom: 8px;
}
.benefits li, .text-section li  {
  margin-bottom: 0.5em;
  font-size: 1rem;
}
ol {
  padding-left: 1.1em;
  margin-bottom: 8px;
}

/* ---------------------------------------------------
   CTA Section
--------------------------------------------------- */
.cta-section {
  background: linear-gradient(110deg, #FFE4B6 0%, #FFD6A0 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 28px 0 rgba(254,180,98,0.09);
  margin-bottom: 62px;
  padding: 44px 20px 46px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section .content-wrapper {
  align-items: center;
  gap: 8px;
}
.cta-section h2 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 12px;
}

.cta-box {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/* ---------------------------------------------------
   Table Styles
--------------------------------------------------- */
.price-table {
  background: var(--color-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-top: 22px;
  padding: 20px 20px 16px 20px;
  overflow-x: auto;
}
.price-table h3 {
  margin-bottom: 14px;
}
.price-table table {
  width: 100%;
  border-collapse: collapse;
}
.price-table td {
  font-size: 1rem;
  padding: 8px 12px;
  border-bottom: 1px solid #F4E8D0;
}
.price-table tr:last-child td {
  border-bottom: none;
}

/* ---------------------------------------------------
   Blog & Search Styles
--------------------------------------------------- */
.blog-index {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.search-bar {
  display: flex;
  gap: 10px;
  align-items: center;
}
.search-bar input[type="text"] {
  width: 100%;
  max-width: 320px;
  padding: 8px 16px;
  border: 1px solid #EAD8BA;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: #FFF7ED;
  color: var(--color-primary);
  outline: none;
  transition: border 0.15s;
}
.search-bar input:focus {
  border: 1.5px solid var(--color-focus);
}
.categories {
  font-size: 1rem;
  color: #936132;
  margin-bottom: 3px;
}
.article-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}
.article-list a {
  color: var(--color-primary);
  padding: 6px 4px;
  transition: color 0.18s, background 0.17s;
  border-radius: var(--radius-sm);
}
.article-list a:hover, .article-list a:focus {
  background: var(--color-accent);
  color: #7B451B;
}

/* ---------------------------------------------------
   Footer Styles
--------------------------------------------------- */
footer {
  background: var(--color-card);
  border-top: 1px solid #f3e8d0;
  padding: 36px 0 20px 0;
  font-size: 1rem;
  box-shadow: 0 0 32px -8px #FFD6A040;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand img {
  height: 36px;
  margin-bottom: 12px;
}
.footer-menus {
  display: flex;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: var(--color-primary);
  padding: 5px 7px;
  border-radius: var(--radius-sm);
  background: none;
  transition: background 0.13s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-accent);
  color: #936132;
}
.contact-details {
  font-style: normal;
  color: #3A4A5C;
  font-size: 1rem;
  margin-top: 7px;
}
.contact-details address {
  font-style: normal;
  color: #3A4A5C;
  line-height: 1.7;
}
.contact-details a {
  font-weight: 500;
  color: var(--color-primary);
}

/* ---------------------------------------------------
   Cookie Consent Banner & Modal
--------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1200;
  background: linear-gradient(90deg, #FFD6A0 70%, #FFF1E1 100%);
  color: #25405C;
  padding: 24px 14px 24px 24px;
  box-shadow: 0 -2px 18px 0 #FFD6A080;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  animation: cookieBannerSlideUp 0.42s cubic-bezier(.42,.85,.21,1);
}
@keyframes cookieBannerSlideUp {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 220px;
}
.cookie-banner__buttons {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  padding: 9px 20px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  transition: background 0.18s, color 0.16s;
  margin: 0;
}
.cookie-banner .accept-cookies {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner .accept-cookies:hover,
.cookie-banner .accept-cookies:focus {
  background: #19416B;
  color: #fff;
}
.cookie-banner .reject-cookies {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid #25405C33;
}
.cookie-banner .reject-cookies:hover,
.cookie-banner .reject-cookies:focus {
  background: var(--color-accent);
  color: #8B5A1E;
}
.cookie-banner .open-settings {
  background: var(--color-warm);
  color: var(--color-primary);
}
.cookie-banner .open-settings:hover,
.cookie-banner .open-settings:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* Cookie settings modal */
.cookie-modal__backdrop {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 1300;
  background: rgba(37,64,92,0.35);
  display: none;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.27s;
}
.cookie-modal__backdrop.open {
  display: flex;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 94vw;
  padding: 36px 24px 28px 24px;
  box-shadow: 0 10px 42px 0 #FFD6A050;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  animation: modalBounceIn .33s cubic-bezier(.4,.8,.2,1.1);
}
@keyframes modalBounceIn {
  0%   { transform: scale(0.92); opacity: 0; }
  85%  { transform: scale(1.05); }
  100% { transform: scale(1.0); opacity: 1; }
}
.cookie-modal__close {
  position: absolute;
  top: 16px;
  right: 12px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #F39121;
  transition: color 0.15s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #92480D;
}
.cookie-modal__header {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 2px;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0 4px 0;
}
.cookie-modal__category-title {
  flex: 1 1 90px;
  font-size: 1.06rem;
  color: #53310A;
}
.cookie-modal__category-toggle {
  font-size: 1.4rem;
  cursor: pointer;
}
.cookie-modal__buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal__footer-note {
  font-size: 0.98rem;
  color: #888;
  margin-top: 13px;
}

/* Essential cookies mention */
.cookie-modal__category .essential {
  font-size: 0.95rem;
  color: #94A3B8;
  margin-left: 10px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
  vertical-align: middle;
}
.toggle-switch input {
  opacity: 0; width: 0; height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 1px; left: 1px;
  right: 1px; bottom: 1px;
  background: #FFD6A0;
  border-radius: 18px;
  transition: background 0.2s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--color-primary);
}
.toggle-slider:before {
  content: "";
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.16s;
}
.toggle-switch input:checked + .toggle-slider:before {
  left: 19px;
}

/* ---------------------------------------------------
   Utility Classes
--------------------------------------------------- */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.justify-center {
  justify-content: center;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.mb-20 { margin-bottom: 20px; }
.mt-20 { margin-top: 20px; }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow-md { box-shadow: var(--shadow-md); }

/* ---------------------------------------------------
   Responsive Styles
--------------------------------------------------- */
@media (max-width: 1180px) {
  .container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 900px) {
  .features-grid, .service-list, .card-container, .testimonials, .content-grid {
    flex-direction: column;
    gap: 24px;
  }
  .service,.feature,.card, .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding-left: 7px; padding-right: 7px; }
  h1 { font-size: 1.52rem; }
  h2 { font-size: 1.22rem; }
  .content-wrapper { gap: 20px; }
  .section {
    padding: 24px 7px;
    margin-bottom: 36px;
  }
  .hero {
    padding: 34px 0 36px 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  .quick-links {
    gap: 10px;
    flex-wrap: wrap;
  }
  .footer-menus, .footer-brand, .contact-details {
    width: 100%;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .cta-section {
    padding: 19px 8px 22px 8px;
    margin-bottom: 32px;
    border-radius: var(--radius-md);
  }
  .cta-main, .cta-secondary {
    font-size: 1rem;
    padding: 12px 20px;
  }
}
@media (max-width: 590px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 7px 15px 8px;
  }
  .cookie-banner__buttons {
    width: 100%;
    flex-direction: column;
    gap: 7px;
    align-items: stretch;
  }
  .cookie-modal {
    padding: 23px 8px 17px 8px;
  }
}
/* Responsive text-image section: stack vertical on mobile */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* Responsive main nav/desktop spacing */
@media (max-width: 430px) {
  .main-nav a {
    font-size: 0.96rem;
    padding: 6px 7px;
  }
  .footer-brand img, header img {
    height: 32px;
  }
}

/* ---------------------------------------------------
   Form / Input Styles
--------------------------------------------------- */
input[type="text"],
input[type="email"],
textarea {
  padding: 9px 13px;
  border: 1.2px solid #E8CDA5;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: #FFF9F1;
  color: #2B415C;
  margin-bottom: 8px;
  outline: none;
  transition: border 0.15s, box-shadow 0.14s;
}
input:focus, textarea:focus {
  border: 1.3px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}
textarea {
  min-height: 80px;
}

/* ---------------------------------------------------
   Buttons and Interactive Elements
--------------------------------------------------- */
button, .cta-main, .cta-secondary {
  cursor: pointer;
  transition: background 0.18s, color 0.17s, box-shadow 0.19s, transform 0.19s;
}

/* ---------------------------------------------------
   Miscellaneous Enhancements
--------------------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
  background: var(--color-accent);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #FFD6A0;
  border-radius: 16px;
}

/* Highlight selection */
::selection {
  background: #FFD6A0;
  color: #2B415C;
}

/* ---------------------------------------------------
   Page-specific Classes
--------------------------------------------------- */
.thank-you-message {
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  padding: 24px 18px 18px 18px;
  font-size: 1.08rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

/* ---------------------------------------------------
   Accessibility
--------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    transition: none !important;
    animation: none !important;
  }
}
