/* =====================
   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 {
  height: 100%;
  font-size: 16px;
}
body {
  min-height: 100%;
  line-height: 1.4;
  background: #F6F5EF;
  color: #1A4B5D;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, nav, section {
  display: block;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: #1A4B5D;
  transition: color 0.18s cubic-bezier(.45,.05,.55,.95);
}
a:focus,
a:hover {
  color: #62A95A;
  outline: 0;
}
ul, ol {
  list-style: none;
}

/* =====================
   TYPOGRAPHY
   ===================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

p, li, span {
  color: #1A4B5D;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Roboto', Arial, sans-serif;
}
.subheadline {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #1A4B5D;
  letter-spacing: 0.01em;
}
strong {
  font-weight: 800;
}

/* =====================
   CONTAINER AND LAYOUTS
   ===================== */

.container {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(26,75,93,0.07);
  padding: 32px 26px 28px;
  margin-bottom: 20px;
  position: relative;
  min-width: 265px;
  flex: 1 1 300px;
  transition: box-shadow 0.18s cubic-bezier(.45,.05,.55,.95), transform 0.18s cubic-bezier(.45,.05,.55,.95);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(26,75,93,0.16);
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** Feature Grids (Specific to Homepage) *****/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 0 0;
  width: 100%;
}
.feature-grid li {
  flex: 1 1 260px;
  min-width: 240px;
  background: #fff;
  padding: 30px 24px 22px;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(26,75,93,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
  transition: box-shadow 0.17s cubic-bezier(.45,.05,.55,.95);
}
.feature-grid li img {
  width: 42px;
  height: 42px;
}
.feature-grid li h3 {
  font-size: 1.18rem;
  margin-bottom: 4px;
  color: #1A4B5D;
  font-weight: bold;
}
.feature-grid li:hover {
  box-shadow: 0 8px 26px 0 rgba(98,169,90,0.16);
  background: #F6F5EF;
}

/***** Feature Icons (Other Pages) *****/
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 22px 0;
}
.feature-icons li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(26,75,93,0.10);
  padding: 22px 20px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  flex: 1 1 215px;
  font-weight: bold;
}
.feature-icons li img {
  width: 34px;
  height: 34px;
}

/***** Hero Section *****/
.hero {
  background: #1A4B5D;
  color: #F6F5EF;
  padding: 60px 0 48px 0;
  margin-bottom: 60px;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  min-height: 240px;
}
.hero h1,
.hero .subheadline,
.hero p,
.hero a {
  color: #F6F5EF !important;
}
.hero .cta-button {
  background: #62A95A;
  color: #fff;
  margin-top: 16px;
}

/* =====================
   NAVIGATION & LOGO
   ===================== */

header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(26,75,93,0.08);
  position: relative;
  z-index: 30;
}
.logo {
  height: 52px;
  margin: 18px 0 16px 0;
  flex-shrink: 0;
}
.header .container {
  align-items: center;
}
.main-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-left: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  font-weight: 700;
  padding: 8px 14px;
  font-size: 1rem;
  border-radius: 8px;
  color: #1A4B5D;
  transition: background .145s, color .145s;
  position: relative;
  vertical-align: middle;
}
.main-nav a:focus,
.main-nav a:hover {
  background: #F6F5EF;
  color: #62A95A;
}
.main-nav .cta-button {
  background: #62A95A;
  color: #fff;
  border: none;
  font-size: 1.05rem;
  padding: 10px 22px;
  border-radius: 24px;
  font-weight: 900;
  margin-left: 8px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px rgba(98,169,90,0.08);
  transition: background .18s, color .17s, box-shadow .16s;
}
.main-nav .cta-button:hover, .main-nav .cta-button:focus {
  background: #1A4B5D;
  color: #fff;
  box-shadow: 0 4px 32px rgba(98,169,90,0.18);
}

/***** Mobile Hamburger Menu *****/
.mobile-menu-toggle {
  display: none;
  background: #1A4B5D;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  margin-left: auto;
  cursor: pointer;
  transition: background .14s;
  z-index: 210;
}

/* Mobile overlay menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1A4B5D;
  z-index: 200;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.60,.05,.70,.97);
  padding: 32px 30px 30px 26px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #62A95A;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 22px;
  cursor: pointer;
  transition: color .17s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  padding: 12px 0 8px 0;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border-radius: 6px;
  transition: background .14s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #62A95A;
  color: #fff;
}

/***** Responsive Navigation *****/
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-top: 8px;
    margin-bottom: 8px;
  }
}
@media (max-width: 990px) {
  .container {
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 540px) {
  .mobile-menu {
    padding: 20px 8px 10px 6px;
  }
  .mobile-nav a {
    font-size: 1.04rem;
  }
}

/* =============================
   BUTTONS (CTA, Actions, etc.)
   ============================= */
.cta-button {
  background: #1A4B5D;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  border: none;
  border-radius: 30px;
  padding: 14px 38px;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-top: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(26,75,93,0.13);
  transition: background .18s, color .18s, transform .15s, box-shadow .15s;
  display: inline-block;
  text-align: center;
}
.cta-button:hover, .cta-button:focus {
  background: #62A95A;
  color: #fff;
  transform: scale(1.045);
  box-shadow: 0 8px 32px rgba(98,169,90,0.18);
}

button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background .13s, color .13s;
}

/***** List Buttons in Cookie Banner *****/
.cookie-banner button,
.cookie-modal button {
  margin-right: 10px;
  padding: 10px 18px;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  border: none;
  transition: background .14s, color .14s, box-shadow .12s;
  background: #1A4B5D;
  color: #fff;
}
.cookie-banner button:hover,
.cookie-banner button:focus,
.cookie-modal button:hover,
.cookie-modal button:focus {
  background: #62A95A;
  color: #fff;
  box-shadow: 0 2px 10px rgba(98,169,90,0.09);
}
.cookie-banner .cookie-settings-btn {
  background: #F6F5EF;
  color: #1A4B5D;
  border: 1.5px solid #1A4B5D;
}
.cookie-banner .cookie-settings-btn:focus, .cookie-banner .cookie-settings-btn:hover {
  background: #1A4B5D;
  color: #fff;
}

/***** Section Padding and Spacing *****/
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
@media (max-width: 860px) {
  section, .section {
    padding: 24px 0;
  }
}

/* =====================
   PREVIEWS/HOME CARDS
   ===================== */
.about-preview, .services-preview, .testimonial-preview {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 30px 0 rgba(26,75,93,0.07);
  margin-bottom: 36px;
}

/***** Testimonial Slider & Cards *****/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #F6F5EF;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(26,75,93,0.08);
  padding: 28px 26px 20px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 250px;
  flex: 1 1 280px;
  gap: 14px;
  color: #1A4B5D;
  font-size: 1.08rem;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(98,169,90,0.14);
  transform: translateY(-2px) scale(1.018);
}
.testimonial-card span {
  color: #62A95A;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}

/***** About/Team List *****/
.team-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

/***** Services Cards Section (energiehaeuser.html) *****/
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 16px 0;
  width: 100%;
}
.service-card {
  flex: 1 1 260px;
  min-width: 220px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(26,75,93,0.09);
  padding: 25px 20px 20px 20px;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .14s;
}
.service-card:hover {
  box-shadow: 0 8px 26px 0 rgba(98,169,90,0.15);
  background: #F6F5EF;
  transform: scale(1.025);
}

/***** Benefits List *****/
.benefits-list, .article-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 18px 0 0 0;
  padding: 0 0 0 10px;
}
.article-list li,
.benefits-list li {
  position: relative;
  padding-left: 18px;
  font-weight: 600;
  color: #1A4B5D;
}
.article-list li:before, .benefits-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #62A95A;
  font-weight: bold;
  font-size: 1.1em;
  top: 0;
}

/***** Stats & Milestones (nachhaltigkeit.html) *****/
.impact-stats h2, .impact-numbers, .milestone-list {
  margin-bottom: 18px;
}
.impact-numbers ul, .milestone-list ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
}
.impact-numbers li {
  background: #fff;
  color: #1A4B5D;
  font-size: 1.25rem;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(26,75,93,0.09);
  padding: 20px 22px 14px;
  min-width: 180px;
  font-weight: bold;
}
.milestone-list li {
  font-weight: 500;
  font-size: 1.03rem;
  color: #62A95A;
  padding: 0 14px 0 0;
}

/***** FAQ Accordion *****/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 14px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(26,75,93,0.08);
  padding: 19px 24px 10px 24px;
  color: #1A4B5D;
}
.faq-item h3 {
  font-size: 1.19rem;
  font-weight: bold;
  color: #1A4B5D;
  margin-bottom: 5px;
}

/***** Contact Info Section *****/
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 18px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.contact-info img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/***** Text Section (Policy pages) *****/
.text-section {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 18px rgba(26,75,93,0.06);
}
.text-section h1 {
  margin-bottom: 24px;
}
.text-section h2 {
  margin-bottom: 12px;
}
.text-section p, .text-section ul, .text-section li {
  font-size: 1.06rem;
  color: #1A4B5D;
  margin-bottom: 10px;
  line-height: 1.7;
}
.text-section ul {
  margin-left: 20px;
  margin-bottom: 22px;
}
.text-section li {
  list-style: disc outside;
}

/***** Tips Highlight *****/
.tips-highlight {
  background: #62A95A;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  padding: 15px 16px;
  margin-top: 18px;
}
.tips-highlight p strong {
  color: #fff;
}

/* =====================
   FOOTER
   ===================== */
footer {
  width: 100%;
  background: #1A4B5D;
  color: #fff;
  padding: 46px 0 22px 0;
  border-top-left-radius: 46px;
  border-top-right-radius: 46px;
  margin-top: 60px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
}
.footer-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 54px;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1 1 330px;
}
.footer-links nav {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
}
.footer-links a {
  color: #fff;
  font-weight: 500;
  transition: color .13s;
}
.footer-links a:hover {
  color: #62A95A;
}
.legal-links {
  font-size: 0.99rem;
  color: #C9E2D1;
  margin-top: 7px;
}
.footer-links .address {
  color: #C9E2D1;
  margin-top: 7px;
  font-size: 0.96rem;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  min-width: 235px;
  gap: 13px;
}
.footer-contact h3 {
  color: #62A95A;
  margin-bottom: 4px;
  font-size: 1.1rem;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #fff;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
}
.footer-contact ul a,
.footer-contact ul a:visited {
  color: #fff;
}
.footer-contact ul a:hover {
  color: #62A95A;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  color: #1A4B5D;
  border-top: 4px solid #62A95A;
  box-shadow: 0 -2px 22px rgba(26,75,93,0.13);
  z-index: 9000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 20px 18px 20px 22px;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform .29s cubic-bezier(.5,.02,.7,.90), opacity .18s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
}
.cookie-banner .cookie-message {
  flex: 1;
  color: #1A4B5D;
  font-size: 1.06rem;
  margin-right: 12px;
}

.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
.cookie-banner button {
  margin-right: 0;
}

/***** Cookie Modal *****/
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 96vw;
  max-width: 480px;
  background: #fff;
  color: #1A4B5D;
  border-radius: 20px;
  box-shadow: 0 4px 40px rgba(26,75,93,0.20);
  transform: translate(-50%, -50%) scale(1);
  z-index: 9500;
  padding: 34px 32px 32px 32px;
  opacity: 1;
  transition: opacity .23s, transform .24s;
  display: none;
}
.cookie-modal.open {
  display: block;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 19px;
  font-size: 1.62rem;
  color: #62A95A;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 900;
  z-index: 9600;
  transition: color .17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #1A4B5D;
}
.cookie-modal h3 {
  font-size: 1.11rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A4B5D;
  margin-bottom: 14px;
  font-weight: bold;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 18px 0 18px 0;
}
.cookie-modal .cookie-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-modal .cookie-toggle label {
  font-weight: 700;
  font-size: 1.04rem;
  color: #1A4B5D;
  min-width: 140px;
}
.cookie-modal .cookie-toggle input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #62A95A;
  margin-right: 5px;
}
.cookie-modal .cookie-toggle.cookie-essential label {
  opacity: 0.75;
  font-weight: 600;
}
.cookie-modal .cookie-toggle.cookie-essential input {
  display: none;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}

/***** Animations *****/
@keyframes cookie-banner-in {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cookie-modal-in {
  from { opacity:0; transform: scale(0.93) translate(-50%, -44%); }
  to { opacity:1; transform: scale(1) translate(-50%, -50%); }
}
.cookie-banner {
  animation: cookie-banner-in .23s ease;
}
.cookie-modal.open {
  animation: cookie-modal-in .22s cubic-bezier(.55,.07,.90,.92) forwards;
}

/* =====================
   MEDIA QUERIES
   ===================== */
@media (max-width: 990px) {
  .footer-container {
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 9px;
  }
  .content-wrapper {
    padding: 0 !important;
    gap: 16px;
  }
  .footer-container {
    gap: 28px;
    padding: 0 4px;
  }
  section, .section {
    margin-bottom: 38px;
    padding: 22px 0 18px 0;
    border-radius: 10px;
  }
  .about-preview, .services-preview, .testimonial-preview, .text-section {
    border-radius: 12px;
    padding: 10px 4px;
  }
  .hero {
    padding: 36px 0 25px 0;
    min-height: 140px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
  }
  .feature-grid, .feature-icons, .service-cards, .testimonial-slider, .impact-numbers ul, .milestone-list ul {
    flex-direction: column;
    gap: 18px;
  }
  .testimonials .testimonial-slider {
    gap: 15px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .footer-links {
    gap: 8px;
  }
  .footer-contact {
    min-width: 1px;
  }
  .about, .about .content-wrapper, .team-list {
    gap: 11px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card,
  .feature-grid li,
  .feature-icons li,
  .service-card {
    min-width: 1px;
    max-width: 100%;
    width: 100%;
    padding: 16px 10px 13px;
  }
  .impact-numbers li {
    min-width: 1px;
    width: 100%;
  }
}
@media (max-width: 540px) {
  .hero h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.19rem;
  }
  .cta-button,
  .main-nav .cta-button {
    padding: 10px 15px;
    font-size: 1rem;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    font-size: .99rem;
    padding: 13px 7px 13px 7px;
  }
  .cookie-banner .cookie-actions {
    gap: 5px;
  }
  .cookie-modal {
    padding: 20px 8px 24px 8px;
    max-width: 97vw;
  }
}
/* ============ End ============ */
