/* ====================================================
   CSS RESET & BASE NORMALIZATION – MOBILE FIRST
   ==================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F7FA;
  color: #233D4D;
  line-height: 1.55;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img, video {
  max-width: 100%;
  display: block;
}
*, *::before, *::after {
  box-sizing: inherit;
}

/* Utility: Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* ====================================================
   TYPOGRAPHY (Modern, Bold)
   ==================================================== */
@import url('https://fonts.googleapis.com/css?family=Oswald:600,700|Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  color: #233D4D;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.14;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.8rem;
  line-height: 1.22;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 600;
}
p, ul, ol {
  margin-bottom: 16px;
}
a {
  color: #F39200;
  text-decoration: none;
  transition: color .18s;
}
a:hover, a:focus {
  color: #233D4D;
  text-decoration: underline;
}
strong, b {
  font-weight: 700;
  color: #233D4D;
}
.subheadline {
  font-size: 1.2rem;
  color: #233D4D;
  margin-bottom: 28px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
hr {
  border: none;
  border-top: 2px solid #F39200;
  margin: 32px 0;
}

/* ====================================================
   BUTTONS (Bold, Modern)
   ==================================================== */
.button-primary, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  border-radius: 32px;
  padding: 14px 32px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background .24s, color .18s, box-shadow .18s, transform .11s;
  margin: 8px 4px 8px 0;
  box-shadow: 0 2px 12px 0 rgba(35,61,77,.07);
}
.button-primary {
  background: #F39200;
  color: #fff;
  box-shadow: 0 2px 18px 0 rgba(243,146,0,.13);
}
.button-primary:hover, .button-primary:focus {
  background: #233D4D;
  color: #F39200;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 16px -4px rgba(35,61,77,.20);
}
.button-secondary {
  background: #233D4D;
  color: #fff;
}
.button-secondary:hover, .button-secondary:focus {
  background: #F39200;
  color: #233D4D;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 16px -4px rgba(243,146,0,.17);
}

/* Active/Focus Accessibility */
.button-primary:active, .button-secondary:active {
  outline: none;
  background: #233D4D !important;
  color: #fff !important;
}

/* ====================================================
   HEADER & NAVIGATION
   ==================================================== */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(35,61,77,0.06);
  position: sticky;
  top: 0;
  z-index: 1500;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 14px 0;
}
.logo-link img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #233D4D;
  padding: 6px 16px;
  transition: color .16s, background .18s;
  border-radius: 24px;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F39200;
  color: #fff;
}
.mobile-menu-toggle {
  display: flex;
  font-size: 2rem;
  background: none;
  border: none;
  color: #233D4D;
  cursor: pointer;
  z-index: 2201;
  padding: 8px 16px;
  border-radius: 32px;
  transition: background .14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F39200;
  color: #fff;
}

/* Hide nav elements on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* ====================================================
   MOBILE BURGER NAVIGATION
   ==================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #233D4D;
  color: #fff;
  z-index: 3000;
  transform: translateX(-100%);
  transition: transform .36s cubic-bezier(.6,.08,.18,1.00);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  z-index: 3500;
  padding: 8px 16px;
  border-radius: 32px;
  transition: background .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F39200;
  color: #233D4D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 72px;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.4rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 0;
  width: 100%;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background .16s;
  border-radius: 0;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F39200;
  color: #233D4D;
}

/* ====================================================
   HERO SECTIONS
   ==================================================== */
.hero-section {
  background: #233D4D;
  color: #fff;
  padding: 60px 0 48px;
  position: relative;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 6px 32px -8px rgba(35,61,77,0.13);
  margin-bottom: 40px;
}
.hero-section h1, .hero-section h2, .hero-section h3, .hero-section .subheadline {
  color: #fff;
}
.hero-section .button-primary {
  background: #fff;
  color: #233D4D;
  font-weight: 700;
  margin-top: 18px;
  box-shadow: 0 2px 16px 0 rgba(243,146,0,.17);
}
.hero-section .button-primary:hover, .hero-section .button-primary:focus {
  background: #F39200;
  color: #fff;
}

/* ====================================================
   SECTION, CONTAINER & FLEX LAYOUTS
   ==================================================== */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
}
.feature-grid, .feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid {
  margin: 16px 0 0 0;
}
.feature-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 14px rgba(35,61,77,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px 20px 24px;
  min-width: 260px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  gap: 12px;
  border: 2.5px solid #F3920022;
  transition: border .19s, box-shadow .19s, transform .11s;
}
.feature-card img {
  height: 42px;
  width: 42px;
}
.feature-card:hover, .feature-card:focus {
  border: 2.5px solid #F39200;
  box-shadow: 0 6px 36px 0 rgba(243,146,0,.16);
  transform: translateY(-3px) scale(1.015);
}

/* ====================================================
   SERVICE GRIDS/LISTS
   ==================================================== */
.service-list, .usp-list, .feature-list, .process-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.service-list li {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(35,61,77,0.06);
  padding: 28px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 6px solid #F39200;
  transition: box-shadow .15s, border-left .16s;
}
.service-list li:hover {
  box-shadow: 0 6px 30px -4px rgba(243,146,0,.13);
  border-left: 6px solid #233D4D;
}
.service-price {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  color: #F39200;
  font-weight: 700;
  margin-bottom: 7px;
}
.service-grid, .feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(35,61,77,0.05);
  padding: 28px 20px;
  min-width: 220px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  border: 2px solid #F3920030;
  transition: border .17s, box-shadow .17s, transform .11s;
}
.service-card:hover {
  border: 2px solid #F39200;
  box-shadow: 0 6px 34px 0 rgba(243,146,0,.12);
  transform: translateY(-3px) scale(1.015);
}

/* ====================================================
   TEXT/IMAGE PAIRING & FLEX SECTIONS
   ==================================================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
/* For responsiveness */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* ====================================================
   TESTIMONIALS & REVIEW CARDS
   ==================================================== */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  color: #233D4D;
  border-radius: 20px;
  box-shadow: 0 3px 20px 0 rgba(35,61,77,0.09);
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 250px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  border: 2.5px solid #F3920012;
  transition: border .17s, box-shadow .16s, transform .13s;
}
.testimonial-card:hover {
  border: 2.5px solid #F39200;
  box-shadow: 0 7px 40px 0 rgba(243,146,0,.13);
  transform: translateY(-3px) scale(1.01);
}
.star-rating {
  color: #F39200;
  font-size: 1.1rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 2px;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #888;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 4px;
}

/* ====================================================
   QUICK LINKS & MISC BUTTONS
   ==================================================== */
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
}

/* ====================================================
   CARD CONTAINER & LAYOUT UTILITY
   ==================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  padding: 24px 20px;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(35,61,77,0.07);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

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

/****************** Alignment Patterns ******************/
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .feature-icons, .testimonial-slider, .testimonial-list, .service-grid, .content-grid {
  gap: 24px;
}
.testimonial-card, .card, .feature-card, .service-card {
  margin-bottom: 20px;
}
.text-image-section, .contact-overview {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section, .contact-overview {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/****************** Contact Overview ******************/
.contact-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.contact-details, .opening-hours, .email-details, .address-map {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 6px 0 rgba(35,61,77,.07);
  padding: 18px 24px;
  min-width: 180px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  border-left: 4px solid #F3920022;
  transition: border .15s, box-shadow .13s;
}
.contact-details:hover, .opening-hours:hover, .email-details:hover, .address-map:hover {
  border-left: 4px solid #F39200;
  box-shadow: 0 4px 20px 0 rgba(243,146,0,.11);
}

/****************** Awards/Certifications ******************/
.awards-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin: 18px 0 10px 0;
  font-size: 1rem;
  color: #233D4D;
}
.awards-certifications img {
  height: 36px;
  width: auto;
  margin-right: 3px;
}

/****************** Sustainability Goals ******************/
.sustainability-goals ul, .partners ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 18px;
}
.environmental-projects, .partners {
  margin-bottom: 22px;
}

/****************** CTA Section ******************/
.cta-section {
  text-align: center;
  justify-content: center;
  align-items: center;
  background: #F39200;
  color: #fff;
  border-radius: 36px;
  box-shadow: 0 1px 10px 0 rgba(35,61,77,0.04);
  margin-bottom: 60px;
  padding: 48px 20px;
}
.cta-section h2, .cta-section p {
  color: #fff;
}
.cta-section a.button-primary {
  margin-top: 16px;
  background: #fff;
  color: #F39200;
}
.cta-section a.button-primary:hover {
  background: #233D4D;
  color: #fff;
}

/****************** FAQ Accordion ******************/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 8px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 10px 0 rgba(35,61,77,0.06);
  padding: 24px 18px;
  border-left: 4px solid #F3920018;
  transition: box-shadow .13s, border-left .12s;
}
.faq-item:hover {
  box-shadow: 0 6px 25px -7px rgba(243,146,0,.10);
  border-left: 4px solid #F39200;
}

/****************** Misc: Deliverables/Steps ******************/
.deliverables ul, .process-steps {
  margin: 0 0 0 20px !important;
  gap: 8px;
  font-size: 1rem;
}

/****************** Footer ******************/
footer {
  background: #233D4D;
  color: #fff;
  padding: 54px 0 18px;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 24px 0 rgba(35,61,77,0.08);
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 14px;
}
.footer-main img {
  height: 36px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.footer-nav a {
  color: #F39200;
  font-weight: 700;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.92;
  border-radius: 8px;
  padding: 4px 10px;
  transition: background .16s, color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  background: #F39200;
}
.footer-legal {
  font-size: 0.97rem;
  opacity: 0.95;
  margin-bottom: 7px;
}
.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 16px;
}
.footer-social a img {
  height: 28px;
  filter: grayscale(20%);
  transition: filter .13s, opacity .17s;
}
.footer-social a:hover img {
  opacity: 0.81;
  filter: grayscale(0%);
}

/****************** Thank You Section ******************/
.thank-you-section {
  background: #fff;
  border-radius: 36px;
  padding: 48px 24px;
  box-shadow: 0 2px 16px 0 rgba(35,61,77,0.07);
  margin: 40px auto;
}
.confirmation-message {
  font-size: 1.18rem;
  color: #F39200;
  margin-bottom: 18px;
}
.next-steps ul {
  margin-left: 20px;
  font-size: 1rem;
  color: #233D4D;
  margin-bottom: 14px;
}

/*******************************************************
   RESPONSIVE DESIGN – MOBILE FIRST
 *******************************************************/
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding-left: 7vw;
    padding-right: 7vw;
  }
  .header-flex {
    gap: 16px;
  }
  .main-nav {
    display: none;
  }
  .hero-section,
  .cta-section {
    padding: 44px 0 36px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .header-flex {
    flex-direction: row;
    gap: 10px;
    min-height: 52px;
    padding: 6px 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.24rem;
  }
  .hero-section, .cta-section { 
    padding: 32px 0 24px;
    border-radius: 0 0 20px 20px;
  }
  .footer-main, .footer-nav, .content-grid, .card-container, .feature-grid, .feature-icons, .testimonial-slider, .testimonial-list, .service-grid, .contact-overview {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: flex-start !important;
  }
  .footer-main {
    margin-bottom: 19px;
  }
}
@media (max-width: 480px) {
  .hero-section, .cta-section {
    padding: 24px 0 18px;
    border-radius: 0 0 8px 8px;
  }
}

/*******************************************************
   TRANSITIONS, MICRO-INTERACTIONS & EFFECTS
 *******************************************************/
.button-primary, .button-secondary, .feature-card, .service-list li, .service-card, .testimonial-card, .faq-item, .mobile-nav a, .mobile-menu-toggle, .mobile-menu-close, .quick-links a {
  transition: background .15s, color .15s, box-shadow .18s, border .17s, transform .13s;
}

/*******************************************************
   COOKIE CONSENT BANNER AND MODAL
 *******************************************************/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #233D4D;
  color: #fff;
  padding: 24px 16px 20px 16px;
  box-shadow: 0 -2px 32px 0 rgba(35,61,77,0.17);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  border-radius: 24px 24px 0 0;
  animation: cookieSlideUp 0.5s ease;
}
@keyframes cookieSlideUp {
  from { transform: translateY(140px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.cookie-consent-banner button {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 24px;
  padding: 12px 28px;
  cursor: pointer;
  margin: 0 4px;
  transition: background .15s, color .14s, box-shadow .15s;
}
.cookie-accept {
  background: #F39200;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #fff;
  color: #F39200;
}
.cookie-reject {
  background: #fff;
  color: #233D4D;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #F39200;
  color: #fff;
}
.cookie-settings-btn {
  background: #233D4D;
  color: #F39200;
  border: 2px solid #F39200;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #F39200;
  color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 11000;
  background: rgba(35,61,77,0.48);
  top: 0; left: 0; width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: fadeIn .31s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #233D4D;
  border-radius: 20px;
  box-shadow: 0 8px 68px 0 rgba(35,61,77,0.18);
  padding: 38px 26px 24px 26px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  animation: scaleIn .34s ease;
}
@keyframes scaleIn {
  from { transform: scale(.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: #F39200;
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-family: 'Oswald', Arial, sans-serif;
}
.cookie-modal ul {
  margin-left: 16px;
  margin-bottom: 8px;
}
.cookie-modal .toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-modal label {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.cookie-modal .cookie-toggle {
  accent-color: #F39200;
  width: 20px;
  height: 20px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 1.6rem;
  color: #888;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 24px;
  transition: background .11s, color .12s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #F39200;
  background: #f6f6f6;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

/*******************************************************
   GEOMETRIC DECORATIVE ELEMENTS (Optional, Brand Flair)
 *******************************************************/
.hero-section::before {
  content: '';
  display: block;
  position: absolute;
  left: -80px;
  top: 16px;
  width: 140px;
  height: 140px;
  background: #F3920028;
  border-radius: 40% 60% 52% 48%/45% 55% 60% 40%;
  z-index: 0;
  pointer-events: none;
}
.hero-section .container,
.hero-section .content-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-section::before {
    display: none;
  }
}

/******************************************************
  PRINT SAFE
 ******************************************************/
@media print {
  * {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
  }
  header, footer, .cookie-consent-banner, .mobile-menu {
    display: none !important;
  }
  .container, .content-wrapper {
    padding: 0 !important;
    margin: 0 !important;
  }
}
