/* =======================================================
   BREEZY HIKE POOLPFLEGE - MODERN_BOLD CSS (FLEXBOX ONLY)
   Font: Montserrat (display) & Open Sans (body)
   Colors: #227093 Primary, #122438 Secondary, #E5F6FB Accent
   By: Professional CSS & UI Designer
   =======================================================*/

/* ==== CSS RESET & BOX SIZING ==== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote {
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  background: #fff;
  color: #122438;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button {
  font-family: inherit;
  background: none;
  cursor: pointer;
  outline: none;
}

/* ==== FONT IMPORTS (MONTSERRAT + OPEN SANS) ==== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

/* ==== TYPOGRAPHY SCALE & HEADINGS (MODERN_BOLD) ==== */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: #122438;
  margin-bottom: 18px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #227093;
  margin-bottom: 14px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #122438;
  margin-bottom: 8px;
}
h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}
p, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #122438;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
  color: #122438;
}
small {
  font-size: 0.875rem;
  color: #444;
}

/* ==== GENERAL LAYOUT & CONTAINER ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(34,112,147,0.06);
}

/* ==== HERO SECTION STYLE ==== */
.hero {
  padding: 70px 0 50px 0;
  background: #E5F6FB;
  border-bottom: 4px solid #227093;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: #122438;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 28px;
}

/* ==== NAVIGATION (DESKTOP + MOBILE) ==== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 24px 0 0 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  z-index: 20;
}
.main-nav img {
  height: 48px;
  margin-right: 28px;
}
.main-nav a {
  padding: 10px 0;
  color: #122438;
  border-radius: 8px;
  position: relative;
  transition: color 0.18s, background 0.18s;
}
.main-nav a.cta.primary {
  background: #227093;
  color: #fff;
  padding: 10px 26px;
  border-radius: 18px;
  margin-left: 12px;
  font-size: 1.08rem;
  box-shadow: 0 4px 14px 0 rgba(34,112,147,0.08);
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border: none;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E5F6FB;
  color: #227093;
}
.main-nav a.cta.primary:hover, .main-nav a.cta.primary:focus {
  background: #122438;
  color: #fff;
  box-shadow: 0 8px 20px 0 rgba(34,112,147,0.15);
}

.header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

/* ==== MOBILE BURGER MENU ==== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  color: #227093;
  background: #E5F6FB;
  border-radius: 12px;
  padding: 4px 16px;
  z-index: 301;
  border: 2px solid #227093;
  margin-left: 18px;
  transition: background 0.18s, border 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #227093;
  color: #fff;
  border-color: #122438;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 300;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.69,0.26,0.33,1.03);
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
  min-height: 100vh;
  width: 100vw;  
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  color: #122438;
  background: none;
  margin: 18px 22px 8px 0;
  border-radius: 10px;
  z-index: 20;
  padding: 4px 8px;
  border: 2px solid #E5F6FB;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E5F6FB;
  color: #227093;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 36px;
  margin-top: 15px;
}
.mobile-nav a {
  color: #122438;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.14rem;
  background: none;
  padding: 11px 0 11px 4px;
  border-radius: 9px;
  width: 100%;
  transition: background 0.15s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E5F6FB;
  color: #227093;
}
@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
    font-size: 0.99rem;
  }
  .main-nav img {
    margin-right: 15px;
    height: 36px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 11px;
    font-size: 0.95rem;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* ==== SECTIONS, FLEXBOX LAYOUTS ==== */
.features, .about, .services, .services-listing, .faq-listing, .testimonials, .contact-preview, .contact-details, .gdpr-overview, .about-privacy, .about-cookies, .terms, .blog-overview, .about-editor {
  margin-bottom: 60px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(34,112,147,0.08);
  overflow: hidden;
  padding: 22px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(34,112,147,0.17);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 3px solid #E5F6FB;
  border-radius: 18px;
  padding: 20px 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(34,112,147,0.07);
  min-width: 245px;
  transition: box-shadow 0.2s, border 0.2s;
  position: relative;
}
.testimonial-card .star-rating {
  color: #227093;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 2px;
}
.testimonial-card .customer-name {
  font-size: 1.07em;
  font-weight: 700;
  color: #122438;
  margin-top: 8px;
}
.testimonial-card p {
  color: #122438;
  font-size: 1.05rem;
  font-weight: 400;
  margin: 0 0 0 0;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: #227093;
  box-shadow: 0 6px 24px 0 rgba(34,112,147,0.12);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Card grid example for blog, features etc. */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
  width: 100%;
}
.feature-grid li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(34,112,147,0.05);
  padding: 24px 20px;
  flex: 1 1 255px;
  min-width: 210px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 2px solid #E5F6FB;
  transition: border 0.21s, box-shadow 0.19s;
}
.feature-grid li:hover {
  border: 2.5px solid #227093;
  box-shadow: 0 10px 36px 0 rgba(34,112,147,0.19);
}
.feature-grid img {
  width: 48px;
  height: 48px;
}
/* Services lists/cards */
.services-list,
.services-listing ul,
.service-benefits ul,
.pricing-overview ul,
.key-strengths-list,
ul.brand-values-list,
ul.contact-details-inline,
.add-on-services ul,
ul, ul ul,
ol {
  margin-bottom: 18px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul.contact-details-inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 26px;
}
ul.contact-details-inline li {
  display: flex;
  align-items: center;
  font-weight: 600;
}
ul.contact-details-inline img {
  width: 22px;
  height: 22px;
  margin-right: 6px;
}
.brand-values-list li, .key-strengths-list li, .service-benefits ul li, .pricing-overview ul li {
  font-weight: 600;
  color: #227093;
  letter-spacing: 0.2px;
}
.services-list li, .services-listing ul li, .add-on-services ul li, .about-cookies ul li {
  color: #122438;
  font-weight: 600;
  font-size: 1.025em;
}
.services-list li:before,
.services-listing ul li:before,
ul.brand-values-list li:before,
.key-strengths-list li:before,
.service-benefits ul li:before,
.add-on-services ul li:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #227093;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}
/* Mixed content grid for about-page timeline, etc. */
.brand-story-timeline ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.certifications-badges, .blog-categories {
  margin-top: 12px;
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.certifications-badges img {
  width: 42px; height: 42px;
}

.services-listing .customization-options, .sustainability-approach, .service-inclusions-grid, .special-offers, .map-embed, .next-steps-info, .contact-emphasis, .mission-statement, .vision-statement, .policy-intro, .gdpr-overview, .legal-basis, .user-rights, .user-rights-section, .cookie-policy-intro, .opt-out-options, .terms-intro, .legal-clauses, .user-obligations, .blog-purpose-text,.editor-intro {
  background: #E5F6FB;
  border-radius: 12px;
  padding: 18px 14px;
  color: #122438;
  margin-bottom: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(34,112,147,0.03);
}

/* Accordion-style FAQ */
.accordion-faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.accordion-faq-list > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(34,112,147,0.06);
  padding: 18px 24px;
  transition: box-shadow 0.18s;
}
.accordion-faq-list > div:hover {
  box-shadow: 0 5px 22px 0 rgba(34,112,147,0.11);
}
.accordion-faq-list h3 {
  margin-bottom: 8px;
  color: #227093;
}
.accordion-faq-list p {
  color: #122438;
}
.contact-for-more-questions {
  background: #E5F6FB;
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 600;
  margin-top: 15px;
  color: #122438;
}

/* ==== BUTTONS, CALL TO ACTION ==== */
.cta, .cta.primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.09rem;
  padding: 13px 34px;
  border-radius: 22px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  background: #227093;
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(34,112,147,0.13);
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 18px;
  margin-bottom: 6px;
  transition: background 0.21s, color 0.18s, box-shadow 0.18s, transform 0.13s;
}
.cta:hover, .cta:focus {
  background: #122438;
  color: #fff;
  box-shadow: 0 8px 26px 0 rgba(34,112,147,0.23);
  transform: translateY(-2px) scale(1.01);
}
.cta:active {
  background: #227093;
  color: #fff;
  box-shadow: 0 2px 6px rgba(34,112,147,0.13);
}

/* ==== FOOTER ==== */
footer {
  background: #122438;
  color: #fff;
  width: 100%;
  padding: 36px 0 0 0;
  border-top: 7px solid #227093;
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.88;
  padding: 7px 2px;
  border-radius: 6px;
  transition: background 0.15s, color 0.13s, opacity 0.11s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #227093;
  color: #fff;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 0.97em;
  opacity: 0.92;
  margin-bottom: 10px;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  opacity: 0.79;
  font-size: 0.99em;
  margin-top: 8px;
  margin-bottom: 12px;
}
.footer-branding img {
  height: 25px;
}

/* ==== BLOG POST LIST ==== */
.blog-post-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-post-list li a {
  font-weight: 700;
  color: #122438;
  background: #E5F6FB;
  border-radius: 10px;
  padding: 12px 18px;
  transition: background 0.14s, color 0.13s;
}
.blog-post-list li a:hover {
  background: #227093;
  color: #fff;
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
   ============================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #122438;
  color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 10vw 22px 10vw;
  box-shadow: 0 -4px 16px rgba(18,36,56,0.19);
  gap: 28px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.04em;
  transition: transform 0.4s;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 6vw;
    font-size: 1em;
  }
}
.cookie-banner button {
  margin-left: 9px;
  margin-right: 2px;
  border: none;
  padding: 10px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 14px;
  background: #227093;
  color: #fff;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.19s, color 0.17s, box-shadow 0.1s, outline 0.1s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  color: #fff;
  background: #00A0DC;
  box-shadow: 0 2px 8px rgba(34,112,147,0.13);
  outline: 2px solid #E5F6FB;
}
.cookie-banner button.reject {
  background: #fff;
  color: #227093;
  border: 2px solid #227093;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #E5F6FB;
}
.cookie-banner button.settings {
  background: #E5F6FB;
  color: #227093;
  border: 2px solid #227093;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #227093;
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,112,147,0.41);
  justify-content: center;
  align-items: center;
  transition: background 0.2s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  padding: 38px 28px 28px 28px;
  color: #122438;
  max-width: 420px;
  width: 90vw;
  box-shadow: 0 14px 40px 0 rgba(34,112,147,0.27);
  position: relative;
  animation: cookieModalEnter 0.35s cubic-bezier(0.7,0.27,0.34,1.03);
}
@keyframes cookieModalEnter {
  0% { transform: translateY(70px) scale(0.95); opacity: 0; }
  90% { transform: translateY(-2px) scale(1.03); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2, .cookie-modal h3 {
  color: #227093;
  margin-bottom: 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 1.7em;
  color: #122438;
  background: #E5F6FB;
  border-radius: 10px;
  border: none;
  padding: 3px 11px;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #227093;
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 24px;
}
.cookie-category {
  padding: 13px 0;
  border-bottom: 1px solid #E5F6FB;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  font-size: 1em;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-toggle {
  width: 50px; height: 26px;
  border-radius: 18px;
  background: #E5F6FB;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-toggle[data-checked='true'] {
  background: #227093;
}
.cookie-toggle-ball {
  height: 22px; width: 22px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 2px; transition: left 0.17s;
}
.cookie-toggle[data-checked='true'] .cookie-toggle-ball {
  left: 26px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  margin: 0;
  font-size: 1em;
}

/* ===== RESPONSIVE STYLES (MOBILE FIRST) ===== */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1, .h1 {
    font-size: 2.05rem;
    letter-spacing: -0.6px;
  }
  h2, .h2 {
    font-size: 1.5rem;
  }
  .hero {
    padding: 36px 0 30px 0;
  }
  .container {
    padding: 0 7px;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .content-wrapper {
    gap: 15px;
  }
  .card-container,
  .feature-grid,
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
  }
  .section {
    padding: 28px 7px;
    margin-bottom: 32px;
  }
  .features, .about, .services, .testimonials, .contact-preview, .contact-details {
    margin-bottom: 32px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .blog-post-list li a {
    font-size: 1rem;
    padding: 11px 9px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    font-size: 0.98em;
    padding: 10px 5px 0 5px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
  .footer-branding {
    text-align: center;
    flex-direction: column;
    gap: 3px;
  }
  ul.contact-details-inline {
    flex-direction: column;
    gap: 10px;
  }
}

/* ===== ACCESSIBILITY & MICRO-INTERACTIONS ===== */
a:focus, button:focus, .cta:focus, .mobile-menu-toggle:focus {
  outline: 2.5px solid #00A0DC;
  outline-offset: 1.5px;
  background: #E5F6FB;
  color: #227093;
}

/* Extras for team-photo-placeholder or icons */
.team-photo-placeholder img {
  width: 84px;
  height: 84px;
  border-radius: 100%;
  background: #fff;
  border: 3px solid #227093;
  box-shadow: 0 2px 16px rgba(34,112,147,0.11);
}

/* ===== Z-INDEX MANAGEMENT ===== */
.mobile-menu, .mobile-menu-toggle, .mobile-menu-close { z-index:301; }
.cookie-banner { z-index: 9999; }
.cookie-modal-overlay { z-index: 10000; }

/* Minimal fade in for hero & sections */
.hero, .section, .features, .testimonials {
  animation: fadeInUp 0.42s cubic-bezier(0.68,0.25,0.37,1.03);
  animation-delay: 0.07s;
  animation-fill-mode: both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(55px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==== SPACING RULE ENFORCEMENT ==== */
.features > .container, .about > .container, .services > .container, .services-listing > .container, .testimonials > .container, .contact-preview > .container,
.about-privacy > .container, .gdpr-overview > .container, .about-cookies > .container, .terms > .container, .blog-overview> .container, .about-editor > .container {
  margin-bottom: 20px;
}
.card-container, .feature-grid, .content-grid {
  gap: 24px;
  margin-bottom: 20px;
}
.section, .card, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}

/* ==== FORMS (If added) ==== */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 11px 16px;
  border: 2px solid #E5F6FB;
  border-radius: 8px;
  font-size: 1em;
  margin-bottom: 18px;
  outline: none;
  transition: border 0.17s, box-shadow 0.12s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid #227093;
  box-shadow: 0 0 3px #22709322;
}

/* Hide browser scrollbars for mobile menu and modals */
.mobile-menu, .cookie-modal {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

/* ==== UTIL CLASSES ==== */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-bold  { font-weight: bold; }
.mb-0       { margin-bottom: 0!important; }

/* =========== DO NOT USE GRID OR ABSOLUTE LAYOUT ==========
   (except for icons/decorative in cards/modal-close/buttons)   */