/* 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, ul, ol, 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;
  vertical-align: baseline;
  font-size: 100%;
  background: transparent;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #222;
  background: #F6F4F0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #245A82;
  text-decoration: none;
  transition: color .2s;
}
a:focus {
  outline: 2px solid #245A82;
  outline-offset: 3px;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

/* FLEX CONTAINER CLASSES -------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 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: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(36,90,130,0.06), 0 1px 4px rgba(36,90,130,0.01);
}
.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;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(36,90,130,0.08), 0 1.5px 6px rgba(36,90,130,0.04);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BRAND TYPOGRAPHY ------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #245A82;
  margin-bottom: 8px;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.1;
  margin-bottom: 12px;
}
h2 {
  font-size: 2rem;
  line-height: 1.18;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.35rem;
  line-height: 1.2;
}
h4 {
  font-size: 1.1rem;
  line-height: 1.25;
}
p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.62;
  color: #333;
  font-weight: 400;
  margin-bottom: 10px;
}
strong, b {
  font-weight: 700;
  color: #206e39;
}
ul, ol {
  margin-left: 18px;
  margin-bottom: 16px;
}

/* COLOR UTILS ------------------------------------------------------------ */
.bg-primary { background: #245A82; color: #fff; }
.bg-secondary { background: #F6F4F0; color: #222; }
.bg-accent { background: #48A366; color: #fff; }
.text-accent, .accent { color: #48A366 !important; }

/* BUTTONS --------------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 38px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: #245A82;
  color: #fff;
  border: none;
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(36,90,130,0.08);
  transition: background 0.2s, transform 0.13s, box-shadow .18s;
  cursor: pointer;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 10px;
}
.btn-primary:focus, .btn-primary:hover {
  background: #206e39;
  color: #fff;
  transform: translateY(-1.5px) scale(1.025);
  box-shadow: 0 6px 18px rgba(36,90,130,0.16);
}
.btn-link {
  display: inline-block;
  padding: 0;
  font-weight: 700;
  color: #245A82;
  border: none;
  background: none;
  text-decoration: underline;
  transition: color 0.16s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.btn-link:hover, .btn-link:focus {
  color: #206e39;
}

/* NAVIGATION ------------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(36,90,130,0.07);
  position: sticky;
  top: 0;
  z-index: 110;
}
.logo img {
  height: 45px;
  display: block;
  margin-right: 20px;
}
header .container {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #245A82;
  padding: 4px 12px;
  border-radius: 20px;
  transition: background .15s, color .13s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F6F4F0;
  color: #206e39;
}
.main-nav .btn-primary {
  color: #F6F4F0;
  margin-left: 18px;
  margin-top: 0;
  padding: 10px 26px;
  font-size: 1rem;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #245A82;
  background: none;
  border: none;
  margin-left: 18px;
  transition: color .12s;
  z-index: 120;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #206e39;
}

/* MOBILE MENU ------------------------------------------------------------ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,90,130,0.95);
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform .38s cubic-bezier(.71,.07,.51,.88);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow-y: auto;
  padding: 36px 24px;
  box-sizing: border-box;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.2rem;
  background: none;
  color: #fff;
  border: none;
  z-index: 1001;
  cursor: pointer;
  transition: color .15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #48A366;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 70px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: bold;
  color: #fff;
  padding: 12px 0;
  border-radius: 10px;
  transition: background .12s, color .12s;
  width: 100%;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #48A366;
  color: #fff;
}

/* HERO SECTION ----------------------------------------------------------- */
.hero {
  padding: 52px 0 40px 0;
  background: #245A82;
  color: #fff;
}
.hero h1, .hero h2, .hero h3 {
  color: #fff;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper > * {
  color: #fff;
}
.hero p {
  font-size: 1.22rem;
  color: #F6F4F0;
  margin-bottom: 16px;
  margin-top: 6px;
}
.hero .btn-primary {
  background: #48A366;
  color: #fff;
  margin-top: 12px;
  margin-bottom: 0;
}
.hero .btn-primary:hover, .hero .btn-primary:focus {
  background: #fff;
  color: #245A82;
}

/* SECTION TITLES & HEADINGS ---------------------------------------------- */
.features h2, .services h2, .about h2, .testimonials h2, .cta h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #245A82;
}
.testimonials h2 {
  color: #206e39;
}

/* FEATURES --------------------------------------------------------------- */
.feature-grid, .blog-list, .thematic-overview, .destination-ideas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
  justify-content: flex-start;
}
.feature-card {
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 100%;
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 4px 16px rgba(36,90,130,0.06);
  padding: 30px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 12px;
  transition: box-shadow .20s, transform .14s, border-color .15s;
  position: relative;
  margin-bottom: 20px;
}
.feature-card img {
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  background: #F6F4F0;
  border-radius: 50%;
  padding: 7px;
}
.feature-card h3 {
  font-size: 1.12rem;
  color: #245A82;
  margin-bottom: 5px;
}
.feature-card .price, .feature-card .Price {
  font-weight: 700;
  color: #48A366;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  margin-top: 3px;
}
.feature-card:hover,
.feature-card:focus-within {
  box-shadow: 0 10px 36px rgba(36,90,130,0.18), 0 2.5px 8px rgba(36,90,130,0.04);
  transform: translateY(-3px) scale(1.022);
  border-color: #48A366;
}

/* SERVICES --------------------------------------------------------------- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.service-card {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 4px 16px rgba(36,90,130,0.05);
  padding: 28px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  flex: 1 1 240px;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .09s;
}
.service-card img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F6F4F0;
  margin-bottom: 7px;
  padding: 6px;
}
.service-card h3 {
  font-size: 1.12rem;
  color: #245A82;
  font-family: 'Montserrat', Arial, sans-serif;
}
.service-card .price {
  font-weight: bold;
  color: #48A366;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  margin-top: 6px;
}
.service-card:hover,
.service-card:focus-within {
  box-shadow: 0 10px 36px rgba(36,90,130,0.15);
  transform: translateY(-2px) scale(1.01);
}
.service-cta {
  margin-top: 24px;
  display: flex;
  align-items: center;
}

/* BLOG CARDS & LISTS ----------------------------------------------------- */
.blog-list {
  gap: 24px;
  flex-wrap: wrap;
}
.blog-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(36,90,130,0.05);
  padding: 26px 22px 16px 22px;
  flex: 1 1 320px;
  min-width: 260px;
  margin-bottom: 20px;
  transition: box-shadow .14s, transform .07s;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.blog-card h3 {
  color: #245A82;
  font-size: 1.07rem;
  margin-bottom: 4px;
}
.blog-card .btn-link {
  margin-top: 7px;
}
.blog-card:hover,
.blog-card:focus-within {
  box-shadow: 0 8px 27px rgba(36,90,130,0.15);
  transform: scale(1.016);
}
.featured-article {
  background: #206e39;
  border-radius: 13px;
  color: #fff;
  padding: 20px 18px 15px 18px;
  margin: 24px 0 10px 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
}
.featured-article h3 {
  color: #fff;
}
.tag-filter {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 7px;
  flex-wrap: wrap;
}
.tag {
  padding: 5px 15px;
  background: #F6F4F0;
  color: #245A82;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 11px;
  font-weight: bold;
  font-size: .97rem;
}

/* CTA SECTION ------------------------------------------------------------ */
.cta {
  background: #245A82;
  color: #fff;
  margin-bottom: 0;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 8px 48px rgba(36,90,130,0.12);
  padding: 42px 0;
}
.cta h2, .cta p {
  color: #fff;
}
.cta .btn-primary {
  margin-top: 13px;
  background: #48A366;
  color: #fff;
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: #fff;
  color: #245A82;
}

/* TESTIMONIALS ----------------------------------------------------------- */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  color: #245A82;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(36,90,130,0.13), 0 1.5px 6px rgba(36,90,130,0.09);
  min-width: 275px;
  flex: 1 1 275px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 22px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .11s;
}
.testimonial-card blockquote {
  font-size: 1.08rem;
  color: #245A82;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
  margin-left: 0;
  quotes: '\201C''\201D''\2018''\2019';
}
.testimonial-card .testimonial-author {
  font-size: .95rem;
  color: #206e39;
  font-weight: 700;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 34px rgba(36,90,130,0.17);
  transform: scale(1.014);
}

/* FOOTER --------------------------------------------------------------- */
footer {
  margin-top: 48px;
  background: #245A82;
  color: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -3px 12px rgba(36,90,130,0.13);
}
footer .container {
  padding: 34px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 4px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  border-radius: 16px;
  padding: 4px 10px;
  transition: background .15s, color .1s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #48A366;
  color: #fff;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 4px;
}
.footer-links a {
  color: #F6F4F0;
  font-size: .96rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 9px;
  padding: 3px 9px;
  transition: background .12s, color .10s;
}
.footer-links a:hover, .footer-links a:focus {
  background: #48A366;
  color: #fff;
}
.contact-details {
  font-size: .95rem;
  color: #F6F4F0;
  line-height: 1.6;
}
.contact-details a {
  color: #fff;
  font-weight: bold;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 19px;
  margin: 15px 0 10px 0;
}
.social-icons img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 1.5px 6px rgba(36,90,130,0.09);
  transition: background .13s, filter .13s;
}
.social-icons img:hover {
  background: #245A82;
  filter: brightness(0.90);
}
.copyright {
  font-size: .93rem;
  color: #fff;
  opacity: 0.72;
  margin-top: 7px;
  text-align: left;
}

/* TEXT-SECTION, MAP, AND GENERIC --------------------------------------- */
.text-section {
  margin-bottom: 16px;
}
.map-placeholder {
  background: #F6F4F0;
  border-radius: 13px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}
.theme-overview ul, .text-section ul {
  list-style-type: disc;
  margin-left: 19px;
  margin-top: 7px;
}
.theme-overview h3 {
  font-size: 1.1rem;
  margin-bottom: 3px;
  color: #206e39;
}

/* UTILS + GEOMETRIC DECORATIVE ------------------------------------------ */
.section {
  border-radius: 22px;
  background: #fff;
}
/* Decorative geometric shapes */
.hero::after, .features::before, .testimonials::before {
  content: '';
  z-index: 0;
  position: absolute;
  pointer-events: none;
  border-radius: 60px 50% 38% 42%/43% 65% 45% 60%;
  opacity: 0.12;
  background: #48A366;
  width: 160px;
  height: 100px;
  left: 63%;
  top: 9%;
  display: none;
}
@media (min-width:900px) {
  .hero::after {
    display: block;
  }
}

/* RESPONSIVE STYLES ----------------------------------------------------- */
@media (max-width: 1100px) {
  .container { max-width: 96vw; }
  .feature-card, .service-card, .blog-card { min-width: 40vw; }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .blog-list, .testimonial-slider, .testimonial-list, .thematic-overview, .destination-ideas-list {
    gap: 16px;
  }
  .feature-card, .service-card, .blog-card {
    min-width: 67vw;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { max-width: 98vw; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .hero { padding: 38px 0 28px 0; }
  .features, .about, .section, .cta { padding: 24px 10px; }
  .feature-grid, .blog-list, .testimonial-slider, .testimonial-list, .service-list, .thematic-overview, .destination-ideas-list {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper, .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
  .feature-card, .service-card, .blog-card, .testimonial-card {
    width: 100%;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-nav, .footer-links, .social-icons {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
  }
  footer .container {
    padding: 22px 12px 10px 12px;
    gap: 10px;
  }
}
@media (max-width: 530px) {
  html { font-size: 14px; }
  .logo img { height: 36px; }
  .hero h1, .hero h2, .features h2, .about h2, .cta h2 {
    font-size: 1.75rem;
  }
  .section, .cta { padding: 20px 0; }
  .feature-card, .service-card, .blog-card, .testimonial-card {
    padding: 13px 5px;
  }
}

/* COOKIE BANNER --------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9000;
  width: 100vw;
  background: #fff;
  color: #245A82;
  box-shadow: 0 -2px 24px rgba(36,90,130,0.15);
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 28px 18px 18px 24px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  gap: 20px;
  animation: banner-in .5s cubic-bezier(.53,.07,.51,1.12);
}
@keyframes banner-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  padding: 11px 24px;
  border-radius: 20px;
  margin-left: 4px;
  border: none;
  transition: background .16s, color .13s, box-shadow .13s;
}
.cookie-banner .accept {
  background: #245A82;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #48A366;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #245A82;
  border: 1.5px solid #245A82;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #206e39;
  color: #fff;
  border-color: #206e39;
}
.cookie-banner .settings {
  background: #F6F4F0;
  color: #245A82;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #245A82;
  color: #fff;
}
@media (max-width:800px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 15px; padding: 16px 8px; }
  .cookie-banner .cookie-actions { justify-content: start; width: 100%; gap: 11px; }
}

/* COOKIE SETTINGS MODAL ------------------------------------------------- */
.cookie-modal {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(31, 40, 51, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity .17s;
  animation: fadein-modal .27s both;
}
@keyframes fadein-modal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 48px rgba(36,90,130,0.23);
  max-width: 420px;
  width: 99vw;
  padding: 32px 20px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  animation: modalslidein .24s cubic-bezier(.65,.07,.66,.88);
}
@keyframes modalslidein {
  from { transform: translateY(40px) scale(.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.modal-content h3 {
  font-size: 1.19rem;
  color: #245A82;
  margin-bottom: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.modal-content ul {
  list-style: disc;
  margin-left: 15px;
  margin-bottom: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 11px 0 8px 0;
  border-bottom: 1px solid #F6F4F0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category .category-toggle {
  accent-color: #245A82;
  width: 19px;
  height: 19px;
  margin-left: 5px;
}
.cookie-category input[disabled], .cookie-category label[aria-disabled=true] {
  opacity: 0.56;
  pointer-events: none;
}
.modal-content .close-modal {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.6rem;
  background: none;
  color: #245A82;
  border: none;
  cursor: pointer;
  transition: color .13s;
}
.modal-content .close-modal:focus, .modal-content .close-modal:hover {
  color: #48A366;
}
@media (max-width: 650px) {
  .cookie-modal .modal-content { padding: 16px 7px 14px 14px; border-radius: 15px; }
}

/* MISC/MINOR ----------------------------------------------------------- */
input, select, textarea {
  font-size: 1rem;
  font-family: inherit;
}
hr {
  border: 0;
  border-top: 1px solid #F6F4F0;
  margin: 2.3em 0;
}
blockquote {
  margin-left: 0;
  padding-left: 12px;
  border-left: 3.8px solid #48A366;
}

/* PRINT ------------------------------------------------------------- */
@media print {
  html, body { background: #fff; }
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  main, section, .container { box-shadow: none !important; }
}

/* END OF STYLE --------------------------------------------------------- */