/* ==== RESET & BASE ==== */
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;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background-color: #FAF9F6;
  color: #295157;
}
input, textarea, select, button {
  font: inherit;
  outline: none;
  border-radius: 6px;
}
ul, ol {
  list-style-position: inside;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

/* ==== CUSTOM FONTS ==== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400|Open+Sans:400,600,700&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: linear-gradient(118deg, #f6fafe 0%, #e6e8fa 100%);
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #295157;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
  color: #355c5a;
}

.subheadline {
  font-size: 1.15rem;
  color: #597a6d;
  margin-bottom: 18px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
}

strong {
  color: #295157;
  font-weight: 700;
}

/* ==== LAYOUT & CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Sections & Spacing patterns from requirements */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 18px;
  transition: box-shadow 0.3s;
}
section:last-child {
  margin-bottom: 0;
}
.text-section {
  background: #ffffff;
  box-shadow: 0 2px 24px 0 rgba(44, 60, 99,0.04);
  border-radius: 16px;
  padding: 32px 24px;
  gap: 18px;
  margin-bottom: 35px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1.5px 12px 0 rgba(147,163,194,0.10);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(147,163,194,0.13);
}

.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.faq {
  background: #f6f8ff;
  border-radius: 14px;
  padding: 24px 18px;
  box-shadow: 0 2px 14px 0 rgba(189,194,209,0.07);
}

.notice {
  background: #fbf0dc;
  border-left: 5px solid #A07500;
  padding: 16px 18px;
  border-radius: 10px;
  margin-top: 20px;
  color: #665124;
}

/* ==== HEADER ==== */
header {
  background: #e6f6f5;
  padding: 0 0 0 0;
  box-shadow: 0 3px 16px 0 rgba(110,160,148,0.06);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 20px 16px 20px;
  gap: 18px;
}
.logo img {
  height: 43px;
}
.desktop-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-left: auto;
  align-items: center;
}
.desktop-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #295157;
  font-size: 1.04rem;
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 2.5px solid transparent;
  border-radius: 2px;
  transition: color 0.18s, border-bottom 0.18s;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: #A07500;
  border-bottom: 2.5px solid #A07500;
}

.cta.primary {
  background: #B49539;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  padding: 10px 28px;
  letter-spacing: 0.15em;
  border: none;
  border-radius: 30px;
  margin-left: 14px;
  box-shadow: 0 1px 11px 0 rgba(185,166,82,0.04);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  cursor: pointer;
  outline: none;
  display: inline-block;
  text-align: center;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #A07500;
  color: #fffbe6;
  box-shadow: 0 3px 16px 0 rgba(185,166,82,0.11);
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #295157;
  font-size: 2.1rem;
  line-height: 1;
  padding: 2px 10px;
  margin-left: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.17s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #f4ece0;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #f7fafc;
  box-shadow: 0 4px 24px 0 rgba(110,160,148,0.08);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.56,.06,.27,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 38px;
  padding-left: 8vw;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #B49539;
  cursor: pointer;
  z-index: 1110;
  border-radius: 5px;
  transition: background 0.15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #ede7dc;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 26px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 500;
  color: #295157;
  letter-spacing: 0.04em;
  padding: 12px 0 7px 0;
  border-bottom: 2px solid transparent;
  min-width: 160px;
  border-radius: 3px;
  transition: color 0.15s, border-bottom 0.15s, background 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #A07500;
  background: #f3f6e6;
  border-bottom: 2px solid #A07500;
}

/* Hide elements on mobile/desktop appropriately */
.desktop-nav, .cta.primary {
  display: flex;
}
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}

@media (max-width: 992px) {
  .desktop-nav, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
}


/* ==== HERO & CTA ==== */
.hero {
  background: linear-gradient(101deg, #e6f6f5 55%, #f8ebff 100%);
  padding: 50px 0 44px 0;
  border-radius: 0 0 34px 34px;
  margin-bottom: 36px;
  box-shadow: 0 8px 28px 0 rgba(179,202,201,0.10);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 650px;
}

.cta-section {
  background: linear-gradient(135deg, #fff6e5 30%, #e6f6f5 100%);
  box-shadow: 0 1.5px 12px 0 rgba(180,179,130,0.08);
  border-radius: 18px;
  margin-bottom: 0;
}
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}

/* ==== FEATURE ICONS ==== */
.feature-icons {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.feature-icons img {
  height: 52px;
  width: auto;
  opacity: 0.96;
  border-radius: 12px;
  background: #e6f6f5;
  box-shadow: 0 2px 12px 0 rgba(110,160,148,0.11);
  padding: 8px;
}

/* ==== TESTIMONIALS ==== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  margin-bottom: 20px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 20px 0 rgba(145,173,191,0.11);
  border: 1.5px solid #e9e6df;
  font-family: 'Open Sans', Arial;
  transition: box-shadow 0.22s, border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4.5px 32px 0 rgba(145,173,191,0.15);
  border-color: #B49539;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.20rem;
  color: #295157;
  font-weight: 600;
  background: none;
  margin: 0;
  quotes: "\201C" "\201D";
}
.testimonial-card .testimonial-meta {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #7d8f88;
  font-size: 1rem;
  margin-left: 6px;
}

/* ==== FOOTER ==== */
footer {
  background: #e6f6f5;
  color: #295157;
  padding: 44px 0 12px 0;
  font-size: 0.96rem;
}
.footer-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #295157;
  opacity: 0.88;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 500;
  padding: 5px 2px;
  border-bottom: 2px solid transparent;
  border-radius: 2px;
  transition: color 0.16s, border-color 0.16s;
}
.footer-nav a:hover {
  color: #A07500;
  border-bottom: 2px solid #A07500;
}
.footer-contact {
  margin-bottom: 13px;
  text-align: center;
  color: #295157;
  opacity: 0.85;
  line-height: 1.8;
}
.footer-contact img {
  height: 16px; width: 16px;
  vertical-align: sub;
  margin-right: 4px;
}
.footer-copy {
  font-size: 0.92rem;
  color: #76847a;
  text-align: center;
  margin-top: 12px;
}

/* ==== BUTTONS & INTERACTIONS ==== */
button, .cta, .cta.primary {
  cursor: pointer;
  outline: none;
}
button:active, .cta:active {
  transform: scale(0.97);
  transition: transform 0.07s;
}

a {
  transition: color 0.18s, border-bottom 0.18s;
}

/* ==== TABLET & MOBILE RESPONSIVE ==== */
@media (max-width: 900px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .container {
    padding: 0 12px;
  }
  .footer-nav {
    gap: 12px;
    font-size: 0.97rem;
  }
  .feature-icons img {
    height: 42px;
  }
}
@media (max-width: 768px) {
  section, .section {
    padding: 30px 6px;
    margin-bottom: 38px;
  }
  .content-wrapper, .text-section {
    gap: 14px;
    padding: 18px 8px;
  }
  .hero {
    padding: 30px 0 22px 0;
    border-radius: 0 0 22px 22px;
  }
  .feature-icons {
    gap: 15px;
    margin-top: 12px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 10px;
  }
  .faq {
    padding: 11px 5px;
  }
}
@media (max-width: 600px) {
  .text-image-section {
    flex-direction: column !important;
    gap: 16px;
    align-items: stretch !important;
  }
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 19px;
  }
  .footer-contact {
    font-size: 0.97rem;
  }
  .footer-copy {
    font-size: 0.9rem; 
  }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #ffffff;
  color: #295157;
  box-shadow: 0 -2px 20px 0 rgba(179,150,110,0.11);
  border-radius: 18px 18px 0 0;
  padding: 20px 16px 19px 16px;
  z-index: 1300;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  flex-direction: row;
  transition: transform 0.35s cubic-bezier(.55,.04,.17,1);
}
.cookie-consent-banner.hide {
  transform: translateY(110%);
  pointer-events: none;
  opacity: 0.2;
}
.cookie-consent-banner p {
  flex: 1;
  font-size: 1.05rem;
  margin: 0;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-btn {
  background: #e6f6f5;
  border: none;
  color: #295157;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 1px 8px 0 rgba(180,149,57,0.06);
  margin: 0 2px;
  transition: background 0.13s, color 0.13s;
}
.cookie-btn.accept {
  background: #B49539;
  color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #A07500;
  color: #fffbe4;
}
.cookie-btn.reject {
  background: #EFE5DF;
  color: #A07500;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #ebcdbb;
  color: #6e521d;
}
.cookie-btn.settings {
  background: #e8f1e9;
  color: #295157;
}
.cookie-btn.settings:hover {
  background: #dbe5ef;
  color: #2b443c;
}

@media (max-width: 500px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px 7px 12px 7px;
    font-size: 0.98rem;
  }
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(57,84,73, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1400;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.28s cubic-bezier(.57,.09,.19,1);
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #295157;
  border-radius: 16px;
  box-shadow: 0 2.5px 32px 0 rgba(110,160,148,0.13);
  padding: 34px 28px;
  max-width: 410px;
  width: 96vw;
  position: relative;
}
.cookie-modal h3 {
  margin-bottom: 9px;
  font-size: 1.18rem;
  color: #A07500;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-weight: 600;
  color: #295157;
}
.cookie-category input[type="checkbox"] {
  accent-color: #B49539;
  transform: scale(1.18);
}
.cookie-category .category-desc {
  font-weight: 400;
  color: #6d7e79;
  font-size: 0.98rem;
}
.cookie-close-modal {
  position: absolute;
  right: 18px;
  top: 15px;
  font-size: 1.9rem;
  color: #A07500;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}
.cookie-close-modal:focus,
.cookie-close-modal:hover {
  background: #f8eacc; 
}
.cookie-modal-actions {
  display: flex;
  gap: 8px;
  margin-top: 19px;
  justify-content: flex-end;
}

/* ==== GENERAL UTILITIES ==== */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-16 { margin-top: 16px; }
.mb-24 { margin-bottom: 24px; }
.center { text-align: center; }

/* ==== MICRO-INTERACTIONS & ANIMATION ==== */
.cta.primary, .cookie-btn, .mobile-nav a, .desktop-nav a {
  transition: background 0.17s, box-shadow 0.16s, color 0.15s, border-bottom 0.13s, transform 0.11s;
}
.card, .faq, .testimonial-card {
  transition: box-shadow 0.23s, border-color 0.19s;
}

/* ==== ACCESSIBILITY (FOCUS STATES) ==== */
a:focus, button:focus, .cta.primary:focus, .cookie-btn:focus, .mobile-menu-toggle:focus {
  outline: 2px solid #B49539;
  outline-offset: 2px;
}

/* ==== SPECIAL CLASSES (THANK YOU PAGE) ==== */
.thank-you-section {
  text-align: center;
  background: linear-gradient(112deg, #fdf6eb 60%, #e7f5f6 100%);
  border-radius: 19px;
  box-shadow: 0 1.5px 12px 0 rgba(144,161,139,0.05);
  padding: 38px 24px;
}

/* ==== CUSTOM CHECKBOXES (cookie settings) ==== */
input[type="checkbox"]:disabled {
  accent-color: #babbc1;
  cursor: not-allowed;
  opacity: 0.75;
}

/* ==== END OF CSS ==== */
