/*--------------------------------------------------------------
CSS RESET & BASELINE NORMALIZATION
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #FFFDF7;
  color: #2B3A47;
  line-height: 1.7;
  min-height: 100vh;
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
a {
  color: #C58A2A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2B3A47;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 0.5em;
  color: #2B3A47;
}
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
}
h3 {
  font-size: 1.4rem;
  font-weight: 600;
}
h4 {
  font-size: 1.2rem;
  font-weight: 600;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(240,200,98,0.16);
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}
.text-section {
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 2px 16px rgba(240,200,98,0.09);
}
.text-section h2, .text-section h3 {
  color: #BB842C;
}
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 18px 0 16px 0;
  align-items: center;
}
.feature-icons img {
  width: 54px;
  height: 54px;
  background: #FFF6D2;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(240, 200, 98, 0.17);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 3px 22px rgba(248, 186, 92, 0.11);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 30px rgba(244, 192, 90, 0.23);
  transform: translateY(-4px) scale(1.013);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #FDF6E5;
  box-shadow: 0 3px 16px rgba(240,200,98,0.12);
  margin-bottom: 20px;
  color: #2B3A47;
  max-width: 600px;
  transition: box-shadow .2s, transform .2s;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #2B3A47;
  margin-bottom: 8px;
  quotes: "\201C" "\201D";
  position: relative;
}
.testimonial-card blockquote:before {
  content: '\201C';
  color: #F0C862;
  font-size: 2rem;
  position: absolute;
  left: -28px;
  top: -10px;
}
.testimonial-card p {
  font-size: 1rem;
  margin: 0;
  color: #BB842C;
}
.ratings-summary {
  background: #FFF7E2;
  border-radius: 10px;
  padding: 12px 16px;
  margin: 12px 0 0 0;
  font-size: 1.1rem;
  color: #2B3A47;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*--------------------------------------------------------------
NAVIGATION & HEADER
--------------------------------------------------------------*/
header {
  background: #fff;
  box-shadow: 0 2px 14px rgba(43, 58, 71, 0.04);
  border-bottom: 2px solid #FFF6D2;
  position: sticky;
  top: 0;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 24px;
}
.main-nav > a img {
  height: 46px;
  width: auto;
  border-radius: 0;
}
.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin: 0 30px;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #2B3A47;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 8px 8px;
  border-radius: 7px;
  transition: background 0.17s, color 0.17s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #FFF6D2;
  color: #C58A2A;
}
.cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 11px 28px;
  background: #F0C862;
  color: #2B3A47;
  border: none;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 22px;
  box-shadow: 0 2px 14px rgba(242,192,85,0.13);
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.23s, transform 0.13s;
  text-align: center;
  margin-left: 17px;
  outline: none;
  display: inline-block;
  letter-spacing: 0.01em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFE9A3;
  color: #2B3A47;
  box-shadow: 0 6px 21px rgba(240, 200, 98, 0.23);
  transform: translateY(-2px) scale(1.025);
  text-decoration: none;
}

/* Hamburger menu toggle */
.mobile-menu-toggle {
  background: #F0C862;
  border: none;
  color: #2B3A47;
  font-size: 2rem;
  padding: 7px 19px;
  border-radius: 15px;
  cursor: pointer;
  display: none;
  z-index: 40;
  transition: background 0.17s, box-shadow 0.13s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #FFE9A3;
  box-shadow: 0 2px 9px rgba(240, 200, 98, 0.23);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #FFFDF0;
  box-shadow: 0 0 0 9999px rgba(43,58,71,0.19);
  transform: translateX(-110vw);
  transition: transform 0.36s cubic-bezier(.7,.2,.33,1.04);
  z-index: 101;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F0C862;
  font-size: 2.2rem;
  font-weight: 700;
  align-self: flex-end;
  margin: 22px 30px 0 0;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFF6D2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  margin: 46px 0 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2B3A47;
  background: none;
  border-radius: 10px;
  padding: 9px 12px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F0C862;
  color: #2B3A47;
}

/* Hide desktop nav on mobile, show hamburger */
@media (max-width: 950px) {
  .main-nav ul, .main-nav .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

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

/*--------------------------------------------------------------
SECTIONS & CARDS & PAGE STRUCTURE
--------------------------------------------------------------*/
main {
  padding-bottom: 40px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 22px;
  background: #FFFFFF;
  box-shadow: 0 2px 14px rgba(240,200,98,0.09);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
section:last-child {
  margin-bottom: 0;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*--------------------------------------------------------------
FOOTER
--------------------------------------------------------------*/
footer {
  background: #2B3A47;
  color: #F6EBDA;
  padding: 0;
  margin: 0;
}
footer section {
  background: none;
  box-shadow: none;
  margin-bottom: 0;
  padding: 32px 16px 16px 16px;
  border-radius: 0;
  color: #F6EBDA;
}
footer a {
  color: #F0C862;
  font-weight: 600;
  transition: color 0.18s;
}
footer a:hover, footer a:focus {
  color: #fff;
}
footer nav {
  margin-bottom: 10px;
}
footer .content-wrapper {
  gap: 11px;
}
footer h3 {
  color: #F0C862;
}

/*--------------------------------------------------------------
BUTTONS & INTERACTIVE ELEMENTS
--------------------------------------------------------------*/
button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 18px;
  background: #F0C862;
  color: #2B3A47;
  padding: 10px 17px;
  font-weight: 600;
  box-shadow: 0 2px 7px rgba(240,200,98,0.11);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.13s;
}
button:hover, button:focus {
  background: #ffd97c;
  color: #2B3A47;
  box-shadow: 0 4px 18px rgba(240,200,98,0.17);
  outline: none;
  transform: translateY(-1px) scale(1.012);
}

/*--------------------------------------------------------------
COOKIE CONSENT BANNER
--------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 1021;
  background: #FFF7E2;
  color: #2B3A47;
  box-shadow: 0 -2px 16px rgba(240,200,98, 0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 19px 22px 19px 22px;
  gap: 18px;
  border-radius: 23px 23px 0 0;
  animation: cookieBannerIn 0.7s cubic-bezier(.7,.31,.17,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(120px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.02rem;
  color: #2B3A47;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 4px;
}
.cookie-banner button {
  font-size: 1rem;
  padding: 9px 21px;
  border-radius: 20px;
  background: #F0C862;
  color: #2B3A47;
  border: none;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(240,200,98,0.09);
  margin: 0;
  transition: background 0.15s, color 0.12s, box-shadow 0.18s;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: #BB842C;
  border: 1.5px solid #F0C862;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FFE9A3;
  color: #2B3A47;
}

/* Cookie Modal (Settings) */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1101;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(43,58,71,0.34);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #FFF8E1;
  border-radius: 18px;
  box-shadow: 0 8px 38px rgba(240,200,98,0.16);
  padding: 36px 22px 28px 22px;
  max-width: 400px;
  min-width: 0;
  width: 88vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalIn 0.35s cubic-bezier(.7,.31,.17,1);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translateY(30px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #2B3A47;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 19px;
  padding: 10px 0;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
  color: #2B3A47;
}
.cookie-modal .cookie-switch {
  width: 40px; height: 22px;
  background: #FFE9A3;
  border-radius: 22px;
  position: relative;
  margin-left: 10px;
}
.cookie-modal .cookie-switch input {
  display: none;
}
.cookie-modal .cookie-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #F0C862;
  border-radius: 50%;
  transition: left .2s;
}
.cookie-modal .cookie-switch input:checked + .cookie-switch-slider {
  left: 20px;
  background: #BB842C;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .cookie-close {
  position: absolute;
  right: 18px;
  top: 16px;
  background: none;
  color: #F0C862;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  padding: 2px 6px;
  transition: background .13s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  background: #FFF6D2;
}

/*--------------------------------------------------------------
RESPONSIVENESS
--------------------------------------------------------------*/
@media (max-width: 1200px) {
  .container {
    max-width: 92vw;
  }
}
@media (max-width: 950px) {
  .main-nav {
    height: 64px;
    padding: 0 10px;
  }
  .main-nav > a img {
    height: 39px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 0.99rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.46rem;
  }
  .section, section {
    padding: 27px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0;
    max-width: 99vw;
  }
  .card-container, .content-grid, .feature-icons {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card {
    padding: 16px;
    font-size: 0.99rem;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 19px;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .main-nav {
    height: 50px;
  }
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1.13rem; }
  .cta-btn, button { font-size: 0.95rem; }
  .cookie-banner {
    padding: 12px 6px 12px 6px;
    font-size: 0.97rem;
    gap: 12px;
  }
  .cookie-modal {
    padding: 18px 8px 12px 8px;
    min-width: 0;
    font-size: 0.97rem;
  }
}

/*--------------------------------------------------------------
UTILITY CLASSES
--------------------------------------------------------------*/
.mt-0   { margin-top: 0 !important; }
.mt-1   { margin-top: 8px !important; }
.mb-0   { margin-bottom: 0 !important; }
.mb-1   { margin-bottom: 8px !important; }
.text-center { text-align: center; }

/*--------------------------------------------------------------
ADDITIONAL MICRO-INTERACTIONS
--------------------------------------------------------------*/
.cta-btn:active, button:active {
  transform: scale(.98);
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 37px rgba(240,200,98,0.19);
  transform: translateY(-2px) scale(1.011);
}

/* Ensure gap between all cards and sections */
section + section, .content-wrapper + .content-wrapper, .testimonial-card + .testimonial-card {
  margin-top: 22px;
}

/* Focus visibles for accessibility */
*:focus-visible {
  outline: 2px solid #F0C862;
  outline-offset: 2px;
}

/*--------------------------------------------------------------
SCROLLBAR Styling (warm, friendly)
--------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 11px;
  background: #FFF9E5;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb {
  background: #F0C862;
  border-radius: 12px;
  border: 3px solid #FFFDF7;
}
::-webkit-scrollbar-thumb:hover {
  background: #ffd97c;
}

/*--------------------------------------------------------------
CUSTOM FONT DECLARATIONS
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');

/*--------------------------------------------------------------
END OF CSS
--------------------------------------------------------------*/
