/* =======================
   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 {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  background: #FAFAFA;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-width: 320px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #316C94;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #17553A;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 24px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
}

/* ================================
   BRAND FONTS AND TYPOGRAPHY
   ================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  color: #17553A;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.12;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.125rem; }
}

p, li, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  color: #222;
  font-size: 1rem;
}
p {
  margin-bottom: 20px;
}
strong {
  font-weight: 700;
  color: #17553A;
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #17553A;
  background: #E6DEE0;
  border-left: 5px solid #316C94;
  font-size: 1.1rem;
  padding: 18px 20px;
  margin-bottom: 8px;
  margin-top: 0;
  border-radius: 10px;
}


/* ================================
   GENERAL LAYOUT & CONTAINERS
   ================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px 0 rgba(70,107,79,0.08);
}
@media (max-width: 768px) {
  .section {
    padding: 30px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* =======================
   HEADER & NAVIGATION
   ======================= */
header {
  background: #fff;
  box-shadow: 0 2px 20px 0 rgba(49,108,148,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}
header a img {
  height: 42px;
  width: auto;
}
nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .012em;
  color: #17553A;
  padding: 8px 0;
  position: relative;
}
nav a:not(.btn-primary):hover,
nav a:not(.btn-primary):focus {
  color: #fff;
  background: #316C94;
  border-radius: 8px;
  padding: 8px 12px;
  transition: all .20s;
}
.btn-primary {
  background: #17553A;
  color: #fff !important;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.07rem;
  padding: 10px 28px;
  margin-left: 12px;
  box-shadow: 0 2px 12px 0 rgba(23,85,58,0.16);
  border: none;
  cursor: pointer;
  transition: background .22s, color .22s, transform .13s;
  text-shadow: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #316C94;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* Hide nav and show burger on mobile */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 980px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: #fff;
    border: none;
    font-size: 2.1rem;
    color: #316C94;
    padding: 0 14px;
    height: 48px;
    width: 48px;
    cursor: pointer;
    border-radius: 12px;
    transition: background .18s, color .18s;
    z-index: 9999;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #316C94;
    color: #fff;
  }
}

/* ============================
   MOBILE MENU & OVERLAY
   ============================ */
.mobile-menu {
  position: fixed;
  background: #17553A;
  color: #fff;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 99999;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(0.63,0,0.26,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0;
  min-width: 0;
  box-sizing: border-box;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.6rem;
  position: absolute;
  right: 20px;
  top: 18px;
  cursor: pointer;
  z-index: 100001;
  transition: color .13s, background .13s;
  border-radius: 50%;
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: #17553A;
}

.mobile-nav {
  margin-top: 90px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
  padding: 0 34px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.21rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  background: none;
  padding: 12px 0;
  border-radius: 0 12px 12px 0;
  width: 100%;
  transition: background .19s, color .18s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #316C94;
  color: #E6DEE0;
}

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

/* =========================
   MAIN SECTIONS/STYLES
   ========================= */
main {
  flex: 1 0 auto;
  padding-bottom: 24px;
  margin-top: 24px;
}
section {
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(49,108,148, .07);
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
  margin-bottom: 20px;
  justify-content: space-between;
}
.features-grid > div {
  flex: 1 1 220px;
  min-width: 200px;
  background: #E6DEE0;
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px 0 rgba(23,85,58,0.06);
  transition: box-shadow .15s, transform .18s;
  position: relative;
}
.features-grid > div:hover {
  box-shadow: 0 6px 32px 0 rgba(49,108,148,0.13),0 1.5px 12px 0 rgba(23,85,58,0.21);
  transform: translateY(-3px) scale(1.025);
}
.features-grid img {
  width: 46px;
  height: 46px;
}

@media (max-width: 900px) {
  .features-grid {
    gap: 20px;
  }
  .features-grid > div {
    flex: 1 1 48%;
    min-width: 180px;
    padding: 18px 13px;
  }
}
@media (max-width: 600px) {
  .features-grid {
    flex-direction: column;
    gap: 14px;
  }
  .features-grid > div {
    min-width: 0;
    width: 100%;
    padding: 13px 8px;
    border-radius: 12px;
  }
}

/* Card Container (using flex!) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(49,108,148,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  max-width: 370px;
  flex: 1 1 240px;
  transition: box-shadow .17s, transform .18s;
}
.card:hover {
  box-shadow: 0 5px 28px 0 rgba(23,85,58,0.13);
  transform: translateY(-2.5px) scale(1.018);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 20px;
}

/* Content Grid (using flex) */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width:600px){
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(49,108,148,0.09);
  padding: 20px;
  margin-bottom: 20px;
  border-left: 7px solid #316C94;
}
.testimonial-card blockquote {
  background: none;
  color: #222;
  border: none;
  margin: 0;
  padding: 0;
  font-size: 1.13rem;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #316C94;
  font-size: 1rem;
  margin-left: 10px;
}

@media (max-width:600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
  }
  .testimonial-author {
    margin-left: 0;
  }
}

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

/* Info Cards for Tiere.html */
.info-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 10px;
}
.info-cards > div {
  flex: 1 1 260px;
  background: #316C94;
  color: #fff;
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 2px 12px 0 rgba(49,108,148,.13);
  margin-bottom: 20px;
  transition: box-shadow .15s, transform .13s;
}
.info-cards > div:hover {
  box-shadow: 0 6px 28px 0 rgba(49,108,148,0.16),0 2px 14px 0 rgba(23,85,58,0.21);
  transform: translateY(-2px) scale(1.025);
}
.info-cards h3 {
  color: #fff;
}

@media (max-width: 720px) {
  .info-cards { flex-direction: column; gap: 12px; }
  .info-cards > div { width:100%; }
}

/* Other lists (feature, tip, contact) and infobox */
.feature-list,
.tip-list,
.contact-details {
  margin-left: 0;
  margin-bottom: 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.infobox {
  background: #E6DEE0;
  color: #17553A;
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: 1rem;
}
.infobox strong {
  color: #316C94;
}

.map-snippet {
  background: #316C94;
  color: #fff;
  border-radius: 8px;
  padding: 16px 18px;
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 600;
}
.map-snippet h3 {
  color: #fff;
  margin-bottom: 6px;
}

/* Footer Styles */
footer {
  background: #17553A;
  color: #fff;
  padding: 40px 0 0 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1.5px solid #316C94;
}
.footer-content > * {
  margin-bottom: 20px;
}
.footer-content a img {
  height: 42px;
  width: auto;
}
.footer-content span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #E6DEE0;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #E6DEE0;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-shadow: 0 2px 8px #316C94;
}
.contact-summary {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #E6DEE0;
  font-size: .97rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-summary img {
  height: 18px;
  width: 18px;
  vertical-align: middle;
  margin-right: 8px;
}
.social-media-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.social-media-links a img {
  width: 32px;
  height: 32px;
  filter:brightness(0) invert(.9) saturate(.6);
  transition: filter .19s, transform .16s;
}
.social-media-links a:hover img,
.social-media-links a:focus img {
  filter:brightness(1.1) invert(0) saturate(2);
  transform: scale(1.13) rotate(-6deg);
}

@media (max-width: 820px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* ===================
   FORMS & BUTTONS
   =================== */
input[type=text],
input[type=email],
input[type=password],
input[type=tel],
textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 9px;
  border: 1.5px solid #E6DEE0;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 18px;
  background: #fff;
  transition: border .18s;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
textarea:focus {
  border-color: #316C94;
  background: #E6DEE0;
}
button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  border-radius: 12px;
  padding: 10px 25px;
  background: #17553A;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background .18s, color .18s, transform .13s;
  margin-right: 14px;
  box-shadow: 0 2px 12px 0 rgba(23,85,58,0.13);
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: #316C94;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* ==========================
   COOKIE CONSENT BANNER
   ========================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120000;
  width: 100vw;
  background: #17553A;
  color: #fff;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  box-shadow: 0 -6px 32px 0 rgba(49,108,148,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px 10px 18px 10px;
  gap: 18px;
  flex-wrap: wrap;
  transition: opacity 0.2s, transform 0.23s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-banner-text {
  font-size: 1rem;
  color: #fff;
  max-width: 520px;
  flex: 1 1 320px;
}
.cookie-banner button:not(:last-child) {
  margin-right: 10px;
}
.cookie-banner .cookie-btn {
  background: #316C94;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  padding: 8px 16px;
  margin: 2px 0;
  border: none;
  margin-right: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: background .17s, color .17s;
  cursor: pointer;
}
.cookie-banner .cookie-btn:hover,.cookie-banner .cookie-btn:focus {
  background: #E6DEE0;
  color: #17553A;
}
.cookie-banner .cookie-settings-btn {
  background: #E6DEE0;
  color: #17553A;
  border-radius: 8px;
  font-weight: 800;
  margin-left: 8px;
  border: none;
  transition: background .17s, color .17s;
}
.cookie-banner .cookie-settings-btn:hover,.cookie-banner .cookie-settings-btn:focus {
  background: #316C94;
  color: #fff;
}

@media (max-width: 570px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: .97rem;
    padding: 14px 7px;
  }
  .cookie-banner .cookie-banner-text {
    font-size: .95rem;
    min-width: 0;
    padding-bottom: 2px;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  z-index: 120100;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(23, 85, 58, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity .21s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #222;
  padding: 34px 28px 24px 28px;
  border-radius: 18px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 8px 48px 0 rgba(49,108,148,.24);
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  position: relative;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal-content h2 {
  color: #17553A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  margin-bottom: 7px;
  font-size: 1.27rem;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
  font-size: 1.09rem;
}
.cookie-modal-content .cookie-toggle {
  width: 36px;
  height: 20px;
  background: #E6DEE0;
  border-radius: 11px;
  position: relative;
  transition: background .16s;
  margin-left: 10px;
  flex-shrink: 0;
}
.cookie-modal-content .cookie-toggle-switch {
  position: absolute;
  left: 3px; top: 2.4px;
  width: 15px; height: 15px;
  background: #316C94;
  border-radius: 50%;
  transition: transform .14s;
}
.cookie-modal-content .cookie-toggle.on {
  background: #316C94;
}
.cookie-modal-content .cookie-toggle.on .cookie-toggle-switch {
  background: #17553A;
  transform: translateX(16px);
}
.cookie-modal-content .cookie-toggle[aria-disabled='true'] {
  background: #E6DEE0;
  opacity: 0.65;
}
.cookie-modal-content .cookie-desc {
  font-size: .95rem;
  color: #316C94;
  margin-bottom: 11px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 19px;
  color: #316C94;
  font-size: 1.6rem;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .11s, color .11s;
}
.cookie-modal-close:hover,.cookie-modal-close:focus {
  background: #E6DEE0;
  color: #17553A;
}
.cookie-modal-actions {
  margin-top: 12px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-modal-actions button {
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 700;
}
@media (max-width: 520px) {
  .cookie-modal-content {
    min-width: 0;
    padding: 16px 4px 14px 9px;
    border-radius: 14px;
    font-size: .98rem;
  }
  .cookie-modal-content h2 {
    font-size: 1.09rem;
  }
}

/* =====================
   UTILITIES & GENERAL
   ===================== */
.text-center { text-align: center; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.flex { display: flex; }
.flex-column { flex-direction: column; }
.gap-20 { gap: 20px; }
.gap-10 { gap: 10px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-12 { margin-top: 12px; }
.mb-12 { margin-bottom: 12px; }
.rounded-12 { border-radius: 12px; }

/* ===============
   SCROLLBARS
   =============== */
::-webkit-scrollbar { width: 10px; background: #E6DEE0; border-radius: 12px; }
::-webkit-scrollbar-thumb { background: #316C94; border-radius: 12px; }

/* ===============
   MICROINTERACTIONS
   =============== */
section, .features-grid > div, .card, .info-cards > div, .testimonial-card {
  transition: box-shadow .17s, transform .15s;
}
section:hover, .card:hover, .info-cards > div:hover {
  box-shadow: 0 7px 40px 0 rgba(23,85,58,.17);
}

/* ===============
   MEDIA QUERIES
   =============== */
@media (max-width: 620px) {
  body {
    font-size: 14px;
  }
}
