/* Normalize & Reset */
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, main, 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;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F4F4F2;
  color: #225E47;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #225E47;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A67C5B;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
ul {
  list-style-type: square;
}
section {
  width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #225E47;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.17;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.subheadline {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 24px;
  letter-spacing: 0.015em;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
/* Geometric headline effect */
h1, h2, h3 {
  font-variant-ligatures: none;
}
h3 {
  letter-spacing: 0.03em;
}

/* Layout Utilities & CRITICAL Paddings */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(34,94,71,0.09);
  padding: 28px;
  min-width: 250px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2px solid #E0E6E3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 6px 30px rgba(34,94,71,0.18);
  transform: translateY(-4px) scale(1.015);
  border-color: #A67C5B;
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.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;
    gap: 18px;
  }
}

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

.card-grid, .feature-grid, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card-grid > *, .feature-grid > *, .blog-list > * {
  flex: 1 1 220px;
  min-width: 260px;
}

/* HERO */
.hero {
  background: #FFFFFF;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  border-bottom: 6px solid #A67C5B;
  box-shadow: 0 4px 22px rgba(34,94,71,.06);
}
.hero .content-wrapper {
  text-align: left;
  max-width: 680px;
  margin-left: 0;
}
.hero h1 {
  color: #225E47;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .hero {
    min-height: 220px;
    padding: 38px 0 0 0;
    border-bottom-width: 4px;
  }
  .hero .content-wrapper {
    align-items: flex-start;
    text-align: left;
    margin: 0;
  }
}

/* MAIN NAVIGATION & HEADER */
header {
  width: 100%;
  background: #fff;
  border-bottom: 3.5px solid #A67C5B;
  box-shadow: 0 2px 12px rgba(34,94,71,0.06);
  position: relative;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 4px 0;
  transition: color 0.17s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -5px;
  height: 3px;
  background: #A67C5B;
  border-radius: 2px 2px 0 0;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  opacity: 1;
  transform: scaleX(1.23);
}
.main-nav a:hover, .main-nav a:focus {
  color: #A67C5B;
}
.cta-button {
  background: #225E47;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  border-radius: 24px;
  padding: 14px 32px;
  box-shadow: 0 2px 8px rgba(34,94,71,0.11);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  cursor: pointer;
  margin-left: 28px;
  outline: none;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: #A67C5B;
  color: #fff;
  box-shadow: 0 8px 32px rgba(34,94,71,0.19);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 17px;
  }
  .cta-button {
    margin-left: 14px;
    padding: 12px 20px;
    font-size: 0.98rem;
  }
  header .container {
    gap: 13px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  .cta-button {
    margin-left: 8px;
    padding: 10px 15px!
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  header .container {
    min-height: 60px;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #225E47;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  width: 46px;
  height: 46px;
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 50;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #A67C5B;
  color: #fff;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF;
  box-shadow: 0 2px 44px rgba(34,94,71,0.19);
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.82,.01,.20,.98);
  padding: 0 34px 0 28px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 2rem;
  color: #225E47;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1011;
  padding: 3px 7px;
  border-radius: 7px;
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #E0E6E3;
  color: #A67C5B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 58px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 15px 0;
  border-bottom: 1.5px solid #F4F4F2;
  color: #225E47;
  letter-spacing: 0.063em;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #A67C5B;
  background: #F4F4F2;
  border-radius: 8px;
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* SECTIONS */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .section, section {
    padding: 28px 7px;
    margin-bottom: 36px;
  }
}

/* FEATURES & CARDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.feature-grid > li {
  background: #fff;
  border: 2px solid #E0E6E3;
  border-radius: 15px;
  box-shadow: 0 2px 11px rgba(34,94,71,.05);
  padding: 26px 18px 26px 18px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  transition: border 0.18s, box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid > li:hover, .feature-grid > li:focus-within {
  border-color: #A67C5B;
  box-shadow: 0 4px 22px rgba(34,94,71,0.12);
  transform: translateY(-2px) scale(1.02);
  z-index: 2;
}
.feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(52%) saturate(414%) hue-rotate(97deg) brightness(90%) contrast(95%);
}
.feature-list, .service-list, .tour-list, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 800px) {
  .feature-grid > li, .card {
    min-width: 98vw;
    max-width: 97vw;
    align-self: stretch;
  }
}

/* BLOG POST LIST */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 19px;
}
.blog-list article {
  background: #fff;
  border-radius: 14px;
  border: 2px solid #E0E6E3;
  box-shadow: 0 1.5px 10px rgba(34,94,71,0.07);
  padding: 24px 20px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
  transition: border 0.17s, box-shadow 0.17s, transform 0.17s;
}
.blog-list article:hover, .blog-list article:focus-within {
  border-color: #A67C5B;
  box-shadow: 0 8px 34px rgba(34,94,71,0.13);
  transform: translateY(-2px) scale(1.02);
}
.blog-list a {
  color: #225E47;
  text-decoration: underline;
  margin-top: 4px;
  font-weight: 500;
  transition: color 0.18s;
}
.blog-list a:hover, .blog-list a:focus {
  color: #A67C5B;
}

.featured-post {
  margin: 16px 0 6px 0;
  font-family: 'Montserrat',Arial,sans-serif;
  background: #F4F4F2;
  padding: 10px 14px;
  border-radius: 9px;
  letter-spacing: 0.01em;
  font-size: 1.03rem;
}
.featured-post a {
  font-weight: 700;
  color: #225E47;
  letter-spacing: 0.02em;
}

.category-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 19px;
  font-size: 1rem;
  color: #815429;
  font-family: 'Montserrat',Arial,sans-serif;
}
.category-filters span {
  color: #225E47;
  font-weight: bold;
}
.category-filters a {
  color: #A67C5B;
  font-weight: 600;
  text-decoration: underline;
  margin: 0 3px;
}
.category-filters a:hover {
  color: #225E47;
}

/* Testimonials Section and Card */
.testimonials {
  background: #F4F4F2;
  padding: 40px 0;
  margin-bottom: 0;
}
.testimonials .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #1f352b;
  border-left: 6px solid #A67C5B;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 260px;
  box-shadow: 0 2px 20px rgba(34,94,71,0.07);
  font-size: 1.08rem;
  position: relative;
  transition: border 0.13s, box-shadow 0.18s, transform 0.11s;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  color: #A67C5B;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-left-color: #225E47;
  box-shadow: 0 6px 28px rgba(34,94,71,0.17);
  transform: translateY(-2px);
  z-index: 2;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    min-width: 100%;
  }
}

/* USP Icons row */
.usp-icons {
  display: flex;
  gap: 24px;
  margin-bottom: 15px;
}
.usp-icons img {
  width: 40px;
  height: 40px;
  filter: brightness(0) saturate(100%) invert(35%) sepia(50%) saturate(313%) hue-rotate(97deg) brightness(92%) contrast(93%);
  background: #F4F4F2;
  border-radius: 10px;
  padding: 5px;
  transition: filter 0.13s;
}
.usp-icons img:hover {
  filter: brightness(0.8) sepia(1) hue-rotate(24deg) saturate(2);
}
.usp-descriptions ul {
  margin: 0 0 8px 17px;
  padding: 0;
}

/* FOOTER */
footer {
  background: #225E47;
  color: #fff;
  width: 100%;
  font-size: 1rem;
  border-top: 5px solid #A67C5B;
  position: relative;
  z-index: 2;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 20px 24px 20px;
}
.footer-links, .footer-legal, .footer-contact, .footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}
.footer-links a, .footer-legal a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-right: 9px;
  margin-bottom: 2px;
  transition: color 0.17s;
}
.footer-links a:hover, .footer-legal a:hover {
  color: #A67C5B;
}
.footer-contact {
  color: #fff;
  font-size: 0.99rem;
  font-family: 'Roboto', Arial, sans-serif;
  flex-wrap: wrap;
  gap: 13px;
}
.footer-newsletter .text-section {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  margin-top: 0;
}
.footer-social a {
  margin-right: 7px;
  display: inline-flex;
}
.footer-social img {
  width: 27px;
  height: 27px;
  display: block;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 1px 3px rgba(129,84,41,0.04);
  transition: filter 0.18s, box-shadow 0.16s;
}
.footer-social img:hover {
  filter: grayscale(22%) brightness(1.2) sepia(0.26);
  box-shadow: 0 3px 10px rgba(166,124,91,0.11);
}
@media (max-width: 900px) {
  footer .container {
    padding: 25px 7px 20px 7px;
    gap: 15px;
  }
  .footer-contact, .footer-links, .footer-legal {
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .footer-contact, .footer-links, .footer-legal, .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* Forms, Newsletter, Contact */
input, button, textarea, select {
  font-family: inherit;
  font-size: 16px;
  outline: none;
}
input[type="text"], input[type="email"], textarea {
  border: 2px solid #225E47;
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 12px;
  width: 100%;
  transition: border 0.16s;
  background: #fff;
  color: #225E47;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #A67C5B;
}
button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 24px;
  background: #225E47;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-weight: 700;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(34,94,71,0.08);
}
button:hover, button:focus {
  background: #A67C5B;
  color: #fff;
  box-shadow: 0 8px 30px rgba(34,94,71,0.13);
}

/* Responsive adjustments for all layouts */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
    padding: 0 7px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 5px;
  }
  .feature-grid, .blog-list, .card-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > li, .card {
    min-width: 100%;
    max-width: 100%;
  }
  .testimonial-card {
    min-width: 100%;
  }
}

/* Cookie Consent Banner + Modal */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #225E47;
  border-top: 4px solid #A67C5B;
  box-shadow: 0 -3px 16px rgba(34,94,71,0.13);
  z-index: 1010;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  font-family: 'Roboto',Arial,sans-serif;
  font-size: 1rem;
  gap: 20px;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(.6,.2,.16,1), opacity 0.27s;
  opacity: 0;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__text {
  max-width: 600px;
  flex: 1 1 300px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner__button {
  background: #225E47;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 8px 23px;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1rem;
  transition: background 0.14s, color 0.14s, box-shadow 0.13s;
  cursor: pointer;
}
.cookie-banner__button.reject {
  background: #E0E6E3;
  color: #225E47;
  box-shadow: 0 1.5px 7px rgba(160,160,160,0.07);
}
.cookie-banner__button.settings {
  background: #A67C5B;
  color: #fff;
}
.cookie-banner__button:hover, .cookie-banner__button:focus {
  background: #A67C5B;
  color: #fff;
  box-shadow: 0 7px 24px rgba(166,124,91,0.08);
}
@media (max-width: 700px) {
  .cookie-banner {
    padding: 18px 7px;
    font-size: 0.98rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
  }
  .cookie-banner__actions {
    gap: 8px;
  }
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,94,71, 0.45);
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #225E47;
  border-radius: 16px;
  box-shadow: 0 8px 46px rgba(34,94,71,0.21);
  padding: 32px 38px 32px 38px;
  min-width: 320px;
  max-width: 90vw;
  z-index: 1200;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.45rem;
  color: #225E47;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 8px;
}
.cookie-modal .category-label {
  font-weight: 600;
  font-size: 1.09rem;
  color: #225E47;
  min-width: 120px;
  font-family: 'Montserrat',Arial,sans-serif;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #225E47;
  width: 21px;
  height: 21px;
}
.cookie-modal .essential {
  color: #A67C5B;
  font-style: italic;
  font-size: 0.98rem;
}
.cookie-modal__actions {
  display: flex;
  gap: 15px;
  margin-top: 7px;
}
.cookie-modal__button {
  background: #225E47;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 7px 21px;
  font-size: 1rem;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal__button.close {
  background: #E0E6E3;
  color: #225E47;
}
.cookie-modal__button.close:hover {
  background: #F4F4F2;
}
.cookie-modal__button.accept {
  background: #A67C5B;
  color: #fff;
}
.cookie-modal__button.accept:hover {
  background: #225E47;
}
@media (max-width:520px) {
  .cookie-modal {
    padding: 14px 7px 18px 7px;
    min-width: 90vw;
  }
}

/* Misc & details */
.privacy-text, .cookies-text, .terms-text, .gdpr-text {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 11px rgba(160,160,160,0.04);
  padding: 23px 20px 21px 19px;
  margin-bottom: 18px;
  color: #225E47;
}
.data-protection-principles ul, .user-rights ul, .user-obligations ul, .cookie-types ul {
  margin: 0 0 8px 18px;
  padding: 0;
}

/******* Thank You, Gratitude Message styling *******/
.gratitude-message, .next-steps {
  color: #225E47;
  font-family: 'Roboto',sans-serif;
  font-size: 1.2rem;
  margin-bottom: 13px;
}
.next-steps {
  color: #A67C5B;
  font-style: italic;
  margin-bottom: 18px;
}

/******* Accessibility & Focus States ******/
a, button, .cta-button, .cookie-banner__button, .cookie-modal__button {
  outline-color: #A67C5B;
  outline-width: 2px;
  outline-style: solid;
  outline-offset: 2px;
}
:focus-visible {
  outline: 2px solid #A67C5B;
  outline-offset: 2px;
}
.no-outline:focus, .no-outline:active {
  outline: none !important;
}

/************** Geometric structured effects **********/
/* Diagonal lines, angular corners for 'geometric_structured' look */
.card, .feature-grid > li, .testimonial-card, .blog-list article {
  border-radius: 18px 7px 12px 18px;
  border-style: solid;
  border-width: 2px 2px 3.5px 3.5px;
}
.cta-button, button, .cookie-banner__button, .cookie-modal__button {
  border-radius: 24px 7px 18px 22px;
}

/* Decorative geometric lines for h2 */
h2 {
  position: relative;
  padding-left: 19px;
}
h2:before {
  content: "";
  display: block;
  position: absolute;
  left: 0; top: 13px;
  width: 10px; height: 3px;
  background: #A67C5B;
  border-radius: 2px;
}
h2:after {
  content: "";
  display: block;
  position: absolute;
  left: 0; top: 23px;
  width: 19px; height: 2px;
  background: #225E47;
  border-radius: 2px;
}
@media (max-width: 600px) {
  h2 {
    padding-left: 11px;
    font-size: 1.21rem;
  }
  h2:before,
  h2:after {
    width: 7px;
    left: 0;
  }
}

/*********** Utility Helper Classes ***********/
.hidden {
  display: none !important;
}
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-col { display: flex; flex-direction: column; }

/************* End of CSS **************/
