/* -----------------------
   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;
}
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }

body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F6F8FA;
  color: #332A1B;
  min-height: 100vh;
  line-height: 1.75;
  font-size: 16px;
  transition: background 0.35s;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
a {
  color: #1B2233;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #E1B035;
}
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Exo', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #1B2233;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }

@media (max-width: 600px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.2rem; }
}

p, ul, ol {
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: #332A1B;
}

.container {
  width: 100%;
  max-width: 1160px;
  padding: 0 16px;
  margin: 0 auto;
}

/* Spacing and Layout Patterns */
.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: 20px;
  box-shadow: 0 4px 16px rgba(225,176,53,0.07), 0 2px 4px rgba(27,34,51,0.06);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.18s;
  min-width: 260px;
  flex: 1;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 24px rgba(225,176,53,0.14), 0 2px 8px rgba(27,34,51,0.10);
  transform: translateY(-3px) 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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fffbe7;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(225, 176, 53, 0.16), 0 1.5px 3px rgba(27,34,51,0.09);
  margin-bottom: 20px;
  max-width: 520px;
  transition: box-shadow 0.2s;
}
.testimonial-card .stars {
  color: #E1B035;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Utility, Typography & Base Elements */
.text-section {
  max-width: 760px;
  margin: 0 auto 20px auto;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  background: #E1B035;
  color: #1B2233;
  border: none;
  font-family: 'Exo', 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  padding: 13px 30px;
  border-radius: 28px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(225,176,53,0.10);
  margin-top: 14px;
  margin-bottom: 12px;
  transition: background 0.17s, box-shadow 0.17s, color 0.17s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F8D770;
  color: #1B2233;
}

li img, .contact-snippet img, .footer-nav img {
  margin-right: 10px;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: transparent;
}

ul > li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
  font-size: 1.04rem;
}

/* ---------------------------
   HEADER & NAVIGATION
----------------------------- */
header {
  background: #fff;
  box-shadow: 0 1.5px 8px rgba(27,34,51,0.06);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}
header > a > img {
  height: 46px;
  vertical-align: middle;
  margin: 18px 36px 12px 0;
  border-radius: 12px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 0;
  font-family: 'Exo', 'Roboto', sans-serif;
}
.main-nav a {
  color: #1B2233;
  font-size: 1.01rem;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 500;
  transition: background 0.19s, color 0.19s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFF5DA;
  color: #E1B035;
}

/* Hide mobile menu by default */
.mobile-menu-toggle {
  display: none;
  background: #fffbe7;
  border: none;
  font-size: 2.1rem;
  color: #E1B035;
  border-radius: 50%;
  padding: 7px 15px;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.13s, box-shadow 0.13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #fff3c4;
  box-shadow: 0 2px 9px rgba(225,176,53,0.12);
}

@media (max-width: 1024px) {
  .main-nav { gap: 12px; }
}
@media (max-width: 890px) {
  header > a > img {
    height: 36px;
    margin-right: 14px;
  }
  .container { padding: 0 7px; }
}
@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}

/* --- Mobile Menu Overlay --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(246,248,250,0.98);
  z-index: 20000;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.36,0.65,0.7,1);
  display: flex;
  flex-direction: column;
  padding: 32px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: #E1B035;
  border: none;
  font-size: 2.3rem;
  margin: 12px 28px 18px 0;
  cursor: pointer;
  padding: 2px 14px;
  border-radius: 50%;
  transition: background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff3c4;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 36px 0 0 40px;
}
.mobile-nav a {
  font-size: 1.28rem;
  font-family: 'Exo', 'Roboto', sans-serif;
  color: #1B2233;
  padding: 10px 0;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.14s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFF5DA;
  color: #E1B035;
}
@media (min-width: 821px) {
  .mobile-menu, .mobile-menu-toggle, .mobile-menu-close { display: none !important; }
}
/* Focus visible outline for nav links */
.main-nav a:focus-visible, .mobile-nav a:focus-visible {
  outline: 2.5px solid #E1B035;
  outline-offset: 2px;
}

header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  min-height: 76px;
}

/* ------------------------------
     MAIN LAYOUT SECTIONS
------------------------------- */
section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 8px rgba(225,176,53,0.03), 0 1px 3px rgba(27,34,51,0.05);
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 700px) {
  section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
}

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

/* ---------------------
      FOOTER STYLES
---------------------- */
footer {
  background: #fffbe7;
  box-shadow: 0 -2.5px 10px rgba(225,176,53,0.10);
  padding: 32px 0 0 0;
  margin-top: 64px;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-bottom: 20px;
}
.footer-content img {
  height: 42px;
  border-radius: 14px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: #1B2233;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 13px;
  border-radius: 8px;
  transition: background 0.1s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #fff3c4;
  color: #E1B035;
}
.contact-snippet {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  font-size: 0.98rem;
  text-align: center;
  color: #614f23;
}
.footer-social { display: flex; gap: 22px; margin-top: 6px; }
.copyright {
  font-size: 0.93rem;
  color: #96752e;
  margin-top: 6px;
}
@media (max-width: 650px) {
  .footer-content {
    gap: 18px;
    padding-bottom: 10px;
  }
  .footer-nav {
    gap: 12px;
  }
}

/* --------------------
    COOKIE CONSENT
--------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe7;
  border-top: 2.5px solid #E1B035;
  box-shadow: 0 -2px 18px rgba(27,34,51,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 22px 24px;
  z-index: 50000;
  transition: transform 0.33s cubic-bezier(.7,.17,.7,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner-text {
  flex: 2;
  color: #1B2233;
  font-size: 1.11rem;
}
.cookie-banner-actions {
  display: flex;
  gap: 18px;
}
.cookie-btn {
  padding: 9px 20px;
  font-size: 1rem;
  font-family: 'Exo', 'Roboto', sans-serif;
  border-radius: 21px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 1.5px 4px rgba(225,176,53,0.08);
  transition: background 0.14s, color 0.14s;
}
.cookie-btn.accept {
  background: #E1B035;
  color: #1B2233;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #ffe07f;
}
.cookie-btn.reject {
  background: #fff3c4;
  color: #614f23;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #f8efd0;
  color: #b48204;
}
.cookie-btn.settings {
  background: transparent;
  color: #1B2233;
  border: 1.7px solid #E1B035;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #fffbe2;
  color: #E1B035;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 16px 10px;
  }
  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }
}
/* ------------ COOKIE MODAL ---------- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(27,34,51,0.22);
  z-index: 50100;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.21s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 4px 32px rgba(225,176,53,0.18), 0 2px 10px rgba(27,34,51,0.11);
  max-width: 420px;
  width: 92vw;
  padding: 38px 26px 26px 26px;
  z-index: 50200;
  animation: cookieModalIn 0.37s cubic-bezier(.6,.16,.73,1);
  display: flex;
  flex-direction: column;
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translateY(60px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1.0); }
}
.cookie-modal h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: #1B2233;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cookie-category label {
  font-size: 1.04rem;
  color: #1B2233;
}
.cookie-category input[type="checkbox"] {
  appearance: none;
  width: 38px; height: 22px;
  background: #f6f8fa;
  border: 1px solid #bbb;
  border-radius: 12px;
  position: relative;
  transition: background 0.17s;
  outline: none;
  cursor: pointer;
}
.cookie-category input[type="checkbox"]:checked {
  background: #E1B035;
}
.cookie-category input[type="checkbox"]:before {
  content: '';
  position: absolute;
  left: 3px;  top: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.5px 4px rgba(27,34,51,0.08);
  transition: transform 0.16s;
}
.cookie-category input[type="checkbox"]:checked:before {
  transform: translateX(15px);
}
.cookie-category input[type="checkbox"][disabled] {
  cursor: not-allowed;
  opacity: 0.63;
}
.cookie-category-description {
  font-size: 0.98rem;
  color: #634f23;
  margin-left: 8px;
  margin-bottom: 7px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Exo', 'Roboto', sans-serif;
  font-size: 1rem;
  padding: 9px 18px;
  border-radius: 20px;
}

/* ------------------------------------
    MICRO-INTERACTIONS & TRANSITIONS
------------------------------------ */
.card, .testimonial-card, .cta-btn, .cookie-btn {
  transition: box-shadow 0.18s, background 0.19s, color 0.19s, transform 0.15s;
}

@media (max-width: 650px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card { max-width: 100%; }
  .footer-content {
    gap: 14px;
  }
}

/* ----------- Accessibility ----------- */
:focus-visible {
  outline: 2.5px solid #E1B035;
  outline-offset: 2px;
}

/* Special blocks */
.trend-charts, .text-section, .feature-list {
  margin-bottom: 18px;
}

/* Table (For tabular comparison, even though not given: add modern styling) */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  background: #fff;
  margin-bottom: 14px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(225,176,53,0.09);
}
th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #f1e3b2;
}
th {
  background: #f6f8fa;
  color: #795e13;
  font-weight: 700;
}

/* ---------------------
   RESPONSIVE ADJUSTMENTS
----------------------- */
@media (max-width: 1020px) {
  .container { max-width: 100vw; }
}
@media (max-width: 900px) {
  .footer-content { padding-bottom: 7px; }
  .footer-nav { font-size: 0.95rem; }
}
@media (max-width: 600px) {
  .container { padding: 0 3vw; }
  section { padding: 16px 5px; }
}

/* Custom Scrollbar */
body::-webkit-scrollbar {
  width: 12px;
  background: #fffbe7;
}
body::-webkit-scrollbar-thumb {
  background: #E1B035;
  border-radius: 7px;
}

/* --------------
Supporting Classes
----------------- */
.flex-row { display: flex; flex-direction: row; gap: 20px; }
.flex-column { display: flex; flex-direction: column; gap: 20px; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-center { justify-content: center; }

/* --------- Custom for 'warm_friendly' --------- */
section, .card, .cta-btn, .testimonial-card {
  border-radius: 22px;
}
.testimonial-card {
  background: #fffbe7;
  color: #332A1B;
  border-left: 5px solid #E1B035;
}

/* Proper spacing for cards/sections */
.card, .testimonial-card, section {
  margin-bottom: 20px;
}
.card:not(:last-child), .testimonial-card:not(:last-child), section:not(:last-child) {
  margin-bottom: 24px;
}

/* Visual Hierarchy */
h1, .cta-btn { color: #1B2233; }
h2 { color: #E1B035; }
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.17rem; }
}

/* ------------- End of Styles ------------- */
