/* --- 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;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F9F7F1;
  color: #25436D;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #25436D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C2773F;
  outline: none;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5rem;
}
th, td {
  padding: 0.75em 1em;
  text-align: left;
}
th {
  background: #A7B8C7;
  color: #25436D;
  font-weight: 700;
  font-size: 1.1em;
}
td {
  background: #fff;
  color: #25436D;
  border-bottom: 1px solid #A7B8C7;
}

/* --- BRAND COLORS & UTILS --- */
:root {
  --brand-primary: #25436D;
  --brand-secondary: #A7B8C7;
  --brand-accent: #F9F7F1;
  --brand-orange: #C2773F;
  --brand-warm1: #FFF4E7;
  --brand-warm2: #FFDAB9;
  --brand-warmtext: #834816;
  --brand-error: #E57373;
}

/* --- TYPOGRAPHY & HEADINGS --- */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #25436D;
  margin-bottom: 20px;
  line-height: 1.2;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #25436D;
  margin-bottom: 18px;
  line-height: 1.25;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #634015;
  margin-bottom: 14px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #634015;
  margin-bottom: 10px;
}
p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #25436D;
  margin-bottom: 14px;
}
blockquote {
  font-style: italic;
  border-left: 4px solid var(--brand-orange);
  padding-left: 1em;
  margin-bottom: 6px;
  color: #834816;
}
.subheadline {
  color: #634015;
  opacity: .85;
  margin-bottom: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.mission {
  color: var(--brand-orange);
  background: var(--brand-warm1);
  border-radius: 20px;
  padding: 18px 24px;
  margin: 20px 0;
  font-weight: 500;
}

/* --- CONTAINERS & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 18px 0 rgba(197, 153, 106, 0.14);
  padding: 28px 24px;
  transition: transform .22s, box-shadow .22s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(197, 153, 106, 0.19);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}
.feature-grid,
.card-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(197,153,106,0.10);
  padding: 28px 20px;
  flex: 1 1 260px;
  min-width: 260px;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .18s;
}
.feature-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--brand-warm1);
  padding: 6px;
}
.feature-item:hover {
  box-shadow: 0 2px 18px 0 rgba(197,153,106,0.19);
  transform: translateY(-2px) scale(1.01);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  align-items: flex-start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- TESTIMONIALS --- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  background: #FFF4E7;
  border-radius: 26px;
  box-shadow: 0 2px 16px 0 rgba(197,153,106,0.10);
  flex: 1 1 320px;
  min-width: 260px;
  margin-bottom: 20px;
  color: #834816;
}
.testimonial-card blockquote {
  color: #834816;
  font-size: 1.125rem;
  margin-bottom: 6px;
  border: none;
  padding: 0;
}
.testimonial-author {
  font-size: 1rem;
  color: #634015;
  font-weight: 600;
  margin-left: 10px;
  opacity: 0.92;
}

/* --- CTA BUTTONS --- */
.cta-primary {
  display: inline-block;
  background: linear-gradient(90deg,#FFDAB9 2%, #C2773F 100%);
  color: #25436D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  border: none;
  border-radius: 38px;
  padding: 14px 32px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(197, 153, 106, 0.13);
  transition: background .22s, box-shadow .22s, color .22s, transform .14s;
  margin-top: 12px;
  margin-bottom: 2px;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #C2773F;
  color: #fff;
  box-shadow: 0 6px 18px 0 rgba(194, 119, 63, 0.21);
  outline: 0;
  transform: translateY(-2px);
}
.cta-secondary {
  display: inline-block;
  background: #25436D;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 38px;
  padding: 10px 28px;
  cursor: pointer;
  margin-top: 16px;
  margin-bottom: 2px;
  box-shadow: 0 2px 10px 0 rgba(197,153,106,0.09);
  transition: background .18s, color .18s, box-shadow .18s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #C2773F;
  color: #fff;
  outline: none;
}
nav a.cta-primary {
  margin-left: 18px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 1px 12px 0 rgba(197,153,106,0.07);
  position: sticky;
  top: 0;
  z-index: 120;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
}
header img {
  height: 45px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #25436D;
  padding: 6px 12px;
  border-radius: 24px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
header nav a:hover,
header nav a:focus:not(.cta-primary) {
  background: #FFDAB9;
  color: #834816;
}
.mobile-menu-toggle {
  display: none;
  background: #FFDAB9;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #25436D;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 12px;
  transition: box-shadow .18s, background .18s;
}
.mobile-menu-toggle:active {
  background: #C2773F;
  color: #fff;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  box-shadow: 0 8px 36px 0 rgba(194,119,63,0.15);
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform .33s cubic-bezier(.59,.24,.44,1.03), opacity .24s;
  z-index: 220;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #FFDAB9;
  border: none;
  border-radius: 50%;
  color: #25436D;
  width: 48px; height: 48px;
  font-size: 2rem;
  margin: 18px 18px 6px 0;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #C2773F;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 30px 38px 0 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #25436D;
  font-size: 1.18rem;
  padding: 12px;
  border-radius: 18px;
  font-weight: 600;
  transition: background .16s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFDAB9;
  color: #834816;
}

/* --- MAIN/SECTION STYLES --- */
main {
  width: 100%;
  flex: 1 0 auto;
  margin: 0 auto;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- MAP TEXT --- */
.map-text {
  background: #FFF4E7;
  color: #25436D;
  padding: 24px 32px;
  border-radius: 20px;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

/* --- FOOTER --- */
footer {
  background: #F9F7F1;
  padding: 44px 0 18px 0;
  border-top: 1px solid #e3dfd7;
  box-shadow: 0 -1px 6px rgba(197,153,106,0.04);
  color: #634015;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
footer img {
  height: 44px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
footer nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #634015;
  border-radius: 24px;
  font-size: 0.98rem;
  padding: 6px 12px;
  opacity: .85;
  transition: background .14s, color .12s;
}
footer nav a:hover, footer nav a:focus {
  background: #FFDAB9;
  color: #25436D;
}
.company-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #634015;
  font-size: 15px;
  margin-bottom: 8px;
}
footer small {
  color: #A7B8C7;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 660px;
}

/* --- TABLE --- */
table {
  margin-top: 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px 0 rgba(197, 153, 106, 0.10);
  background: #fff;
}
tr {
  border-bottom: 1px solid #A7B8C7;
}
tr:last-child {
  border-bottom: none;
}
th, td {
  border: none;
  vertical-align: middle;
}

/* --- COOKIES BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff8ef;
  color: #834816;
  box-shadow: 0 -2px 24px 0 rgba(197,153,106,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 16px 20px 24px;
  gap: 18px;
  z-index: 9999;
  font-size: 1rem;
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: transform .42s, opacity .39s;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 22px;
  cursor: pointer;
  margin-left: 2px;
  transition: background .15s, color .15s;
}
.cookie-btn.accept {
  background: #FFDAB9;
  color: #25436D;
}
.cookie-btn.reject {
  background: #E57373;
  color: #fff;
}
.cookie-btn.settings {
  background: #A7B8C7;
  color: #25436D;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #C2773F;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #b64a22;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #25436D;
  color: #fff;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10000;
  inset: 0;
  background: rgba(37,67,109,0.25);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}
.cookie-modal-overlay.visible {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 2px 18px 0 rgba(197,153,106,0.17);
  padding: 36px 28px 28px 28px;
  max-width: 400px;
  width: 100vw;
  margin: 0 auto;
  position: relative;
  transform: translateY(100vh);
  transition: transform .31s cubic-bezier(.61,.23,.47,1.05);
}
.cookie-modal-overlay.visible .cookie-modal {
  transform: translateY(0);
}
.cookie-modal h2 {
  color: #25436D;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  color: #25436D;
  font-size: 1.02rem;
}
.cookie-switch {
  pointer-events: auto;
}
.cookie-close-modal {
  position: absolute;
  right: 18px;
  top: 14px;
  background: none;
  border: none;
  color: #25436D;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  width: 40px; height: 40px;
  transition: background .14s;
}
.cookie-close-modal:hover, .cookie-close-modal:focus {
  background: #FFDAB9;
  color: #834816;
}

/* --- FORM ELEMENTS --- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 16px;
  border: 1px solid #A7B8C7;
  background: #fff;
  padding: 10px 14px;
  outline: none;
  box-shadow: 0 1px 4px 0 rgba(198,181,157,.08);
  margin-bottom: 12px;
  transition: border .15s, box-shadow .12s;
}
input:focus, textarea:focus, select:focus {
  border-color: #C2773F;
  box-shadow: 0 2px 10px 0 rgba(194,119,63,.10);
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 3px;
  color: #25436D;
  font-size: 1rem;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .container {
    max-width: 95vw;
    padding-left: 8px; padding-right: 8px;
  }
  .feature-grid, .testimonial-list, .card-grid, .content-grid {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .feature-item, .card, .testimonial-card {
    min-width: 220px;
    padding: 20px 14px;
  }
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.45rem; }
}
@media (max-width: 768px) {
  header .container { flex-direction: row; }
  header nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .content-wrapper, .section, section {
    padding: 24px 0px;
    gap: 22px;
  }
  .feature-grid, .testimonial-list, .card-grid, .content-grid {
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
  }
  .testimonial-card, .feature-item, .card {
    min-width: 180px;
    border-radius: 20px;
  }
  .company-info { font-size: 14px; }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  .container {
    padding-left: 3px; padding-right: 3px;
  }
  .feature-item, .testimonial-card, .card {
    padding: 14px 7px;
    min-width: 120px;
  }
  h1, .h1 { font-size: 1.35rem; }
  h2, .h2 { font-size: 1.01rem; }
  .cta-primary, .cta-secondary { font-size: .98rem; padding: 10px 14px; }
}

/* --- FOCUS STATES (A11Y) --- */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus {
  outline: 2px solid #FFDAB9;
  outline-offset: 3px;
  box-shadow: 0 0 0 3px #FFDAB966;
}

/* --- ADJUSTMENTS FOR CONSISTENCY --- */
.card:not(:last-child), .feature-item:not(:last-child), .testimonial-card:not(:last-child) {
  margin-right: 0;
}
.card, .feature-item, .testimonial-card {
  box-sizing: border-box;
}
section > .container {
  margin-bottom: 0;
}
/* --- END OF STYLES --- */
