/* 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F5F3E7;
  color: #204E2B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #204E2B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D9A441;
}

/* TYPOGRAPHY */
h1, .display {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #204E2B;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #204E2B;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #204E2B;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #204E2B;
}
p, ul, ol, blockquote, .subheadline {
  margin-bottom: 16px;
}
.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #6D8752;
  margin-bottom: 20px;
  letter-spacing: 0.8px;
}
strong {
  color: #D9A441;
  font-weight: bold;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

/* CONTAINER AND LAYOUT */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(32,78,43,0.09), 0 1.5px 5px rgba(217,164,65,0.10);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 40px rgba(32,78,43,0.16), 0 3px 10px rgba(217,164,65,0.12);
  transform: translateY(-2px) scale(1.012);
  z-index: 2;
}
.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;
  background: #fff;
  color: #204E2B;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(32,78,43,0.07), 0 1.5px 5px rgba(217,164,65,0.09);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 420px;
  flex: 1 1 320px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* GENERAL FLEXBOX GRIDS */
.feature-grid, .service-list, .service-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > .feature, .service-list > div, .service-overview > div {
  background: #fff;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 3px 14px rgba(32,78,43,0.10), 0 0.5px 2px rgba(217,164,65,0.12);
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-grid > .feature:hover,
.service-list > div:hover,
.service-overview > div:hover {
  box-shadow: 0 8px 28px rgba(32,78,43,0.13), 0 2px 7px rgba(217,164,65,0.13);
  transform: translateY(-4px) scale(1.018);
  z-index: 3;
}

/* HERO SECTION */
.hero {
  background: #204E2B;
  background-image: url('../assets/hero-artistic.svg'), linear-gradient(120deg, #204E2B 80%, #D9A441 110%);
  background-size: 60vw auto, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: right 5vw bottom, center;
  color: #fff;
  padding: 70px 0 56px 0;
  position: relative;
}
.hero .container {
  z-index: 2;
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}
.hero h1 {
  color: #fff;
}
.hero .subheadline {
  color: #F5F3E7;
  font-size: 1.13rem;
}
.hero .cta.primary {
  margin-top: 18px;
}

/* CTA BUTTONS */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 50px;
  padding: 13px 38px;
  text-align: center;
  border: none;
  outline: none;
  transition: background 0.22s, color 0.19s, box-shadow 0.18s, transform 0.17s;
  box-shadow: 0 3px 14px rgba(217,164,65,0.09);
}
.cta.primary {
  background: #D9A441;
  color: #204E2B;
  border: 2.5px solid #D9A441;
}
.cta.primary:hover, .cta.primary:focus {
  background: #204E2B;
  color: #fff;
  border-color: #204E2B;
  box-shadow: 0 8px 24px rgba(217,164,65,0.16);
  transform: translateY(-1px) scale(1.02);
}
.cta.secondary {
  background: transparent;
  border: 2px solid #D9A441;
  color: #204E2B;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #D9A441;
  color: #fff;
  box-shadow: 0 8px 20px rgba(217,164,65,0.10);
  transform: scale(1.01);
}

/* NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 3px 14px rgba(32,78,43,0.06);
  border-radius: 0 0 24px 24px;
  margin-bottom: 0;
  position: relative;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 12px;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
  margin-right: 12px;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  color: #204E2B;
  padding: 6px 8px;
  border-radius: 7px;
  position: relative;
  transition: color 0.16s, background 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #D9A441;
  background: #FAEBCD;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #204E2B;
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.18s;
  z-index: 113;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #D9A441;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw; height: 100vh;
  background: #204E2B;
  color: #fff;
  z-index: 120;
  transform: translateX(-110%);
  transition: transform 0.33s cubic-bezier(0.8,0.35,0.28,1), opacity 0.25s;
  opacity: 0.96;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.7rem;
  padding: 18px 20px 6px 18px;
  align-self: flex-end;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  align-items: flex-start;
  padding: 24px 32px 20px 32px;
  margin-top: 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 12px 2px 10px 0;
  border-radius: 7px;
  transition: background 0.16s, color 0.18s;
  outline: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #D9A441;
  color: #204E2B;
}

/* Hide desktop nav on mobile, show toggle */
@media (max-width: 950px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
/* Hide mobile menu on desktop */
@media (min-width: 951px) {
  .mobile-menu {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: #204E2B;
  color: #F5F3E7;
  padding: 44px 0 26px 0;
  border-radius: 28px 28px 0 0;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #F5F3E7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.92;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #D9A441;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.86;
}
.footer-brand img{
  width: 44px;
  height: 44px;
}
.footer-brand span {
  font-size: 1rem;
}

/* ARTISTIC ICONS & ELEMENTS */
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  filter: drop-shadow(0 1.5px 2.5px rgba(32,78,43,0.13));
}

/* CARD & EXPERIENCE SECTIONS */
.service-overview > div, .service-list > div, .feature-list > ul > li, .features ul > li {
  font-size: 1.04rem;
}
.service-overview > div, .service-list > div {
  min-width: 240px;
}

/* TESTIMONIALS */
.testimonials {
  background: #FAEBCD;
  border-radius: 26px;
  padding: 40px 0;
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  min-width: 270px;
  max-width: 420px;
}
.testimonial-rating {
  font-size: 1.5rem;
  color: #D9A441;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 4px;
  font-weight: bold;
  margin-right: 8px;
}
.testimonial-card blockquote {
  color: #204E2B;
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 0;
  position: relative;
}
.testimonial-card footer {
  margin-top: 10px;
  font-size: 0.97rem;
  font-style: normal;
  color: #6D8752;
  font-weight: 500;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(32,78,43,0.07), 0 1.5px 3px rgba(217,164,65,0.08);
  padding: 20px 26px;
  cursor: pointer;
  transition: box-shadow 0.16s, transform 0.15s;
  position: relative;
}
.faq-item h3 {
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  color: #D9A441;
}
.faq-answer {
  font-size: 0.98rem;
  color: #204E2B;
  padding-top: 4px;
  max-height: 1500px;
  overflow: hidden;
  transition: max-height 0.28s cubic-bezier(0.8, 0, 0.2, 1);
}
.faq-item:not(.open) .faq-answer {
  max-height: 0 !important;
  padding-top: 0;
  opacity: 0.4;
  pointer-events: none;
}
.faq-item.open {
  box-shadow: 0 7px 30px rgba(32,78,43,0.12);
  background: #FAEBCD;
  transform: scale(1.012);
  z-index: 2;
}
.faq-item:not(.open) h3::after {
  content: '▼';
  float: right;
  font-size: 1rem;
  color: #D9A441;
  margin-left: 14px;
}
.faq-item.open h3::after {
  content: '▲';
}

/* ABOUT, LEGAL, THANK YOU */
.about, .about-philosophy, .about-team, .awards-partnerships,
.legal, .thank-you-message, .contact {
  background: #fff;
  border-radius: 26px;
  margin-bottom: 60px;
  padding: 44px 0 32px 0;
}
.about ul, .about-philosophy ul, .feature-list ul {
  margin-left: 14px;
  margin-bottom: 20px;
}
.about ul li, .about-philosophy ul li, .features ul li, .feature-list ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 1.06rem;
  color: #204E2B;
  line-height: 1.7;
}
.about ul li::before, .about-philosophy ul li::before, 
.features ul li::before, .feature-list ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #D9A441;
  font-size: 1.09rem;
  line-height: 1;
}

/* MAP EMBED, CONTACT DETAILS */
.map-embed {
  margin-top: 14px;
  background: #FAEBCD;
  border-radius: 10px;
  padding: 18px 12px;
  text-align: center;
  font-size: 1.01rem;
  color: #204E2B;
  font-style: italic;
  opacity: 0.84;
}
.contact-details ul {
  list-style: none;
  margin-left: 0;
}
.contact-details li {
  margin-bottom: 10px;
  color: #204E2B;
}
.contact-details a {
  color: #D9A441;
  text-decoration: underline dotted;
}
.contact-details a:hover,
.contact-details a:focus {
  color: #204E2B;
  background: #FAEBCD;
  border-radius: 4px;
}

/* CTA SECTION (section.cta) */
section.cta {
  background: #D9A441;
  border-radius: 21px;
  padding: 36px 0 34px 0;
  text-align: center;
  margin-bottom: 60px;
  color: #204E2B;
  box-shadow: 0 2.5px 20px rgba(217,164,65,0.13);
}
section.cta h2 {
  margin-bottom: 18px;
}
section.cta .cta {
  font-size: 1.08rem;
}

/* LEGAL/IMPRINT SECTIONS */
.legal h1, .legal h2, .legal h3 {
  color: #204E2B;
  margin-bottom: 18px;
}
.legal ul li {
  color: #204E2B;
}

/* THANK YOU PAGE */
.thank-you-message .cta.primary {
  margin-top: 28px;
}

/* MODERN ARTISTIC FONTS UTIL */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* SPACING & GAPS */
.section, .about, .about-philosophy, .about-team, .awards-partnerships, .legal, .thank-you-message, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* Add gap for all content sections */
.content-wrapper, .feature-grid, .service-list, .service-overview, .testimonial-slider, .faq-accordion, .footer-nav {
  gap: 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container {
    max-width: 95vw;
    padding-left: 16px;
    padding-right: 16px;
  }
  .footer-brand img {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .service-overview, .testimonial-slider {
    flex-direction: column;
    gap: 22px;
  }
  .service-overview > div, .service-list > div, .feature-grid > .feature, .testimonial-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
}
@media (max-width: 760px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .hero {
    padding: 45px 0 32px 0;
  }
  .hero h1 {
    font-size: 1.7rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.3rem;
  }
  .section, .about, .about-philosophy, .about-team, .awards-partnerships, .legal, .thank-you-message, .contact {
    padding: 26px 4px 18px 4px;
    border-radius: 14px;
    margin-bottom: 40px;
  }
  .feature-grid, .service-list, .service-overview, .testimonial-slider {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card {
    padding: 15px;
    min-width: 0;
  }
  section.cta {
    padding: 22px 0 20px 0;
    border-radius: 13px;
  }
  .footer-nav {
    gap: 12px;
    font-size: 0.98rem;
  }
  .footer-brand img {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* SMOOTH HOVER & FOCUS EFFECTS */
button, .cta, .main-nav a, .mobile-nav a, .faq-item h3 {
  transition: background 0.19s, color 0.17s, box-shadow 0.18s, transform 0.14s, outline 0.14s;
}
button:focus, a:focus {
  outline: 2px dashed #D9A441;
  outline-offset: 1px;
}

/* MICRO-INTERACTIONS */
.cta:active, .main-nav a:active, .mobile-nav a:active {
  transform: scale(0.97);
}
.faq-item:active {
  transform: scale(1.01);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #204E2B;
  color: #fff;
  z-index: 250;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 22px 12px 22px 12px;
  box-shadow: 0 -2px 12px rgba(32,78,43,0.13);
  font-size: 1.03rem;
  transition: transform 0.36s cubic-bezier(0.65,0,0.14,1), opacity 0.21s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  max-width: 410px;
  margin-bottom: 0;
  color: #fff;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
}
.cookie-banner button, .cookie-banner .cookie-settings {
  background: #D9A441;
  color: #204E2B;
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 700;
  padding: 9px 26px;
  margin-left: 0;
  cursor: pointer;
  margin-right: 5px;
  transition: background 0.18s, color 0.16s, box-shadow 0.18s;
}
.cookie-banner button:hover, .cookie-banner button:focus, .cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #204E2B;
  color: #fff;
  border: 2px solid #D9A441;
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(32,78,43,0.34);
  z-index: 260;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #204E2B;
  border-radius: 17px;
  min-width: 335px;
  max-width: 97vw;
  box-shadow: 0 8px 48px rgba(32,78,43,0.17);
  padding: 32px 32px 24px 32px;
  z-index: 300;
  font-size: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modalIn 0.27s cubic-bezier(0.32,1,0.19,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(70px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.30rem;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-modal .category-name {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #204E2B;
}
.cookie-modal .category-desc {
  font-size: 0.98rem;
  color: #6D8752;
}
.cookie-modal .toggle-switch {
  width: 46px;
  height: 26px;
  background: #FAEBCD;
  border-radius: 16px;
  position: relative;
  transition: background 0.23s;
  cursor: pointer;
  margin-left: 13px;
  border: 2px solid #D9A441;
}
.cookie-modal .toggle-switch[aria-checked='true'] {
  background: #D9A441;
}
.cookie-modal .toggle-switch::before {
  content: '';
  position: absolute;
  top: 2.5px; left: 4px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(216,164,65,0.12);
  transition: left 0.18s, background 0.14s;
}
.cookie-modal .toggle-switch[aria-checked='true']::before {
  left: 20px;
  background: #204E2B;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  background: #D9A441;
  color: #204E2B;
  border: none;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 23px;
  font-size: 1rem;
  transition: background 0.17s, color 0.14s;
}
.cookie-modal .cookie-modal-actions button:hover,
.cookie-modal .cookie-modal-actions button:focus {
  background: #204E2B;
  color: #fff;
  border: 2px solid #D9A441;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 7px; right: 10px;
  background: none;
  border: none;
  color: #204E2B;
  opacity: 0.65;
  font-size: 2.1rem;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.16s, color 0.12s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: #D9A441;
  opacity: 1;
}

@media (max-width: 530px) {
  .cookie-modal {
    padding: 19px 6vw 14px 6vw;
    min-width: 0;
  }
}

/* UNIQUE ARTISTIC DECORATIVE ELEMENTS */
.section-title {
  position: relative;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #204E2B;
  font-size: 2rem;
  font-weight: 700;
  padding-left: 0;
  z-index: 1;
}
.section-title::before {
  content: '';
  display: block;
  width: 64px;
  height: 6px;
  background: #D9A441;
  border-radius: 6px;
  position: absolute;
  left: -6px;
  top: -17px;
  opacity: 0.67;
}

/* UTILITIES */
.hide {
  display: none !important;
}

/* ENSURE ADEQUATE SPACING BETWEEN CARDS */
/*.card:not(:last-child),*/
.card + .card, 
.feature + .feature, 
.service-list > div + div, 
.service-overview > div + div,
.testimonial-card + .testimonial-card {
  margin-left: 0;
  margin-top: 20px;
}

/* PREVENT OVERLAPPING */
.card, .feature, .testimonial-card, .faq-item, .service-list > div, .service-overview > div {
  box-sizing: border-box;
  z-index: 1;
}

/* PRINT FRIENDLY */
@media print {
  header, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay, footer {
    display: none !important;
  }
  body {
    background: #fff !important;
    color: #222 !important;
  }
}
