/* 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;
}

/* Remove tap highlight */
html {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  height: 100%;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F0F3EF;
  color: #205c36;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #205c36;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #90ad2c;
}
ul, ol {
  margin-left: 22px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #205c36;
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.tagline {
  font-size: 1.15rem;
  color: #90ad2c;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #205c36;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  max-width: 60ch;
}
strong {
  font-weight: 700;
}

blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  color: #205c36;
  background: #F7FAF6;
  border-left: 5px solid #90ad2c;
  margin: 0 0 10px 0;
  padding: 20px 20px 10px 22px;
  border-radius: 10px 0 0 10px;
}


/* ---- CONTAINER LAYOUTS ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(47,84,48,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---- HEADER & NAVIGATION ---- */
header {
  background: #205c36;
  color: #fff;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 74px;
  box-shadow: 0 2px 13px 0 rgba(37,57,33,0.07);
  padding: 0 20px;
}
header > a img {
  height: 44px;
  margin-right: 18px;
}
header nav {
  display: flex;
  gap: 16px;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 7px 0 7px 0;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus, header nav a.active {
  background: #F0F3EF;
  color: #205c36;
}
header .cta-btn {
  margin-left: auto;
  margin-right: 10px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 10px;
  border-radius: 8px;
  padding: 2px 8px;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #90ad2c44;
}

/* ---- MOBILE NAVIGATION ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #205c36;
  z-index: 999;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 20px 22px 0 0;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 8px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #90ad2c44;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
  padding: 30px 36px 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 8px 0 8px 0;
  border-radius: 6px;
  width: 100%;
  transition: background 0.16s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #90ad2c99;
  color: #205c36;
}

/* RESPONSIVE HEADER/MENU */
@media (max-width: 1024px) {
  header nav, header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* ---- BUTTONS ---- */
.cta-btn,
button,
input[type="submit"] {
  display: inline-block;
  background: #90ad2c;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 30px;
  border: none;
  border-radius: 28px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 9px 0 rgba(144,173,44,0.06);
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  margin-top: 10px;
}
.cta-btn:hover, .cta-btn:focus,
button:hover, button:focus,
input[type="submit"]:hover, input[type="submit"]:focus {
  background: #205c36;
  color: #fff;
  outline: none;
  transform: translateY(-1px) scale(1.03);
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(120deg, #F0F3EF 88%, #90ad2c18 97%, #fff 100%);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 3px 16px 0 rgba(32,92,54,0.11);
  margin-bottom: 40px;
  padding: 60px 0 48px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.hero h1 {
  color: #205c36;
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.hero p {
  color: #205c36;
  font-size: 1.1rem;
  margin-bottom: 18px;
  max-width: 40ch;
}
@media (max-width: 600px) {
  .hero {
    padding: 36px 0 28px 0;
    border-radius: 0 0 14px 14px;
  }
  .hero h1 { font-size: 1.3rem; }
}


/* ---- FEATURES & CARDS ---- */
.features, .services {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(32,92,54,0.08);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .feature-grid,
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-card, .service-card {
  background: #F0F3EF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-basis: 270px;
  flex-grow: 1;
  min-width: 220px;
  max-width: 320px;
  padding: 26px 22px 20px 22px;
  border-radius: 15px;
  box-shadow: 0 2px 6px 0 rgba(32,92,54,0.04);
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, background 0.2s;
  border: 1px solid #eaf0e6;
  position: relative;
}
.feature-card:hover, .service-card:hover {
  box-shadow: 0 8px 20px 0 rgba(32,92,54,0.09);
  background: #fff;
}
.feature-card img, .service-card img {
  height: 38px;
  margin-bottom: 10px;
}
.feature-card h3, .service-card h2 {
  font-size: 1.15rem;
  color: #205c36;
  margin-bottom: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-card p, .service-card p {
  font-size: 1rem;
  color: #4d6356;
  line-height: 1.5;
  margin-bottom: 12px;
}
.feature-card span, .service-card span {
  color: #90ad2c;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 7px 0 0 0;
}

@media (max-width: 900px) {
  .features .feature-grid, .services .service-list {
    gap: 18px;
  }
  .feature-card, .service-card {
    min-width: 160px;
    flex-basis: 48%;
  }
}
@media (max-width: 650px) {
  .feature-card, .service-card {
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* ---- CARD LAYOUTS ---- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex-basis: 320px;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(32,92,54,0.09);
  border-radius: 16px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
}

.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;
  background: #F0F3EF;
  padding: 20px;
  border-radius: 13px;
  margin-bottom: 22px;
  box-shadow: 0 1px 6px 0 rgba(50,85,38,0.10);
  position: relative;
  flex-direction: column;
  border: 1px solid #e3ecd7;
  color: #205c36;
}
.testimonial-card blockquote {
  background: transparent;
  border-left: 4px solid #90ad2c;
  color: #205c36;
  font-size: 1.13rem;
  padding: 0 0 0 14px;
  margin-bottom: 7px;
  border-radius: 7px 0 0 7px;
}
.testimonial-author {
  color: #205c36;
  font-size: 0.96rem;
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  margin-bottom: 26px;
}
.client-logos img {
  height: 36px;
  opacity: 0.85;
  filter: grayscale(20%);
}
@media (max-width: 600px) {
  .client-logos img { height: 28px; }
}

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

/* ---- USP & TIMELINE ---- */
.usp-list {
  list-style: none;
  margin-left: 0;
  margin-bottom: 20px;
  color: #267343;
  font-size: 1rem;
}
.usp-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  line-height: 1.4;
}
.usp-list li::before {
  content: '✔';
  color: #90ad2c;
  font-size: 1rem;
  position: absolute;
  left: 2px;
  top: 0;
  font-weight: 700;
}
.timeline {
  margin: 0 0 15px 0;
  list-style: none;
}
.timeline li {
  margin-bottom: 13px;
  padding-left: 16px;
  position: relative;
  font-size: 1rem;
}
.timeline li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: #90ad2c;
  border-radius: 50%;
}

/* ---- TEAM ---- */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.team-member {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #F0F3EF;
  border-radius: 14px;
  box-shadow: 0 2px 9px 0 rgba(32,92,54,0.09);
  padding: 22px 18px 18px 18px;
  min-width: 210px;
  max-width: 290px;
  flex: 1 1 27%;
  margin-bottom: 18px;
  gap: 7px;
  border: 1px solid #e0eee2;
  transition: box-shadow 0.18s, transform 0.16s;
}
.team-member:hover {
  box-shadow: 0 8px 24px 0 rgba(29,85,53,0.11);
  transform: translateY(-2px) scale(1.02);
}
.team-member img {
  border-radius: 50%;
  height: 46px;
  margin-bottom: 7px;
  background: #fff;
  box-shadow: 0 1px 3px 0 rgba(180,193,183,0.11);
  border: 2px solid #f6f9f4;
}
.team-member h2 {
  font-size: 1.14rem;
  color: #205c36;
  margin-bottom: 3px;
}
.team-member p, .team-member span {
  font-size: 0.98rem;
}

.expertise-areas {
  margin-top: 8px;
}
.expertise-areas ul {
  margin-left: 12px;
}

/* ---- NEWS & AKTUELLES ---- */
.news-list {
  margin: 0 0 25px 0;
  padding-left: 13px;
}
.news-list li {
  margin-bottom: 14px;
  color: #205c36;
  font-size: 1rem;
}
.event-teaser, .newsletter-signup {
  background: #F0F3EF;
  border-radius: 13px;
  padding: 20px 20px 14px 20px;
  margin-bottom: 22px;
  box-shadow: 0 1px 5px 0 rgba(32,92,54,0.06);
}

/* ---- CONTACT & FOOTER ---- */
.contact-details ul {
  list-style: none;
  margin-left: 0;
}
.contact-details li {
  margin-bottom: 14px;
  font-size: 0.98rem;
  color: #205c36;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-details img {
  width: 22px;
  height: 22px;
}
.address {
  margin-bottom: 20px;
}
.map-embed {
  background: #F0F3EF;
  border-radius: 10px;
  padding: 18px 18px 12px 18px;
  font-size: 1rem;
  box-shadow: 0 1px 3px 0 rgba(32,92,54,0.04);
}
.hours-list {
  margin-left: 17px;
}
.hours-list li {
  margin-bottom: 9px;
}

footer {
  background: #205c36;
  color: #fff;
  padding: 30px 0 22px 0;
  width: 100%;
  border-radius: 24px 24px 0 0;
  margin-top: 70px;
  box-shadow: 0 -2px 11px 0 rgba(32,92,54,0.06);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
footer img {
  height: 42px;
  margin-bottom: 8px;
}
footer nav {
  display: flex;
  gap: 18px;
}
footer nav a {
  color: #fff;
  opacity: 0.87;
  font-size: 1rem;
  transition: color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: #90ad2c;
}
.contact-footer {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
  color: #F0F3EF;
  font-size: 0.97rem;
}
.contact-footer div {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 1px;
}
.contact-footer img {
  height: 19px;
  width: 19px;
}
@media (max-width: 720px) {
  footer .container {
    gap: 13px;
  }
  .contact-footer {
    flex-direction: column;
    gap: 10px;
  }
}

/* ---- CTA SECTION ---- */
.cta {
  margin-bottom: 60px;
  padding: 36px 20px;
  background: #F0F3EF;
  border-radius: 17px;
  box-shadow: 0 1px 6px 0 rgba(32,92,54,0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}
.cta h2, .cta p {
  color: #205c36;
}
.cta a.cta-btn {
  background: #205c36;
  color: #fff;
  margin: 0 auto;
}
.cta a.cta-btn:hover, .cta a.cta-btn:focus { background: #90ad2c; }

/* ---- THANK YOU PAGE ---- */
.thank-you .confirmation-message {
  background: #F0F3EF;
  border-radius: 10px;
  padding: 16px 18px 10px 16px;
  margin-bottom: 20px;
  color: #205c36;
  font-size: 1.06rem;
}
.next-steps {
  margin-bottom: 28px;
}
.next-steps h2 {
  font-size: 1.14rem;
  color: #205c36;
}
.next-steps ul {
  margin-left: 16px;
}

/* ---- POLICY SECTION STYLES ---- */
.text-section, .cookie-policy .text-section,
.privacy-policy .text-section,
.terms-of-use .text-section,
.gdpr-info .text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #205c36;
  background: transparent;
}
.cookie-list, .terms-list {
  margin-bottom: 13px;
  margin-left: 16px;
}

/* ---- RESPONSIVE DESIGN ---- */
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  header {
    height: 58px;
    flex-direction: row;
    padding: 0 8px;
  }
  header > a img {
    height: 33px;
    margin-right: 10px;
  }
  .section,
  .features,
  .services,
  .cta {
    padding: 18px 6px;
    margin-bottom: 34px;
    border-radius: 10px;
  }
  .feature-card, .service-card {
    padding: 14px 7px 12px 11px;
    min-width: 135px;
    font-size: 0.96rem;
  }
  .team-list {
    gap: 12px;
  }
  .team-member {
    padding: 12px 8px 10px 8px;
    min-width: 120px;
    max-width: 98vw;
  }
  .contact-footer {
    gap: 6px;
  }
  .testimonial-card {
    padding: 11px 6px 11px 10px;
    border-radius: 8px;
    font-size: 0.98rem;
  }
  .testimonial-card blockquote { font-size: 1rem; }
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 13px;
  }
}

/* ---- INTERACTIVE STATES & MICRO-INTERACTIONS ---- */
.card, .feature-card, .service-card, .team-member, .testimonial-card {
  transition: box-shadow 0.21s, transform 0.17s, background 0.15s;
}
.card:hover, .feature-card:hover, .service-card:hover, .team-member:hover {
  box-shadow: 0 8px 26px 0 rgba(32,92,54,0.13);
  transform: scale(1.025) translateY(-2px);
  background: #fff;
}
li, a, button, .cta-btn, input, textarea {
  outline: none;
  transition: outline-color 0.11s, box-shadow 0.13s;
}
a:focus, button:focus, .cta-btn:focus {
  outline: 2px dashed #90ad2c;
  outline-offset: 2px;
  box-shadow: 0 2px 7px 0 rgba(144,173,44,0.14);
}

/* ------ COOKIE CONSENT BANNER ------ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #ffffff;
  color: #205c36;
  box-shadow: 0 -2px 20px 0 rgba(32,92,54,0.14);
  border-top: 3px solid #90ad2c;
  z-index: 1100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  padding: 24px 16px 20px 16px;
  animation: cookiebanner-slidein 0.5s cubic-bezier(.8,0,.19,1);
}
@keyframes cookiebanner-slidein {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 1 1 60%;
  max-width: 440px;
  font-size: 1.02rem;
  color: #205c36;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 16px;
}
.cookie-banner button {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 20px;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(144,173,44,0.07);
  margin-right: 6px;
}
.cookie-banner .accept {
  background: #90ad2c;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #205c36;
  color: #fff;
}
.cookie-banner .reject {
  background: #e7eddd;
  color: #205c36;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #dbe6cd;
}
.cookie-banner .settings {
  background: none;
  color: #205c36;
  border: 1.5px solid #90ad2c;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #90ad2c;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 2vw 12px 2vw;
    gap: 12px;
  }
  .cookie-banner .cookie-actions {
    margin-left: 0;
    gap: 7px;
  }
  .cookie-banner {
    font-size: 0.98rem;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1204;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(36,66,39,0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  animation: modal-fadein 0.4s cubic-bezier(.87,0,.33,1);
}
@keyframes modal-fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #205c36;
  border-radius: 17px;
  box-shadow: 0 6px 44px 0 rgba(32,92,54,0.20);
  max-width: 420px;
  width: 92vw;
  padding: 34px 22px 22px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-scaleup 0.45s cubic-bezier(.8,0,.19,1);
}
@keyframes modal-scaleup {
  0% { transform: scale(0.95) translateY(45px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.21rem;
  margin-bottom: 5px;
}
.cookie-modal .cookie-groups {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-group {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.01rem;
}
.cookie-group input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: #90ad2c;
}
.cookie-group.essential input[type="checkbox"] {
  accent-color: #205c36;
}
.cookie-group.essential label {
  color: #205c36;
  font-weight: 500;
}
.cookie-group.essential input[type="checkbox"]:disabled {
  filter: grayscale(47%);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 15px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 19px;
  right: 19px;
  font-size: 1.55rem;
  background: none;
  border: none;
  color: #205c36;
  cursor: pointer;
  border-radius: 7px;
  padding: 4px 7px;
  transition: background 0.19s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #90ad2c22;
}
.cookie-modal button {
  font-size: 1rem;
  padding: 9px 20px;
  border-radius: 18px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.19s, color 0.14s;
}
.cookie-modal button.accept {
  background: #90ad2c;
  color: #fff;
}
.cookie-modal button.accept:hover, .cookie-modal button.accept:focus {
  background: #205c36;
}
.cookie-modal button.reject {
  background: #e7eddd;
  color: #205c36;
}
.cookie-modal button.reject:hover, .cookie-modal button.reject:focus {
  background: #dbe6cd;
}

/* ---- MISC/UTILITY CLASSES ---- */
.mt-1 { margin-top: 8px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mt-2 { margin-top: 18px !important; }
.mb-2 { margin-bottom: 18px !important; }
.py-2 { padding-top: 13px !important; padding-bottom: 13px !important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }

/* Hide visually, remain accessible */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* ---- TRANSITIONS (GLOBAL) ---- */
*, *:before, *:after {
  box-sizing: inherit;
  transition-property: box-shadow, background, color, border, transform;
  transition-duration: 0.16s;
  transition-timing-function: cubic-bezier(.75,0,.22,1);
}

/* ---- FONTS IMPORT ---- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
