/* ---- CSS RESET & NORMALIZE ---- */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #f7f9fb;
  color: #222e39;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---- BRAND COLORS ---- */
:root {
  --brand-primary: #2e5ea7;
  --brand-secondary: #f5bc31;
  --brand-accent: #fff7e9;
  --brand-black: #222e39;
  --brand-gray: #e9edf5;
  --brand-white: #fff;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka', 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--brand-primary);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.375rem;
}
h4, h5, h6 {
  font-size: 1.125rem;
}
p, li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.7;
  font-size: 1rem;
  color: var(--brand-black);
  margin-bottom: 10px;
}
p.subheadline {
  font-size: 1.25rem;
  color: #33507a;
  margin-bottom: 24px;
}
strong {
  font-weight: 700;
}

/* Links */
a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--brand-secondary);
  text-decoration: underline;
}

/* BUTTONS: .cta and .primary */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-secondary);
  color: var(--brand-black);
  border: none;
  border-radius: 28px;
  padding: 14px 32px;
  font-family: 'Fredoka', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(46,94,167,0.08);
  transition: background 0.2s, color 0.18s, box-shadow 0.18s;
  margin-top: 16px;
  margin-bottom: 8px;
}
.cta.primary {
  background: var(--brand-primary);
  color: var(--brand-white);
}
.cta:hover, .cta:focus {
  background: var(--brand-black);
  color: var(--brand-white);
  box-shadow: 0 4px 18px 0 rgba(46,94,167,0.13);
}
.cta.primary:hover, .cta.primary:focus {
  background: #28518a;
  color: var(--brand-secondary);
}

/* ---- HEADER & NAVIGATION ---- */
header {
  width: 100%;
  background: var(--brand-white);
  border-bottom: 1px solid #e5eaf2;
  box-shadow: 0 1px 8px 0 rgba(46,94,167,0.04);
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 24px;
  min-height: 70px;
}
.logo {
  margin-right: 24px;
  min-width: 110px;
  display: flex;
  align-items: center;
}
.logo img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 16px;
}
.main-nav a {
  font-family: 'Fredoka', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #33507a;
  padding: 10px 12px;
  border-radius: 16px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
header .cta.primary {
  margin-left: auto;
  margin-right: 12px;
  min-width: 190px;
  padding: 12px 22px;
  font-size: 1rem;
}
.mobile-menu-toggle {
  display: none;
  background: var(--brand-accent);
  border: none;
  font-size: 2rem;
  color: var(--brand-primary);
  padding: 10px 16px;
  border-radius: 12px;
  margin-left: 14px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  position: relative;
  z-index: 61;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--brand-primary);
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 100vw;
  background: rgba(46,94,167,0.98);
  z-index: 99;
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(.72,.22,.2,.89);
  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: auto;
}
.mobile-menu-close {
  background: none;
  color: var(--brand-white);
  border: none;
  font-size: 2rem;
  margin: 24px 0 0 22px;
  align-self: flex-start;
  cursor: pointer;
  z-index: 100;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 36px 0 0 36px;
}
.mobile-nav a {
  font-family: 'Fredoka', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: var(--brand-white);
  padding: 11px 0;
  transition: color 0.2s, background 0.2s;
  border-radius: 6px;
  min-width: 210px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-secondary);
  background: rgba(255,255,255,0.06);
  text-decoration: none;
}

/* ---- MAIN/LAYOUT ---- */
main {
  min-height: 72vh;
  background: var(--brand-gray);
  padding-top: 0;
  padding-bottom: 0;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-white);
  border-radius: 18px;
  box-shadow: 0 3px 30px 0 rgba(23,37,61,0.085);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ---- HERO SECTION ---- */
.hero {
  background: linear-gradient(100deg, #e9edf5 0%, #fff 60%, #e1e7f6 99%);
  border-bottom: 1px solid #dde2ee;
  display: flex;
  align-items: center;
  min-height: 375px;
  padding-top: 34px;
  padding-bottom: 34px;
}
.hero .container {
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  background: transparent;
}
.hero h1 {
  color: var(--brand-primary);
}

/* ---- FEATURE GRID ---- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.feature {
  background: var(--brand-gray);
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(46,94,167,.07);
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 260px;
  padding: 32px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, background 0.18s;
}
.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}
.feature h3 {
  margin-bottom: 5px;
  color: var(--brand-primary);
  font-size: 1.09rem;
}
.feature:hover,
.feature:focus-within {
  background: var(--brand-accent);
  box-shadow: 0 8px 32px rgba(46,94,167,.13);
}

/* ---- SERVICE LIST ---- */
.service-list, .detailed-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-item {
  background: var(--brand-white);
  border-radius: 13px;
  box-shadow: 0 4px 24px 0 rgba(46,94,167,0.10);
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 355px;
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.service-item img {
  width: 42px;
  height: 42px;
}
.service-item h3, .service-item h2 {
  margin: 2px 0 2px 0;
}
.service-item .price {
  font-family: 'Fredoka', 'Roboto', Arial, Helvetica, sans-serif;
  background: var(--brand-accent);
  color: var(--brand-primary);
  border-radius: 24px;
  font-weight: 500;
  padding: 5px 16px;
  margin-top: auto;
  font-size: 1.01rem;
  align-self: flex-start;
}
.service-item:hover, .service-item:focus-within {
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 14px 38px 0 rgba(46,94,167,0.16);
}

.cta-section {
  display: flex; flex-direction: column; align-items: stretch;
  gap: 24px;
  margin-top: 20px;
}
.contact-info {
  margin-top: 10px;
  padding: 8px 0;
  font-size: 0.99rem;
  color: #222e39;
  line-height: 1.5;
}

/* ---- TESTIMONIAL SLIDER ---- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.testimonial-card {
  background: var(--brand-accent);
  color: var(--brand-black);
  border-radius: 16px;
  box-shadow: 0 4px 30px 0 rgba(23,37,61,0.09);
  padding: 28px 24px 22px 24px;
  min-width: 260px;
  max-width: 375px;
  flex: 1 1 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s;
}
.testimonial-card p {
  color: #222e39;
  font-style: italic;
  font-size: 1.07rem;
  margin-bottom: 12px;
}
.testimonial-meta {
  font-size: 1rem;
  color: var(--brand-primary);
  font-weight: 500;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 12px 40px 0 rgba(46,94,167,.21);
}

/* ---- CARDS & GENERIC FLEXBOX ---- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-white);
  border-radius: 15px;
  box-shadow: 0 3px 18px 0 rgba(46,94,167,0.11);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s;
  gap: 16px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 38px 0 rgba(46,94,167,0.11);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.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;
}

/* ---- FAQ ACCORDION ---- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
.faq-block {
  background: var(--brand-gray);
  border-radius: 13px;
  padding: 20px 26px 20px 18px;
  box-shadow: 0 2px 10px 0 rgba(46,94,167,0.07);
  margin-bottom: 8px;
  transition: background 0.18s;
}
.faq-block h3 {
  font-size: 1.14rem;
  color: var(--brand-primary);
  margin-bottom: 6px;
}
.faq-block p {
  font-size: 1rem;
}
.faq-block:hover, .faq-block:focus-within {
  background: var(--brand-accent);
}

/* ---- PARKS TABLES & LISTS ---- */
.comparison-table {
  overflow-x: auto;
  margin-bottom: 18px;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--brand-white);
  border-radius: 12px;
  box-shadow: 0 3px 20px 0 rgba(46,94,167,0.08);
  overflow: hidden;
  margin-bottom: 16px;
}
.comparison-table th,
.comparison-table td {
  padding: 16px 14px;
  text-align: left;
  font-size: 1rem;
}
.comparison-table thead th {
  background: var(--brand-primary);
  color: var(--brand-white);
  font-weight: 600;
  font-family: 'Fredoka', 'Roboto', Arial, Helvetica, sans-serif;
}
.comparison-table tbody td {
  background: var(--brand-white);
  color: #222e39;
  border-bottom: 1px solid #e4eaf6;
}
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.park-list {
  margin: 18px 0 15px 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.park-list li strong {
  color: var(--brand-primary);
  font-size: 1.04rem;
  font-weight: bold;
}
.park-list span {
  font-size: 0.95rem;
  color: #456;
  margin-left: 3px;
}

/* ---- FAMILIENPAKETE ---- */
.package-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.package {
  background: var(--brand-gray);
  border-radius: 13px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 355px;
  box-shadow: 0 4px 18px 0 rgba(46,94,167,.10);
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.package h2 {
  font-size: 1.16rem;
  color: var(--brand-primary);
  margin-bottom: 6px;
}
.package .price {
  margin-top: 7px;
  background: var(--brand-accent);
  color: var(--brand-primary);
  padding: 4px 16px;
  font-family: 'Fredoka', 'Roboto', Arial, Helvetica, sans-serif;
  border-radius: 17px;
  font-size: 1.01rem;
  align-self: flex-start;
  font-weight: 500;
}

.occasion-list,
.popular-topics,
.latest-articles {
  padding-left: 20px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1rem;
}

/* ---- BLOG / RATGEBER ---- */
.blog-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-preview-list article {
  background: var(--brand-gray);
  border-radius: 13px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  box-shadow: 0 4px 18px 0 rgba(46,94,167,.10);
  padding: 18px 16px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-preview-list article h2 {
  font-size: 1.14rem;
  color: var(--brand-primary);
  margin-bottom: 7px;
}

.checklists, .travel-tips, .packing-guides {
  background: var(--brand-white);
  border-radius: 10px;
  padding: 14px 20px 14px 16px;
  margin-bottom: 10px;
  box-shadow: 0 2px 12px rgba(46,94,167,.06);
}

/* ---- TEXT BLOCKS & GENERIC ---- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-details {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.address-map {
  background: var(--brand-accent);
  border-radius: 9px;
  padding: 12px 13px;
  margin-top: 12px;
  font-size: 0.97rem;
  color: #222e39;
}

/* ---- FOOTER ---- */
footer {
  background: #20334f;
  color: var(--brand-white);
  width: 100%;
  padding-top: 34px;
  padding-bottom: 2px;
  margin-top: 46px;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 44px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.logo-footer {
  min-width: 75px;
  margin-right: 12px;
  margin-bottom: 10px;
}
.logo-footer img {
  width: 48px; height: 48px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-right: 34px;
}
.footer-nav a {
  color: #c3d3ed;
  font-size: 0.99rem;
  padding: 3px 0;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-secondary);
}
.footer-contact {
  font-size: 0.98rem;
  color: #cadaea;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact a {
  color: #c3d3ed;
}
.footer-contact a:hover { color: var(--brand-secondary); }
.footer-bottom {
  width: 100%;
  padding: 12px 0 11px 0;
  text-align: center;
  color: #c3d3ed;
  font-size: 0.93rem;
  border-top: 1px solid #263e61;
  margin-top: 14px;
  letter-spacing: 0.03em;
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #f7f9fb;
  box-shadow: 0 -2px 18px 0 rgba(46,94,167,0.09);
  border-top: 1px solid #e1e5ec;
  padding: 18px 16px 18px 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition: opacity 0.3s, transform 0.3s;
}
.cookie-consent-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-consent-banner p {
  color: #222e39;
  font-size: 1rem;
  flex: 2 1 320px;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  padding: 10px 22px;
  border-radius: 20px;
  border: none;
  font-weight: 500;
  font-family: 'Fredoka', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  margin: 0;
  background: var(--brand-white);
  color: var(--brand-primary);
  transition: background 0.17s, color 0.17s;
  box-shadow: 0 1px 4px 0 rgba(46,94,167,0.05);
}
.cookie-consent-banner button.accept {
  background: var(--brand-primary);
  color: var(--brand-white);
}
.cookie-consent-banner button.reject {
  background: #ebebeb;
  color: #222e39;
}
.cookie-consent-banner button.settings {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: var(--brand-secondary);
  color: var(--brand-black);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1100;
  background: rgba(34, 46, 57, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--brand-white);
  min-width: 310px;
  max-width: 98vw;
  width: 400px;
  padding: 32px 30px 28px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 48px 0 rgba(46,94,167,0.25);
  z-index: 1110;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.22s, transform 0.24s;
}
.cookie-modal.active {
  opacity: 1;
  transform: translateY(0);
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: var(--brand-primary);
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  color: #555;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  z-index: 1111;
  transition: color 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--brand-primary);
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-size: 1rem;
  color: #222e39;
  font-weight: 500;
  margin-bottom: 0;
}
.cookie-category input[type=checkbox] {
  width: 21px;
  height: 21px;
  accent-color: var(--brand-primary);
  cursor: pointer;
}
.cookie-category input[disabled] {
  accent-color: #bbb;
  cursor: not-allowed;
}
.cookie-modal .cookie-actions {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-actions button {
  font-size: 1rem;
  border-radius: 22px;
  padding: 10px 26px;
  transition: background 0.17s, color 0.17s;
  font-weight: 500;
  font-family: 'Fredoka', 'Roboto', Arial, Helvetica, sans-serif;
  border: none;
  cursor: pointer;
}

/* ---- RESPONSIVE DESIGN ---- */
@media (max-width: 1100px) {
  .container {
    max-width: 100vw;
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .package-list, .service-list, .detailed-service-list,
  .blog-preview-list, .testimonial-slider, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid, .footer .container {
    flex-direction: column;
    gap: 24px;
  }
  .footer-nav, .footer-contact {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    min-height: 56px;
    padding: 0 8px;
    gap: 0;
  }
  .main-nav,
  header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .logo {
    margin-right: 6px;
  }
  .container,
  .section {
    padding-left: 8px;
    padding-right: 8px;
  }
  .feature, .service-item, .testimonial-card, .package {
    max-width: 98vw;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.34rem; }
  .section, .hero {
    padding: 22px 2px 16px 2px;
    border-radius: 0;
  }
  .cookie-modal {
    padding: 23px 6vw 18px 6vw;
    min-width: 0;
    width: 92vw;
  }
}
@media (max-width: 480px) {
  .footer .container, .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .service-item, .feature {
    padding: 18px 8px 13px 8px;
  }
}
@media (max-width: 390px) {
  .cookie-consent-banner {
    padding: 14px 4px;
  }
  .cookie-modal {
    padding: 8vw 3vw;
    width: 96vw;
  }
}

/* ---- MISC ---- */
ul, ol {
  margin-left: 22px;
  margin-bottom: 14px;
  padding-left: 0;
}
li {
  margin-bottom: 6px;
}
dt { font-weight: bold; }
dd { margin-left: 16px; margin-bottom: 10px; }

hr {
  border: none;
  border-top: 1px solid #e1e5ec;
  margin: 28px 0;
}

/* Table tweaks */
table, th, td {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

/* Highlight for prices */
.price {
  font-family: 'Fredoka', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: var(--brand-primary);
}

/* Animate fadeIn/fadeOut */
.fade-in {
  animation: fadeIn 0.36s cubic-bezier(.63,.43,.19,1.05) forwards;
}
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}

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

/* End of CSS */
