/* RESET AND 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, caption, article, aside, details, figcaption, figure, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FFFDF8;
  color: #242D39;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1B2B4C;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #F3B400;
  outline: none;
}
ul, ol {
  margin-left: 24px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: #1B2B4C;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.2; margin-top: 0; }
h2 { font-size: 2rem; line-height: 1.25; margin-top: 24px; }
h3 { font-size: 1.3rem; line-height: 1.3; margin-top: 16px; }
.subheadline {
  font-size: 1.125rem;
  font-style: italic;
  color: #594814;
  margin-bottom: 32px;
  margin-top: 5px;
  letter-spacing: 0.01em;
}
strong {
  font-weight: bold;
  color: #1B2B4C;
}

/* LAYOUT: CONTAINER AND FLEX STRUCTURE */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 22px;
  box-shadow: 0 0 22px 0 rgba(241, 161, 55, .08);
  background: #FFFBE9;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 44px 0 rgba(241, 161, 55, .19);
}
.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: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FEF8EC;
  border-radius: 20px;
  box-shadow: 0 2px 24px 0 rgba(241, 161, 55, .11);
  border: 1px solid #F7EBC9;
  max-width: 600px;
  color: #1B2B4C;
  font-size: 1.07rem;
}
.testimonial-card blockquote {
  font-style: italic;
  color: #775F2C;
  margin: 0 0 4px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.16rem;
  line-height: 1.45;
}
.testimonial-card span {
  font-size: 1rem;
  color: #856B32;
  align-self: flex-end;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF7E0;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 1px 10px 0 rgba(241, 161, 55, .07);
}

/* HEADER, NAVIGATION, AND CTAs */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 20px 0 rgba(220, 176, 57, .11);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  min-height: 80px;
}
header img {
  height: 44px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #1B2B4C;
  font-weight: 500;
  padding: 8px 6px;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFF7DD;
  color: #F3B400;
}

.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  min-width: 46px;
  min-height: 46px;
  margin-left: 18px;
  padding: 0 30px;
  transition: background 0.18s, color 0.17s, box-shadow 0.18s;
  box-shadow: 0 2px 10px 0 rgba(227,187,76,.08);
}
.cta-primary {
  background: #F3B400;
  color: #FFF;
  border: none;
  text-shadow: 0 1px 6px #e7cc76;
}
.cta-secondary {
  background: #FFF;
  color: #F3B400;
  border: 2px solid #F3B400;
}
.cta-primary:hover, .cta-primary:focus {
  background: #F09A13;
  color: #FFF;
  box-shadow: 0 4px 19px 0 rgba(227,187,76,.15);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #FFF7E0;
  color: #B68605;
}

/* Hide Burger menu on desktop */
.mobile-menu-toggle {
  display: none;
  background: #FFF8DF;
  color: #B68605;
  font-size: 2.1rem;
  border: none;
  padding: 6px 16px;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
  min-width: 48px;
  min-height: 48px;
  margin-left: 8px;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #FFE28C;
  color: #1B2B4C;
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF6DC;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.53,.11,.61,1.5);
  box-shadow: 0 4px 28px 0 rgba(241, 161, 55, .15);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #FFFBE9;
  border: none;
  font-size: 2.4rem;
  color: #F3B400;
  margin: 20px 22px 0 0;
  padding: 2px 18px;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #FFE9A0;
  color: #1B2B4C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
  padding: 40px 40px;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #1B2B4C;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  padding: 12px 6px 12px 0;
  background: none;
  border-radius: 8px;
  margin-left: 0;
  transition: background 0.17s, color 0.17s;
  width: 100%;
}
.mobile-nav a:active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FFF1C1;
  color: #F3B400;
}

/* MAIN & SECTIONS */
main > section {
  margin-bottom: 60px;
  padding: 40px 20px 0 20px;
}
main .container {
  padding: 0 16px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
}
.feature-grid li {
  background: #FFF7E0;
  flex: 1 1 200px;
  padding: 26px 22px;
  border-radius: 18px;
  box-shadow: 0 1px 20px 0 rgba(241, 161, 55, .13);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 190px;
  max-width: 340px;
  gap: 15px;
  transition: box-shadow 0.20s;
}
.feature-grid li:hover {
  box-shadow: 0 4px 32px 0 rgba(243,180,0,.19);
}
.feature-grid li img {
  width: 46px;
  height: 46px;
  margin-bottom: 7px;
}
.feature-grid h3 {
  font-size: 1.15rem;
  color: #1B2B4C;
  margin-bottom: 5px;
}

ul {
  padding-left: 18px;
  margin-bottom: 18px;
  margin-top: 6px;
}
ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #40340D;
  line-height: 1.6;
}

.text-section {
  margin-bottom: 24px;
}

/* FOOTER */
footer {
  background: #FFF8E4;
  color: #1B2B4C;
  border-top: 1.5px solid #F3B40033;
  margin-top: 48px;
  padding: 28px 0 0 0;
}
footer .container {
  padding: 0 16px 0 16px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: space-between;
  align-items: flex-start;
}
footer img {
  width: 54px;
  margin-bottom: 13px;
}
.footer-nav, .footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a, .footer-links a {
  color: #775F2C;
  font-size: 1rem;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  padding: 6px 6px;
}
.footer-nav a:hover, .footer-links a:hover {
  background: #FFF1C1;
  color: #1B2B4C;
}
.social-media {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}
.social-media a img {
  width: 31px;
  height: 31px;
  filter: drop-shadow(0 1px 1px rgba(243, 180, 0, 0.09));
  border-radius: 15px;
  background: #FFF8DF;
  transition: filter 0.15s, background 0.15s;
  padding: 2px;
}
.social-media a:hover img {
  background: #FFE28C;
  filter: brightness(0.92) drop-shadow(0 4px 7px rgba(241, 161, 55, .13));
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #F3B400;
  color: #1B2B4C;
  box-shadow: 0 -2px 18px 0 rgba(210,158,34,.13);
  padding: 18px 18px 18px 18px;
  z-index: 500;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  justify-content: center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  animation: slideUpBanner 0.46s cubic-bezier(.66,.19,.51,.98);
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner button {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 9px;
  padding: 8px 19px;
  margin: 0;
  margin-right: 4px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-accept {
  background: #1B2B4C;
  color: #FFF;
  font-weight: bold;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #264274;
}
.cookie-reject {
  background: #FFF;
  color: #1B2B4C;
  border: 1.5px solid #1B2B4C;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #FFF8DF;
  color: #B68605;
}
.cookie-settings {
  background: #FFFBE9;
  color: #775F2C;
  border: 1.5px solid #F3B400;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #FFF1C1;
  color: #1B2B4C;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(40, 30, 10, 0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.27s cubic-bezier(.37,1.37,.37,.81);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal .modal-content {
  background: #FFFBE9;
  padding: 30px 26px;
  border-radius: 22px;
  box-shadow: 0 4px 42px 0 rgba(243,180,0,.15);
  max-width: 90vw;
  width: 370px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1B2B4C;
}
.cookie-modal .modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.31rem;
  color: #1B2B4C;
  font-weight: 800;
  margin-bottom: 4px;
}
.cookie-group {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFF9E9;
  border-radius: 12px;
  padding: 9px 12px;
  margin-bottom: 2px;
}
.cookie-group-label {
  flex: 1;
}
.cookie-toggle {
  margin-left: 13px;
  accent-color: #F3B400;
  width: 20px; height: 20px;
  border-radius: 17px;
}
.cookie-toggle:disabled {
  opacity: 0.55;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 9px;
}
.cookie-modal .close-modal {
  background: #FFF;
  color: #1B2B4C;
  border: 1.5px solid #1B2B4C;
  border-radius: 10px;
  font-size: 1rem;
  padding: 7px 17px;
}
.cookie-modal .save-modal {
  background: #F3B400;
  color: #FFF;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  padding: 7px 17px;
}
.cookie-modal .save-modal:hover, .cookie-modal .save-modal:focus {
  background: #F0B013;
}

/* CARD, BLOCK, OVERLAY STRUCTURES */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.card {
  background: #FFF7E0;
  box-shadow: 0 2px 14px 0 rgba(243,180,0,.07);
  border-radius: 22px;
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
}
.card-container .card {
  flex: 1 1 340px;
  min-width: 250px;
  max-width: 350px;
}

/* SPACING AND FLEX RESPONSIVENESS */
@media (max-width: 1150px) {
  .container { max-width: 99vw; }
  .feature-grid { gap: 20px; }
}
@media (max-width: 900px) {
  .footer-nav, .footer-links { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  footer .content-wrapper { flex-direction: column; gap: 24px; align-items: flex-start; }
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav, .cta-primary {
    display: none !important;
  }
  header .container {
    gap: 4px;
    padding: 14px 8px;
  }
  main > section {
    padding: 36px 4vw 0 4vw;
  }
  .feature-grid, .card-container, .content-grid {
    gap: 18px;
  }
  .feature-grid li, .card {
    min-width: 220px;
    max-width: 100%;
    width: 100%;
    padding: 20px 12px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 4vw;
  }
  .footer-nav, .footer-links {
    flex-direction: column; gap: 7px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card-container {
    flex-direction: column; gap: 16px;
  }
  .content-grid {
    flex-direction: column; gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  main > section {
    padding: 26px 2vw 0 2vw;
  }
}

@media (max-width: 450px) {
  header .container { min-height: 58px; }
  h1 { font-size: 1.47rem; }
  h2 { font-size: 1.20rem; }
  .feature-grid li, .card { padding: 14px 7px; }
}

/* UTILITY CLASSES */
.mt-2 { margin-top: 2px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* FORM ELEMENTS */
input, select, textarea {
  border-radius: 10px;
  border: 1.5px solid #F3B400;
  padding: 10px 11px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  outline: none;
  background: #FFFCF5;
  margin-bottom: 13px;
  transition: border-color 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #1B2B4C;
}
button {
  font-family: 'Playfair Display', serif;
}

/* OVERRIDE BROWSER SCROLLBAR (subtle) */
body::-webkit-scrollbar {
  width: 12px;
}
body::-webkit-scrollbar-thumb {
  background: #FFE28C;
  border-radius: 6px;
}
body::-webkit-scrollbar-track {
  background: #FFFDF8;
}

/* MICRO-INTERACTIONS (transitions) */
a, button, .card, .cta-primary, .cta-secondary, .feature-grid li, .mobile-menu-toggle, .mobile-menu-close {
  transition: all 0.18s cubic-bezier(.53,.11,.61,1.5);
}

/* ACCENT COLOR TEXTS */
.accent {
  color: #F3B400;
  font-weight: 800;
}

/* SECTION SEPARATORS (For clarity on content-heavy pages) */
.section-separator {
  height: 2px;
  width: 80px;
  background: #F3B400;
  border-radius: 7px;
  margin: 28px 0;
}

/* MISCELLANEOUS */
::-moz-selection { background: #F3B400; color: #FFF; }
::selection      { background: #F3B400; color: #FFF; }

/* Accessibility helpers */
.sr-only, .visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px; width: 1px;
  margin: -1px; overflow: hidden; padding: 0; position: absolute;
}

/* FOCUS STYLES FOR ACCESSIBILITY */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2.5px solid #F3B400;
  outline-offset: 2px;
}

/* PRINT STYLES - Remove nav, mobile menu, cookie, background for print */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal, footer {
    display: none !important;
  }
  body { background: white !important; }
}
