/* =========================
   CSS RESET & BASE STYLES
   ========================= */
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;
  background: #F5F6F2;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #234874;
  background: #F5F6F2;
  min-height: 100vh;
  line-height: 1.7;
}
img, picture {
  max-width: 100%; display: block;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: 100%;
  outline: none;
}
a {
  color: #6D983B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #234874;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
  padding: 0;
}
strong, b {
  font-weight: 700;
}
section {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(35, 72, 116, 0.05);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #234874;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 12px;
}
h2 {
  font-size: 2rem; /* 32px */
}
h3 {
  font-size: 1.25rem; /* 20px */
}
h4 {
  font-size: 1.15rem;
}
p, li, address, span {
  font-size: 1rem;
  color: #234874;
}
.short-excerpt {
  font-size: 1.125rem;
  font-style: italic;
  color: #4067a7;
  margin-bottom: 18px;
}

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

/* ================================
   HEADER & NAVIGATION (DESKTOP)
   ================================ */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(35, 72, 116, 0.07);
  border-radius: 0 0 24px 24px;
  padding: 0 0 0 0;
  position: relative;
  z-index: 101;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 12px 16px;
}
header img {
  height: 48px;
  border-radius: 15px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 20px;
  padding: 7px 18px;
  color: #234874;
  transition: background .2s, color .2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F7EEE4;
  color: #6D983B;
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 25px;
  padding: 11px 32px;
  color: #fff;
  background: #6D983B;
  box-shadow: 0 2px 12px rgba(109, 152, 59, 0.12);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-left: 22px;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #234874;
  transform: translateY(-2px) scale(1.03);
  color: #fff;
  box-shadow: 0 4px 20px rgba(35, 72, 116, 0.10);
}

/* =========================
   HEADER - MOBILE NAVIGATION
   ========================= */
.mobile-menu-toggle {
  display: none;
  background: #FBE3CD;
  color: #234874;
  border: none;
  border-radius: 16px;
  font-size: 2rem;
  padding: 8px 14px;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.2s;
  z-index: 112;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #EADBC5;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: #fff;
  box-shadow: 0 8px 32px rgba(35,72,116,0.17);
  z-index: 120;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.19,1,.22,1);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FAD9B2;
  border: none;
  border-radius: 18px;
  color: #234874;
  font-size: 2.2rem;
  font-weight: 700;
  align-self: flex-end;
  margin: 8px 18px 14px auto;
  padding: 8px 18px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #EADBC5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #234874;
  background: #F5F6F2;
  padding: 14px 36px;
  border-radius: 18px;
  width: 86%;
  text-align: center;
  margin-bottom: 2px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: #6D983B;
  color: #fff;
}
@media (max-width: 1100px) {
  header .container {
    padding: 16px 6px 12px 6px;
  }
  .main-nav {
    gap: 12px;
    margin-left: 13px;
  }
}
@media (max-width: 900px) {
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Hide mobile menu by default on desktop */
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* Ensure nav z-index over content */
header, .mobile-menu {
  z-index: 120 !important;
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
  background: linear-gradient(120deg, #F5F6F2 76%, #FBE3CD 100%);
  border-radius: 28px;
  min-height: 258px;
  margin-bottom: 60px;
  box-shadow: 0 2px 18px rgba(250, 217, 178, 0.08);
}
.hero h1 {
  font-size: 2.7rem;
  color: #234874;
}
.hero p {
  font-size: 1.16rem;
  color: #4067a7;
  margin-bottom: 18px;
}
.hero .btn-primary {
  margin-top: 8px;
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1.5rem; }
}

/* =============================
   FLEX LAYOUT PATTERNS
   ============================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(35, 72, 116, 0.07);
  margin-bottom: 20px;
  padding: 28px 20px;
  position: relative;
  transition: box-shadow 0.21s, transform 0.21s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 4px 26px rgba(109,152,59,0.16);
  transform: translateY(-3px) scale(1.012);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .card-container, .content-grid { flex-direction: column; }
}

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

/***** Testimonial Card *****/
.testimonial-card {
  background: #FBE3CD;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(35,72,116,0.06);
  position: relative;
  min-width: 0;
  transition: box-shadow 0.25s, transform 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(35,72,116,0.13);
  transform: scale(1.017);
}
.testimonial-card p {
  color: #234874;
  font-size: 1.12rem;
}
.testimonial-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.97rem;
  color: #234874;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 0.82;
}
@media (max-width: 570px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/***** Buttons & Links *****/
.btn-primary:focus { box-shadow: 0 0 0 3px #FAD9B2; outline: none; }

/* =====================
   FEATURES SECTION LIST
   ===================== */
#features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 16px;
}
#features li {
  background: #F5F6F2;
  border-radius: 22px;
  box-shadow: 0 1px 8px rgba(35,72,116,0.07);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 17px;
  margin-bottom: 16px;
  flex: 1 1 280px;
  min-width: 240px;
  max-width: 390px;
  transition: box-shadow 0.18s;
  border: 1px solid #FBE3CD;
}
#features li:hover {
  box-shadow: 0 6px 18px rgba(109, 152, 59, 0.08);
  border-color: #6D983B26;
}
#features img {
  width: 38px; height: 38px; min-width: 38px;
}
#features h3 { font-size: 1.13rem; margin-bottom: 3px; color: #234874; }
#features p { color: #496b9c; }
@media (max-width: 770px) {
  #features ul { flex-direction: column; gap: 12px; }
}

/* =====================
   TOUR HIGHLIGHTS (index)
   ===================== */
#tour-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 16px;
  margin-bottom: 14px;
}
#tour-highlights li strong {
  color: #6D983B;
}

/* =====================
   TIPS PREVIEW (index)
   ===================== */
#tips-preview ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 10px;
  margin-bottom: 13px;
}
#tips-preview li {
  color: #4067a7;
}

/* =====================
   TEAM LIST (about)
   ===================== */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.team-member {
  background: #F5F6F2;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(35, 72, 116, 0.05);
  padding: 20px 18px;
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 270px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, background 0.2s;
}
.team-member:hover {
  background: #FBE3CD;
  box-shadow: 0 2px 16px rgba(250, 217, 178, 0.17);
}
@media (max-width: 700px) {
  .team-list { flex-direction: column; gap: 12px; }
}

/* =====================
   TOUR FILTERS & CARDS (touren)
   ===================== */
.tour-filters {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  background: #F5F6F2;
  border-radius: 15px;
  padding: 10px 14px;
}
.tour-filters span {
  background: #FBE3CD;
  color: #234874;
  border-radius: 15px;
  font-size: 0.98rem;
  padding: 6px 13px;
  margin-right: 6px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.tour-filters span:hover {
  background: #6D983B;
  color: #fff;
}
.tour-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 14px;
  margin-bottom: 12px;
}
.tour-cards li {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 1px 7px rgba(35, 72, 116, 0.07);
  padding: 20px 22px;
  flex: 1 1 230px;
  min-width: 180px;
  max-width: 310px;
  margin-bottom: 20px;
  transition: box-shadow 0.13s, background 0.18s;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.tour-cards li:hover {
  background: #FBE3CD;
  box-shadow: 0 2px 18px rgba(250,217,178,0.11);
}
@media (max-width: 700px) {
  .tour-cards { flex-direction: column; gap: 10px; }
}

/* =====================
   CATEGORY TABS (touren)
   ===================== */
.category-tabs {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  margin-top: 12px;
}
.category-tabs span {
  background: #FBE3CD;
  color: #234874;
  border-radius: 13px;
  font-size: 1rem;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s;
}
.category-tabs span:hover, .category-tabs span.active {
  background: #6D983B;
  color: #fff;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 5px;
}
.categories-grid span {
  background: #F5F6F2;
  border-radius: 14px;
  color: #234874;
  font-size: 1rem;
  padding: 8px 18px;
  margin-bottom: 6px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.categories-grid span:hover {
  background: #FBE3CD;
  color: #6D983B;
}

/* =====================
   TOP TIPS (spartipps)
   ===================== */
.tip-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 14px;
}
.tip-cards li {
  background: #F5F6F2;
  border-radius: 16px;
  box-shadow: 0 1px 7px rgba(35, 72, 116, 0.07);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  min-width: 156px;
  flex: 1 1 220px;
  transition: box-shadow 0.13s, background 0.17s;
  margin-bottom: 20px;
}
.tip-cards li:hover {
  background: #FBE3CD;
  box-shadow: 0 2px 18px rgba(250,217,178,0.09);
}
.tip-cards img {
  width: 32px; height: 32px; margin-bottom: 0;
}

@media (max-width: 700px) {
  .tip-cards { flex-direction: column; gap: 8px; }
}

ol, ul {
  margin-bottom: 0;
}

ol li, ul li {
  margin-bottom: 0;
}

/* =====================
   FAQ ACCORDION (faq)
   ===================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
  margin-bottom: 8px;
}
.faq-item {
  background: #F5F6F2;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(35,72,116,0.06);
  padding: 18px 17px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.15s;
}
.faq-item h2 {
  font-size: 1.18rem;
  color: #6D983B;
}
.faq-item div {
  color: #234874;
  font-size: 1rem;
  margin-left: 7px;
}
.search-bar {
  padding: 10px 18px;
  border-radius: 13px;
  border: 1px solid #D3D7DA;
  margin-bottom: 18px;
  font-size: 1rem;
  width: 100%;
}
.search-bar:focus {
  border-color: #6D983B;
  box-shadow: 0 2px 9px rgba(109,152,59,0.09);
}

/* =====================
   BLOG STYLES
   ===================== */
.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 10px 0;
}
.recent-posts-list a {
  color: #4067A7;
  padding: 4px 2px;
  border-radius: 9px;
  transition: background 0.18s, color 0.2s;
}
.recent-posts-list a:hover {
  background: #FBE3CD;
  color: #234874;
}
.article-highlight {
  background: #FBE3CD;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(250, 217, 178, 0.12);
  margin-bottom: 18px;
  min-width: 0;
}
.article-highlight h3 {
  color: #234874;
}
.article-highlight a {
  color: #6D983B;
  background: #fff;
  border-radius: 13px;
  padding: 9px 22px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 12px;
  display: inline-block;
  box-shadow: 0 1px 8px rgba(35,72,116,0.11);
  transition: background 0.2s, color 0.2s;
}
.article-highlight a:hover {
  background:#6D983B; color:#fff;
}

/* =========================
   CONTACT DETAILS (kontakt)
   ========================= */
#contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-left: 6px;
  margin-bottom: 11px;
  margin-top: 12px;
}
#contact-details li {
  display: flex; align-items: center; gap:12px;
  color: #4067a7;
}
#contact-details img {
  width: 24px; height: 24px;
}
#map-location .text-section {
  display: flex;
  flex-direction: column;
  gap:10px;
}

/* =========================
   TEXT CONTENT SECTIONS
   ========================= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}
.text-section h2 { color: #6D983B; margin-bottom: 2px; }

/* =========================
   FOOTER
   ========================= */
footer {
  background: #fff;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -2px 18px rgba(35,72,116,0.06);
  padding: 32px 0 24px 0;
  margin: 72px 0 0 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-brand img {
  height: 40px;
  border-radius: 10px;
}
.footer-brand span {
  color: #6D983B;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: flex-start;
}
.footer-nav a {
  color: #234874;
  font-size: 0.97rem;
  border-radius: 8px;
  padding: 3px 7px;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover {
  background: #FBE3CD;
  color: #6D983B;
}
address {
  font-style: normal;
  color: #234874;
  font-size: 0.94rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-left: 22px;
}
address img { width: 17px; height: 17px; margin-right: 7px; }
address a { color: #6D983B; text-decoration: underline; }

@media (max-width: 850px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  address {margin-left: 0;}
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right:0;
  background: #FBE3CD;
  color: #234874;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 17px 20px;
  box-shadow: 0 -2px 16px rgba(35,72,116,0.09);
  z-index: 200;
  border-radius: 20px 20px 0 0;
  animation: fadeInUpCookie 0.5s ease;
  gap: 24px;
}
@keyframes fadeInUpCookie {
  0% {transform: translateY(70px); opacity:0;}
  100% {transform: translateY(0); opacity:1;}
}
#cookie-banner p {
  flex: 1;
  font-size: 1rem;
  color: #234874;
}
#cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
#cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 17px;
  padding: 8px 18px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  background: #6D983B;
  color: #fff;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
#cookie-banner button:hover {
  background: #234874;
  color: #fff;
}
#cookie-banner .cookie-settings {
  background: #fff;
  color: #234874;
  border: 1px solid #6D983B;
  transition: background 0.2s, color 0.2s;
}
#cookie-banner .cookie-settings:hover {
  background: #FBE3CD;
  color: #6D983B;
}
@media (max-width: 700px) {
  #cookie-banner { flex-direction: column; gap:10px; padding: 13px 8px 11px 8px; }
  #cookie-banner p { font-size: 0.95rem; }
}

/* --------------------------
   COOKIE MODAL
--------------------------- */
#cookie-modal {
  position: fixed;
  left: 0; right:0; top: 0; bottom:0;
  background: rgba(36,52,70,0.18);
  z-index: 201;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInBg 0.18s;
  pointer-events: all;
}
@keyframes fadeInBg {
  0% {opacity:0;}
 100%{opacity:1;}
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px 30px 28px;
  box-shadow: 0 4px 32px rgba(35,72,116,0.17);
  max-width: 400px;
  min-width: 0;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: popCookieModal 0.28s;
}
@keyframes popCookieModal {
  0% {transform: scale(0.95); opacity:0;}
  100%{transform: scale(1); opacity:1;}
}
.cookie-modal-content h2 {
  font-size: 1.28rem;
  color: #234874;
  margin-bottom: 2px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.toggle {
  appearance: none;
  width: 42px; height: 24px;
  background: #FBE3CD;
  border-radius: 14px;
  border: none;
  outline: none;
  transition: background 0.18s;
  position: relative;
  cursor: pointer;
}
.toggle:checked {
  background: #6D983B;
}
.toggle::after {
  content: '';
  display: block;
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.toggle:checked::after {
  transform: translateX(18px);
}
.cookie-category label {
  font-size: 1rem;
  color: #234874;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.cookie-modal-content .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 14px;
  padding: 7px 19px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  background: #6D983B;
  color: #fff;
  font-weight: 600;
  transition: background 0.18s;
}
.cookie-modal-content .btn.secondary {
  background: #fff;
  color: #234874;
  border: 1px solid #6D983B;
}
.cookie-modal-content .btn.secondary:hover {
  background: #EFF6EC;
  color: #6D983B;
}
.cookie-modal-content .btn:hover {
  background: #234874;
  color: #fff;
}
.cookie-modal-content .close-cookie-modal {
  position: absolute; top: 12px; right: 16px;
  background: transparent;
  color: #234874;
  border: none;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
}

/* =========================
   RESPONSIVE MEDIA QUERIES
   ========================= */
@media (max-width: 650px) {
  section { padding: 24px 7px; }
  .container { padding: 0 4px; }
}
@media (max-width: 530px) {
  h1 { font-size:1.32rem; }
  h2 { font-size:1.09rem; }
  .btn-primary { padding: 9px 18px; font-size: 0.98rem; }
  .cookie-modal-content { padding: 16px 5px 16px 6px; }
}

/* ===================
   THANK YOU/ CTA/ ETC
   =================== */
#cta, #thank-you, #tour-cta, #contact-suggestion {
  background: #EFF6EC;
  border-radius: 23px;
  text-align: center;
}
#cta .btn-primary, #thank-you .btn-primary, #tour-cta .btn-primary, #contact-suggestion .btn-primary {
  margin-top: 16px;
}

/* HIDE/SHOW COOKIE BANNER */
#cookie-banner { display: none; }
#cookie-banner.show { display: flex; }
#cookie-modal { display: none; }
#cookie-modal.show { display: flex; }

/* ====================
   MISC/MICRO INTERACTIONS
   ==================== */
section, .card, .team-member, .testimonial-card, .footer-brand, .tip-cards li, .article-highlight, .tour-cards li, .faq-item {
  transition: box-shadow 0.24s, background 0.2s, transform 0.20s;
}
a, button {
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.19s;
}

/**********************************************/
/* END OF STYLES: No CSS Grid, only Flexbox!  */
/**********************************************/
