/* 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, main, 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #FFF;
  color: #23243c;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #FCF7F2;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1A8CFF;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FF9500;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
}
/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Roboto:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #222B45;
  line-height: 1.15;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.33rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; }
p, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #333540;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px; padding-left: 20px; position: relative;
}
ul li:before, ol li:before {
  content: ''; display: inline-block; width: 6px; height: 6px; background: #FFB869; border-radius: 50%; position: absolute; left: 0; top: 10px;
}
strong, b {
  font-weight: 600;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(255,120,48,0.07);
}
@media (max-width: 900px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    padding-left: 0; padding-right: 0;
  }
  .section {
    padding: 28px 10px;
    margin-bottom: 32px;
  }
}


/* HEADER & NAVIGATION */
header {
  background: #FFF;
  box-shadow: 0 1px 8px rgba(215,140,45,0.03);
  border-bottom: 1px solid #F7E6D8;
  position: sticky;
  top: 0; left: 0; width: 100%;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  border-radius: 15px;
  padding: 8px 0;
  transition: background 0.2s;
}
.logo img {
  height: 44px;
}
nav {
  display: flex;
}
nav a {
  font-size: 1rem;
  color: #222B45;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a:focus {
  background: #fff4df;
  color: #c95b00;
}
.btn-primary {
  background: #FFB869;
  color: #222B45;
  border-radius: 24px;
  padding: 12px 28px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(255,120,48,0.11);
  border: none;
  transition: background 0.18s, box-shadow 0.2s, color 0.18s;
  margin-left: 20px;
  display: inline-block;
  letter-spacing: 0.03em;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFA83B;
  color: #fff;
  box-shadow: 0 6px 24px rgba(238, 83, 0, 0.13);
}
.btn-secondary {
  background: #FFF3E0;
  color: #AE410C;
  border-radius: 24px;
  padding: 11px 28px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  border: 1.5px solid #FFD993;
  box-shadow: 0 2px 6px rgba(255,120,48,0.07);
  margin-top: 6px;
  margin-bottom: 6px;
  transition: background 0.18s, border 0.12s, color 0.12s, box-shadow 0.18s;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FFE2B6;
  color: #C95B00;
  border-color: #FFB869;
  box-shadow: 0 6px 18px rgba(255,186,60,0.09);
}

@media (max-width: 900px) {
  header .container {
    height: 64px;
  }
  nav {
    gap: 14px;
  }
  .btn-primary {
    margin-left: 0;
    padding: 11px 15px;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu-toggle {
  display: none;
  background: #FFB869;
  color: #222B45;
  font-size: 2rem;
  border-radius: 12px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 101;
  border: none;
  margin-left: 10px;
  transition: background 0.18s, color 0.13s;
  cursor: pointer;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFA83B;
  color: #fff;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  z-index: 999;
  top: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 248, 235, 0.98);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.23,0.67,0.34,1.13);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
  box-shadow: 0 4px 36px rgba(220,149,55,0.11);
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: #FFD993;
  border-radius: 12px;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  color: #222b45;
  margin: 22px 20px 0 0;
  align-items: center;
  display: flex;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255,120,48,0.13);
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFA83B;
  color: #fff;
}
.mobile-nav {
  margin-top: 32px;
  padding: 18px 35px 0 40px;
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: transparent;
  z-index: 1;
  min-height: 320px;
}
.mobile-nav a {
  color: #222B45;
  background: #fff;
  border-radius: 15px;
  font-size: 1.09rem;
  padding: 13px 14px;
  letter-spacing: 0.01em;
  margin-right: 0;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(255,120,48,0.04);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.16s, color 0.13s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFEBCC;
  color: #FF8700;
}

@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(180deg, #FFE5B6 0%, #FFF3E1 100%);
  padding: 56px 0 26px 0;
  position: relative;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 5px 26px rgba(255, 184, 105, 0.07);
}
.hero-section h1 {
  color: #C95B00;
  font-size: 2.6rem;
  margin-bottom: 18px;
}
.hero-section p {
  font-size: 1.2rem;
  max-width: 570px;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 34px 0 16px 0;
    border-radius: 0 0 18px 18px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
}

/* FEATURE & CARD GRID (FLEXBOX) */
.features-grid,
.services-preview,
.services-list,
.usp-row,
.testimonials-row,
.blog-preview,
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid {
  gap: 24px;
  margin-top: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF8F3;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(255,139,16,0.07);
  padding: 24px 22px 18px 22px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.19s;
}
.feature-item img {
  width: 44px; height: 44px;
}
.feature-item:hover, .feature-item:focus-visible {
  box-shadow: 0 6px 18px rgba(252,149,60,0.13);
  transform: translateY(-2px) scale(1.025);
}

.services-preview > div, .services-list .service-item {
  background: #FDF6EC;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(255,163,33,0.06);
  padding: 23px 20px 16px 20px;
  margin-bottom: 20px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.15s;
}
.services-preview > div:hover, .services-list .service-item:hover {
  box-shadow: 0 8px 21px rgba(252,149,60,0.14);
  transform: scale(1.021);
}
.services-preview img, .service-item img {
  width: 40px; height: 40px; margin-bottom: 10px;
}
.services-preview h3, .service-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.services-preview span, .service-item span {
  color: #C95B00;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 10px;
}

.usp-row, .testimonials-row {
  gap: 28px;
}
.usp-item {
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 330px;
  background: #FFF7EB;
  border-radius: 19px;
  box-shadow: 0 2px 10px rgba(239,182,88,0.08);
  padding: 22px 18px 14px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.13s;
}
.usp-item:hover, .usp-item:focus-visible {
  box-shadow: 0 6px 18px rgba(252,156,26,0.13);
  transform: translateY(-2px) scale(1.025);
}
.usp-item img {
  width: 36px; height: 36px; margin-bottom: 10px;
}

.blog-list article, .blog-preview article {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 1px 6px rgba(255,184,60,0.06);
  padding: 22px 20px 14px 20px;
  margin-bottom: 20px;
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.14s;
}
.blog-list article h3, .blog-preview article h3 {
  font-size: 1.1rem;
}
.blog-list article:hover, .blog-preview article:hover {
  box-shadow: 0 6px 19px rgba(252,149,60,0.12);
  transform: scale(1.017);
}
.blog-list article a, .blog-preview article a {
  color: #C95B00;
  text-decoration: underline;
  margin-top: 12px;
  font-weight: 500;
}

/* TESTIMONIALS */
.testimonials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 28px 16px 28px;
  background: #FFFBE9;
  border-radius: 22px;
  box-shadow: 0 2px 14px rgba(255,135,0,0.10);
  min-width: 230px;
  max-width: 350px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.1s;
  border: 1.5px solid #FFD382;
}
.testimonial-card p {
  color: #2F2435;
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: #AE410C;
  font-size: 1rem;
  margin-bottom: 8px;
}
.testimonial-card .stars img {
  width: 21px; height: 21px; margin-right: -3px;
  display: inline-block;
}
.testimonial-card .stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.testimonial-card:hover, .testimonial-card:focus-visible {
  box-shadow: 0 8px 25px rgba(255, 163, 33, 0.11);
}

/* TEXT SECTION */
.text-section {
  margin-bottom: 12px;
  padding-left: 2px;
}
.text-section ul {
  margin-top: 8px;
  margin-bottom: 8px;
}
.text-section ul li {
  color: #C95B00;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 1.02rem;
}
.text-section a {
  color: #1A8CFF;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.18s;
}
.text-section a:hover {
  color: #C95B00;
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.contact-info > div {
  background: #FFF7EB;
  border-radius: 15px;
  padding: 16px 18px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  align-items: center;
  font-size: 1.01rem;
  color: #AE410C;
  font-weight: 500;
  gap: 10px;
  box-shadow: 0 1px 4px rgba(255,149,60,0.06);
}
.contact-info img {
  width: 22px; height: 22px;
}
.contact-info a {
  color: #1A8CFF;
  font-weight: 500;
  text-decoration: underline;
}

/* BLOG FILTERS */
.blog-filters {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0 28px 0;
}
.blog-filters label {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #AE410C;
  font-size: 1rem;
}
.blog-filters select, .blog-filters input[type="search"] {
  padding: 7px 14px;
  border-radius: 10px;
  border: 1px solid #FFD585;
  font-size: 1rem;
  background: #FFFDF7;
  color: #C95B00;
}

/* FOOTER */
footer {
  background: #FFEAC8;
  border-radius: 28px 28px 0 0;
  padding: 36px 0 30px 0;
  box-shadow: 0 -4px 38px rgba(255,186,40,0.13);
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.18rem;
  color: #C95B00;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
}
.footer-brand img {
  width: 34px;
  height: 34px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #C95B00;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 8px;
  padding: 7px 10px;
  transition: background 0.18s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFB869;
  color: #222B45;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #7D4B13;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-contact address {
  font-style: normal;
  color: #C95B00;
  font-weight: 600;
  margin-bottom: 3px;
}
.footer-contact img {
  width: 18px; height: 18px; margin-right: 4px;
}
.footer-contact a {
  color: #1A8CFF;
  text-decoration: underline;
  font-weight: 600;
}

/* RESPONSIVE: MOBILE-FIRST ADJUSTMENTS */
@media (max-width: 1100px) {
  .footer-contact, .footer-brand, .footer-nav {
    font-size: 0.98rem;
  }
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: calc(100vw - 14px);
  }
  .features-grid, .services-preview, .services-list, .usp-row, .testimonials-row, .blog-preview, .blog-list, .contact-info {
    gap: 14px;
  }
  .feature-item, .service-item, .usp-item, .testimonial-card, .blog-list article, .blog-preview article, .contact-info > div {
    min-width: 100%;
    max-width: 100vw;
    padding: 16px 12px;
  }
  .footer-brand, .footer-contact, .footer-nav {
    width: 100%;
    justify-content: flex-start;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .hero-section, .section {
    padding-left: 8px; padding-right: 8px;
    margin-bottom: 28px;
    border-radius: 12px;
  }
  .features-grid, .services-preview, .services-list, .usp-row, .testimonials-row, .blog-preview, .blog-list, .contact-info {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
    align-items: stretch;
  }
  h1 { font-size: 1.6rem; margin-bottom: 18px; }
  h2 { font-size: 1.23rem; margin-bottom: 14px; }
}

/* CTA ANIMATION (MICRO-INTERACTION) */
.btn-primary, .btn-secondary {
  transition: background 0.17s, color 0.13s, transform 0.13s, box-shadow 0.16s;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.97);
  box-shadow: 0 1px 5px rgba(255,120,48,0.08);
}

/* SECTIONS: SPACING & ALIGNMENT */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 6px rgba(255,184,60,0.06);
  padding: 20px 18px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* BUTTON & LINK FOCUS STYLES (ACCESSIBILITY) */
button:focus, .btn-primary:focus, .btn-secondary:focus, a:focus {
  outline: 2px solid #FFD382;
  outline-offset: 2px;
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1101;
  background: #FFE5B6;
  box-shadow: 0 -2px 32px rgba(252,184,60,0.13);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 20px 24px;
  gap: 18px;
}
.cookie-banner p {
  flex: 1 1 220px;
  font-size: 1rem;
  color: #6B5114;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner button,
.cookie-banner .btn-cookie-set {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 16px;
  border: none;
  padding: 10px 20px;
  margin: 0;
  font-size: 0.98rem;
  font-weight: 500;
  background: #FFB869;
  color: #222B45;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(255,120,48,0.10);
  transition: background 0.16s, color 0.12s, transform 0.10s;
  outline: none;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FFA83B;
  color: #FFF;
}
.cookie-banner .btn-cookie-set {
  background: #EEE5D4;
  color: #8C6B26;
  border: 1.5px solid #FFD993;
}
.cookie-banner .btn-cookie-set:hover, .cookie-banner .btn-cookie-set:focus {
  background: #FFE2B6;
  color: #C95B00;
  border-color: #FFB869;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 8px;
    gap: 14px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(244, 225, 186, 0.82);
  z-index: 1111;
  display: none;
  justify-content: center;
  align-items: center;
  animation: cookieModalIn 0.23s cubic-bezier(0.24,0.7,0.33,1.17);
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal {
  background: #FFFBEF;
  border-radius: 22px;
  box-shadow: 0 8px 36px rgba(255,184,60,0.15);
  padding: 34px 32px 28px 32px;
  min-width: 320px;
  max-width: 98vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal h2 {
  color: #C95B00;
  margin-bottom: 8px;
  font-size: 1.28rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  background: #FFF4DD;
  padding: 10px 14px;
  border-radius: 15px;
  color: #474029;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
}
.cookie-category.essential {
  color: #B77619;
  font-style: italic;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  accent-color: #FFB869;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-close-modal {
  background: #FFD993;
  border-radius: 12px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 1.4rem;
  color: #AE410C;
  position: absolute;
  top: 18px;
  right: 19px;
  cursor: pointer;
  transition: background 0.16s, color 0.12s;
  display: flex;
}
.cookie-modal .cookie-close-modal:hover, .cookie-modal .cookie-close-modal:focus {
  background: #FFA83B;
  color: #FFF;
}

@media (max-width: 520px) {
  .cookie-modal {
    min-width: 95vw;
    padding: 18px 7px 14px 7px;
  }
}

/* Hide by default for accessibility */
.cookie-banner, .cookie-modal-overlay {
  display: none;
}
.cookie-banner.active {
  display: flex;
}
.cookie-modal-overlay.open {
  display: flex;
}

/* MICRO-INTERACTIONS */
.card:hover, .card:focus-visible {
  box-shadow: 0 8px 25px rgba(255, 163, 33, 0.13);
  transform: translateY(-2px) scale(1.015);
}

/* UTILITY */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.gap-16 { gap: 16px; }
.text-center { text-align: center; }

/* Scrollbar Styling */
::-webkit-scrollbar { width: 12px; background: #FFEFD7; }
::-webkit-scrollbar-thumb { background: #FFD382; border-radius: 8px; }

/* PRINT STYLES (Minimal for friendly look) */
@media print {
  body, html { color: #23243c; background: #fff; }
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .container, .content-wrapper, .section, section {
    max-width: none; padding: 0; margin: 0;
  }
  .card, .feature-item, .testimonials-row, .services-preview, .service-item {
    box-shadow: none !important; background: #fff !important;
  }
}
