/* ========== 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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f7fafc;
  color: #1d232b;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
button {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}
:focus {
  outline: 2px solid #CC7D2F;
  outline-offset: 1px;
}

/* ========== CUSTOM FONT IMPORTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@400;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: #265947;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}

p, li, span {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #223134;
  line-height: 1.6;
}

strong {
  font-weight: 700;
}

/* ========== CONTAINER & LAYOUT ========== */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1160px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}

.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(38, 89, 71, 0.09);
}

.feature-grid, .feature-list, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: #f7fafc;
  border-radius: 14px;
  padding: 28px 20px;
  box-shadow: 0 1px 8px rgba(38, 89, 71, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.feature-grid img {
  height: 40px;
  width: 40px;
  margin-bottom: 8px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(38, 89, 71, 0.084);
  padding: 28px 22px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #f6e2b3;
  color: #1d232b;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(38, 89, 71, 0.07);
  min-width: 0;
  flex: 1 1 265px;
  flex-direction: column;
  max-width: 420px;
  font-size: 1rem;
}
.testimonial-card p {
  color: #1d232b;
  font-size: 1.05rem;
  font-style: italic;
}
.testimonial-card span {
  font-weight: 700;
  color: #265947;
  letter-spacing: 0.02em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== BUTTONS & CTAs ========== */
.cta-button, .cookie-banner .cookie-btn, .cookie-banner .cookie-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #265947;
  color: #fff;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 22px;
  padding: 10px 32px;
  margin-top: 10px;
  border: none;
  transition: background 0.21s, color 0.21s, box-shadow 0.22s;
  box-shadow: 0 2px 12px rgba(38, 89, 71, 0.06);
  cursor: pointer;
  outline: none;
}
.cta-button:hover, .cookie-banner .cookie-btn:hover, .cookie-banner .cookie-link:hover {
  background: #CC7D2F;
  color: #fff;
  box-shadow: 0 5px 24px rgba(204, 125, 47, 0.075);
  text-decoration: none;
}
.cta-button:active {
  background: #1b4034;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: #fff;
  box-shadow: 0 1px 8px rgba(38, 89, 71, 0.05);
  position: relative;
  z-index: 101;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  padding: 22px 0 16px;
  position: relative;
}
.main-nav img {
  height: 40px;
  width: auto;
  margin-right: 12px;
}
.main-nav a {
  font-size: 1rem;
  color: #265947;
  font-weight: 700;
  transition: color 0.22s;
  padding: 8px 10px;
  border-radius: 18px;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f6e2b3;
  color: #ab5a00;
  text-decoration: none;
}
.main-nav .cta-button {
  margin-left: auto;
  margin-right: 0;
  background: #ab5a00;
}
@media (max-width: 1150px) {
  .main-nav {
    gap: 14px;
  }
}

/* --------- MOBILE NAVIGATION --------- */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 24px;
    top: 22px;
    width: 40px;
    height: 40px;
    background: #265947;
    color: #fff;
    border-radius: 8px;
    font-size: 2.2rem;
    align-items: center;
    justify-content: center;
    z-index: 110;
    transition: background 0.18s;
  }
  .mobile-menu-toggle:hover {
    background: #ab5a00;
    color: #fff;
  }
  .mobile-menu {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(38, 89, 71, 0.96);
    z-index: 9999;
    flex-direction: column;
    justify-content: flex-start;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(.33,1.32,.44,1), opacity 0.2s;
  }
  .mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: initial;
  }
  .mobile-menu-close {
    margin: 22px 20px 16px auto;
    background: #ab5a00;
    color: #fff;
    width: 46px;
    height: 46px;
    font-size: 2.2rem;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    border: none;
    transition: background .19s;
  }
  .mobile-menu-close:hover {
    background: #CC7D2F;
    color: #fff;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 10px 36px;
    margin-top: 36px;
  }
  .mobile-nav a {
    color: #fff;
    font-size: 1.15rem;
    padding: 14px 0;
    font-weight: 700;
    border-bottom: 1px solid rgba(246, 226, 179,0.14);
    width: 100%;
    border-radius: 6px;
    transition: background 0.19s, color 0.19s;
  }
  .mobile-nav a:hover {
    background: #CC7D2F;
    color: #fff;
  }
}

/* ========== SECTION & CARD SPACING ========== */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
section:last-child {
  margin-bottom: 0;
}

.content-wrapper > * + * {
  margin-top: 0px;
}

ul li, ol li {
  margin-bottom: 14px;
  line-height: 1.65;
  padding-left: 0px;
}
ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}

/* ========== FOOTER ========== */
footer {
  background: #265947;
  color: #fff;
  padding-top: 42px;
  padding-bottom: 30px;
  position: relative;
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  align-items: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.93;
  border-radius: 10px;
  padding: 6px 12px;
  transition: background 0.19s, color 0.17s;
}
footer nav a:hover {
  background: #f6e2b3;
  color: #ab5a00;
}
.footer-logo img {
  max-width: 78px;
  margin: 20px 0 12px 0;
}
footer p {
  font-size: 0.97rem;
  opacity: 0.72;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background: #fff;
  color: #223134;
  box-shadow: 0 -5px 28px rgba(38,89,71, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 36px;
  font-size: 1.1rem;
  border-radius: 20px 20px 0 0;
  animation: cookieFadeIn 0.8s;
  transition: box-shadow 0.18s;
}
@keyframes cookieFadeIn {
  from { transform: translateY(120px); opacity: 0;} to { transform: none; opacity: 1; }
}
.cookie-banner .cookie-content {
  flex: 1 1 auto;
  min-width: 0;
}
.cookie-banner .cookie-btn {
  min-width: 116px;
  background: #265947;
  color: #fff;
  margin-right: 13px;
  font-size: 1.05rem;
  border-radius: 19px;
  padding: 8px 22px;
  transition: background 0.16s, color 0.14s;
  border: none;
}
.cookie-banner .cookie-btn.reject {
  background: #f4f4f4;
  color: #223134;
  border: 1px solid #cc7d2f;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #f6e2b3;
  color: #a16700;
}
.cookie-banner .cookie-btn.settings {
  background: #ab5a00;
  color: #fff;
  margin-left: 4px;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #cc7d2f;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 9px;
    padding: 14px 10px;
    font-size: 1rem;
    border-radius: 12px 12px 0 0;
  }
}

/* ========== COOKIE MODAL ========== */
.cookie-modal-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  right:0;
  bottom:0;
  background: rgba(38, 89, 71, 0.72);
  z-index: 15000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.21s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: initial;
}
.cookie-modal {
  background: #fff;
  min-width: 310px;
  max-width: 98vw;
  width: 440px;
  padding: 36px 32px 32px 32px;
  border-radius: 18px;
  box-shadow: 0 10px 48px rgba(38, 89, 71,0.20);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookieModalPop .33s both;
}
@keyframes cookieModalPop {
  from { opacity: 0; transform: scale(0.93) translateY(60px); } to { opacity: 1; transform: none; }
}
.cookie-modal h2 {
  color: #265947;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 2px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  background: #ab5a00;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  font-size: 1.64rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .17s;
}
.cookie-modal .close-modal:hover {
  background: #cc7d2f;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: #223134;
  flex: 1 1 auto;
  cursor: pointer;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #265947;
  width: 20px;
  height: 20px;
}
.cookie-modal .cookie-category .cookie-lock {
  font-size: 1.12rem;
  margin-left: 6px;
  color: #ab5a00;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}
.cookie-modal .cookie-actions .cookie-btn {
  padding: 8px 22px;
  font-size: 1.05rem;
  border-radius: 18px;
}

/* ========== FORM ELEMENTS ========== */
input[type="text"], input[type="email"], textarea {
  font-family: 'Lato', Arial, sans-serif;
  border-radius: 7px;
  border: 1px solid #dadddf;
  padding: 10px 13px;
  font-size: 1.04rem;
  width: 100%;
  max-width: 426px;
  margin-bottom: 18px;
  background: #fafcff;
  transition: border 0.18s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border: 1.5px solid #265947;
}
label {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #265947;
  margin-bottom: 5px;
  display: inline-block;
}

/* ========== TABLES ========== */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 32px;
}
thead, th {
  background: #f6e2b3;
  color: #223134;
  font-weight: bold;
}
th, td {
  padding: 12px 18px;
  border-bottom: 1px solid #ede8dc;
  text-align: left;
}

/* ========== LINKS ========== */
a {
  color: #265947;
  transition: color 0.15s;
  text-underline-offset: 2.5px;
}
a:hover, a:focus {
  color: #ab5a00;
  text-decoration: underline;
}

/* ========== MISCELLANEOUS ========== */
::-webkit-scrollbar {
  width: 9px;
  background: #f7fafc;
}
::-webkit-scrollbar-thumb {
  background: #d5e1db;
  border-radius: 7px;
}

hr {
  border: none;
  border-top: 1.3px solid #ede8dc;
  margin: 26px 0;
}

/* ========== MEDIA QUERIES (RESPONSIVE) ========== */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .content-wrapper,
  .text-section,
  .feature-grid,
  .features,
  .card-container,
  .card,
  .content-grid,
  .text-image-section {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  section {
    padding: 26px 0;
  }
}
@media (max-width: 680px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .section {
    padding: 22px 4px;
    border-radius: 10px;
  }
  .feature-grid > div {
    padding: 16px 8px;
    border-radius: 8px;
  }
  .testimonial-card {
    padding: 10px 8px;
    font-size: 0.98rem;
    border-radius: 9px;
  }
  .cookie-modal {
    padding: 16px 6px 20px 8px;
    min-width: 0;
    width: 94vw;
    border-radius: 12px;
  }
}

/* ========== ANIMATIONS ========== */
.cta-button, .cookie-banner .cookie-btn, .cookie-banner .cookie-link {
  transition: background 0.21s, color 0.21s, box-shadow 0.22s;
}
section, .container {
  transition: box-shadow 0.21s;
}

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

/* ========== END OF STYLE.CSS ========== */
