@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 100 900; /* variable axis from 100 to 900 */
  font-display: swap;
  src: url("/assets/fonts/quicksand/Quicksand-VariableFont_wght.woff2")
    format("woff2");
}

:root {
  --text: #050316;
  --background: #ffffff;
  --primary: #feb816;
  --secondary: #76522e;
  --accent: #4d1f00;
  /* Colors */
  --color-primary: rgb(11, 78, 179);
  --color-primary-rgb: 11, 78, 179; /* RGB version for rgba usage */
  --color-accent: #feba17;
  --color-accent-hover: #fdde00;
  --color-text: #666666;
  --color-background: #ffffff;
  --color-background-light: #f1eeea;
  --color-shadow: rgba(0, 0, 0, 0.1);
  --color-green: #4caf50;

  --color-text: #050316;
  --color-background: #ffffff;
  --color-yellow: #feb816;
  --color-yellow-light: #fec94d;
  --color-yellow-dark: #e19800;
  --color-yellow-hover: #ffca4d;
  --color-border: #e0e0e0;
  --color-text-light: #76522e;
  --color-background-light: #f8f8f8;

  --color-border: #ccc;

  --shadow-sm: 0 1px 3px rgba(77, 31, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(77, 31, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(77, 31, 0, 0.1);
  --shadow-yellow: 0 4px 8px rgba(254, 184, 22, 0.25);
  /* Sizing */
  --bottom-nav-height: 4rem; /* Increased for better tap targets */
  --icon-size: 1.5rem;
  --border-radius: 0.75rem;

  /* Layout and Spacing */
  --container-max-width: 90rem; /* 1440px */
  --container-padding: 0.125rem; /* Default padding for containers */
  --header-padding: 1.125rem;
  --nav-item-spacing: 0.5rem;

  /* Section spacing */
  --section-padding-vertical: 3rem;
  --section-padding-horizontal: 1rem;

  /* Typography */
  --font-size-small: 0.75rem;
  --font-size-base: 1rem;
  --font-size-large: 1.25rem;

  --font-weight-normal: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Transitions */
  --transition-speed: 0.3s;

  /* Spacing */
  --space-xs: 0.25rem; /* 4px */
  --space-sm: 0.5rem; /* 8px */
  --space-md: 0.75rem; /* 12px */
  --space-lg: 1rem; /* 16px */
  --space-xl: 1.5rem; /* 24px */

  --font-size-xs: 0.75rem; /* 12px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-md: 1rem; /* 16px */
  --font-size-lg: 1.125rem; /* 18px */

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --z-index-dropdown: 100;
  --z-index-sticky: 200;
  --z-index-fixed: 300;
  --z-index-modal: 400;
  --z-index-popover: 500;
  --z-index-tooltip: 600;

  /* Standardized Breakpoints */
  --breakpoint-xs: 0; /* Extra small devices */
  --breakpoint-sm: 37.5em; /* 600px - Small tablets and large phones */
  --breakpoint-md: 48em; /* 768px - Medium-sized tablets */
  --breakpoint-lg: 64em; /* 1024px - Large tablets and desktops */
  --breakpoint-xl: 90em; /* 1440px - Extra large screens */
}

/* Media query adjustments for container padding */
@media screen and (min-width: 48em) {
  :root {
    --container-padding: 2rem;
    --section-padding-vertical: 4rem;
  }
}

@media screen and (min-width: 64em) {
  :root {
    --container-padding: 3rem;
    --section-padding-vertical: 5rem;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
}

/* Fix for page centering */
html {
  width: 100%;
}

body {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto; /* This centers the body */
  background-color: var(--color-background);
}

/* Make container work consistently */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Section headers styling - optimized for mobile visibility */
.sections-header {
  text-align: center;
  /* Reduced margin for mobile visibility */
  margin-bottom: 1.25rem; /* Changed from 2.5rem (40px) */
  max-width: 53.125rem; /* 850px */
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.sections-header-title {
  font-size: clamp(1.5rem, 5vw, 3rem); /* Slightly smaller on mobile */
  font-weight: 600;
  margin-bottom: 0.625rem; /* Reduced from 0.9375rem */
  color: #222222;
  line-height: 1.2;
  /* Improved gradient text that works across browsers */
  background: linear-gradient(to right, #222222, #444444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.sections-header-subtitle {
  font-size: clamp(0.875rem, 2vw, 1.2rem); /* Slightly smaller on mobile */
  color: var(--color-text);
  max-width: 31.25rem; /* 500px */
  margin: 0 auto;
}

/* ========================================
   HEADER COMPONENTS STYLES 
   ======================================== */

.site-header {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: var(--color-background);
}

.logo {
  display: none;
}

.logo img {
  height: 2.5rem;
  width: auto;
  display: block;
}

.nav-container {
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: var(--font-size-base);
  position: relative;
  padding: 0.5rem 0;
  display: block;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0.125rem;
  bottom: 0;
  left: 0;
  /* background-color: var(--color-accent); */
  background-color: transparent;
  background-image: linear-gradient(90deg, var(--accent), var(--primary));
  transition: width var(--transition-speed) ease;
}

.nav-links li a:hover {
  color: var(--secondary);
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: 0.125rem;
}

/* ========== Bottom Navigation (Mobile) ========== */
.bottom-nav {
  display: flex;
  justify-content: space-around;
  background-color: var(--color-background);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--bottom-nav-height);
  box-shadow: 0 -0.125rem 0.625rem rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.bottom-nav ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.bottom-nav li {
  flex: 1;
  text-align: center;
}

.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.25rem 0;
  color: var(--color-text);
  height: 100%;
  transition: color var(--transition-speed) ease;
  font-size: var(--font-size-small);
}

.bottom-nav .icon {
  width: var(--icon-size) !important;
  height: var(--icon-size) !important;
  object-fit: contain;
  margin-bottom: 0.25rem;
}

.bottom-nav a:hover,
.bottom-nav a.active {
  color: var(--secondary);
}

.bottom-nav a:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: -0.125rem;
}

#bottom-flag-button-desktop .icon {
  border-radius: 50%;
}

#bottom-flag-button-mobile .icon {
  border-radius: 50%;
}

/* ========== Mobile Navigation Overlay ========== */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-speed) ease;
  z-index: 1001;
  pointer-events: none;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-container {
  position: fixed;
  bottom: var(--bottom-nav-height);
  left: 0;
  right: 0;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  background-color: var(--color-background);
  transform: translateY(100%);
  transition: transform var(--transition-speed) ease;
  z-index: 1002;
  box-shadow: 0 -0.125rem 0.625rem rgba(0, 0, 0, 0.1);
}

.mobile-nav-container.open {
  transform: translateY(0);
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-links li:last-child {
  border-bottom: none;
}

.mobile-nav-links li a {
  text-decoration: none;
  color: var(--color-text);
  padding: 1rem 1.5rem;
  display: block;
  font-weight: 500;
  transition: background-color var(--transition-speed) ease;
  text-align: center;
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a:focus {
  background-color: var(--color-background-light);
  color: var(--secondary);
}

/* AGB Section Styles - Mobile First */
.agb-section {
  position: relative;
  padding: var(--section-padding-vertical) var(--section-padding-horizontal);
  background-color: #ffffff;
  min-height: 70vh;
  padding-bottom: calc(var(--bottom-nav-height) + 2rem);
}

.agb-content {
  max-width: 850px;
  margin: 0 auto;
  padding: 1rem;
}

.agb-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.agb-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.agb-item h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.25rem;
}

.agb-item h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.6rem;
  height: 0.6rem;
  background-color: var(--primary);
  border-radius: 0.25rem;
}

.agb-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 1rem;
}

.agb-item p:last-child {
  margin-bottom: 0;
}

.agb-item ul {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.agb-item ul li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.agb-final-note {
  font-weight: 600;
  font-style: italic;
  text-align: center;
  padding: 1rem;
  background-color: rgba(254, 184, 22, 0.05);
  border-radius: 0.75rem;
  margin-top: 2rem;
}

.agb-back-button {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.back-button {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.75rem;
  background-color: var(--primary);
  color: var(--text);
  font-weight: 600;
  border-radius: 3.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0.25rem 0.75rem rgba(77, 31, 0, 0.15);
}

.back-button:hover {
  background-color: #3d1800;
  transform: translateY(-0.25rem);
  box-shadow: 0 0.5rem 1rem rgba(77, 31, 0, 0.2);
  color: #fff;
}

/****************************************************************
           FOOTER SECTION
****************************************************************/

.footer {
  position: relative;
  background: linear-gradient(to bottom, #f8f8f8, #ffffff);
  padding-top: 5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Background decoration */
.footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 10% 95%,
      rgba(254, 184, 22, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 90%,
      rgba(77, 31, 0, 0.04) 0%,
      transparent 50%
    );
  z-index: 0;
}

/* Container styling */
.footer-container {
  position: relative;
  z-index: 1;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding) 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: center;
}

/* Footer columns */
.footer-column {
  display: flex;
  flex-direction: column;
}

/* Logo styling */
.footer-logo {
  margin: 0 auto 1.5rem;
  max-width: 12rem;
}

.footer-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Footer headings and dividers */
.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.footer-divider {
  width: 3rem;
  height: 0.25rem;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
}

/* Text styling for company & contact info */
.company-info,
.company-address,
.contact-intro {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 1rem;
}

/* Footer links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links li a {
  color: #666666;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: var(--color-accent);
}

/* Contact styling */
.contact-details {
  font-style: normal;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: var(--color-background-light);
  border-radius: 50%;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.contact-icon img {
  width: 1rem;
  height: 1rem;
  opacity: 0.7;
}

.contact-item a {
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Social media icons */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-background-light);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--color-accent);
  transform: translateY(-0.25rem);
}

.social-icon img {
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.7;
}

.social-icon:hover img {
  opacity: 1;
}

/* Copyright section */
.footer-bottom {
  background-color: #f5f5f5;
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.copyright {
  font-size: 0.875rem;
  color: #888888;
}

/* ========================================
   COOKIE COMPONENT STYLES 
   ======================================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -0.25rem 1rem rgba(0, 0, 0, 0.1);
  z-index: 999; /* Set just below bottom-nav z-index of 1000 */
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.5s ease;
  padding: 0 1rem;
  /* Mobile-specific positioning */
  padding-top: 1rem;
  padding-bottom: calc(var(--bottom-nav-height) + 1rem);
  max-height: calc(100vh - var(--bottom-nav-height));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0.75rem 0.75rem 0 0;
}

.cookie-consent-banner.active {
  transform: translateY(0);
}

.cookie-consent-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 1.5rem 0;
}

.cookie-consent-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-consent-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
}

.cookie-consent-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 1rem;
}

.cookie-consent-link {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-consent-link:hover {
  color: var(--secondary);
}

.cookie-consent-buttons {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
  padding-bottom: 0.5rem;
}

.cookie-consent-button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 3.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  border: none;
  text-align: center;
}

.cookie-settings-button {
  background-color: #f5f5f5;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.cookie-settings-button:hover {
  background-color: #e8e8e8;
}

.cookie-accept-button {
  background-color: var(--primary);
  color: var(--text);
}

.cookie-accept-button:hover {
  background-color: var(--secondary);
  color: var(--background);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.cookie-settings-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-settings-content {
  background-color: #ffffff;
  border-radius: 1rem;
  width: 100%;
  max-width: 37.5rem; /* 600px */
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #eaeaea;
}

.cookie-settings-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin: 0;
}

.cookie-settings-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #777777;
  transition: color 0.3s ease;
}

.cookie-settings-close:hover {
  color: #333333;
}

.cookie-settings-body {
  padding: 1.5rem;
  overflow-y: auto;
}

.cookie-category {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #eaeaea;
}

.cookie-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}

.cookie-category-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333333;
  margin: 0 0 0.5rem;
}

.cookie-category-description {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #666666;
  margin: 0;
}

.cookie-switch-container {
  flex-shrink: 0;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 3.75rem;
  height: 2rem;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cccccc;
  transition: 0.4s;
  border-radius: 2rem;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 1.5rem;
  width: 1.5rem;
  left: 0.25rem;
  bottom: 0.25rem;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: var(--primary);
}

input:focus + .cookie-slider {
  box-shadow: 0 0 1px var(--primary);
}

input:checked + .cookie-slider:before {
  transform: translateX(1.75rem);
}

input:disabled + .cookie-slider {
  cursor: not-allowed;
  opacity: 0.7;
}

.cookie-settings-footer {
  padding: 1.5rem;
  border-top: 1px solid #eaeaea;
  display: flex;
  justify-content: flex-end;
}

/* Fixed settings button */
.cookie-settings-fixed-button {
  transition: all 0.3s ease;
}

.cookie-settings-fixed-button:hover {
  background-color: var(--primary) !important;
  color: #ffffff;
}

.cookie-settings-button-container {
  display: none; /* Hide the fixed button on mobile */
}

/* ========================================
   FLOATING ACTION BUTTONS
   ======================================== */

.floating-buttons {
  display: none; /* Hidden by default on mobile */
  position: fixed;
  right: 1.5rem;
  bottom: 6rem;
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-speed) ease;
}

.floating-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
  transition: all var(--transition-speed) ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.floating-button:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.5rem 0.75rem rgba(0, 0, 0, 0.2);
  background-color: var(--accent);
}

.floating-button:hover img {
  filter: brightness(0) invert(1);
}

/* Only book button has different color by default */
.floating-button.book {
  background-color: var(--accent);
}

.floating-button img {
  width: 1.5rem;
  height: 1.5rem;
}

/* Tool tips for the buttons */
.floating-button::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 4.5rem;
  background-color: var(--accent);
  color: var(--background);
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(1rem);
  pointer-events: none;
  transition: all var(--transition-speed) ease;
}

.floating-button:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Adjust position when scrolling to avoid footer overlap */
.floating-buttons.near-footer {
  bottom: 15rem;
}

@media screen and (min-width: 30.0625em) {
  .bottom-nav {
    display: none;
  }

  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--header-padding) var(--container-padding);
    width: 100%;
  }

  .nav-container {
    display: block;
  }

  .site-header {
    position: sticky;
    top: 0;
    background-color: var(--color-background);
    z-index: 1000;
    box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.05);
  }

  .logo {
    display: block;
  }

  .agb-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .agb-back-button {
    margin-bottom: 0;
  }

  .agb-final-note {
    padding: 1.5rem;
  }

  .agb-item h2 {
    font-size: 1.25rem;
    padding-left: 1.25rem;
  }

  .agb-item h2::before {
    width: 0.6rem;
    height: 0.6rem;
    top: 0.4rem;
  }

  .agb-item p,
  .agb-item ul li {
    font-size: 0.95rem;
  }

  .cookie-consent-banner {
    padding-top: 0;
    padding-bottom: 0;
    max-height: none;
    border-radius: 0;
  }

  .cookie-consent-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
    padding-bottom: 0;
  }

  .cookie-consent-button {
    width: auto;
  }

  .cookie-consent-content {
    flex-direction: column;
  }

  .floating-buttons {
    display: flex;
  }
}

/* Restore original spacing on larger screens */
@media screen and (min-width: 48.0625em) {
  .sections-header {
    margin-bottom: 2.5rem;
  }

  .sections-header-title {
    margin-bottom: 0.9375rem;
  }
  .site-header .container {
    padding: 1.75rem var(--container-padding);
  }

  .logo img {
    height: 2.75rem;
  }

  .agb-section {
    padding-bottom: var(--section-padding-vertical);
  }

  .agb-content {
    padding: 2rem 0;
  }

  .agb-item h2 {
    font-size: 1.5rem;
    padding-left: 1.5rem;
  }

  .agb-item h2::before {
    width: 0.75rem;
    height: 0.75rem;
    top: 0.5rem;
  }

  .agb-item p,
  .agb-item ul li {
    font-size: 1rem;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
  }

  .cookie-consent-container {
    padding: 2rem 0;
  }

  .cookie-consent-title {
    font-size: 1.5rem;
  }

  .cookie-consent-text {
    font-size: 1rem;
  }
}

@media screen and (min-width: 64.0625em) {
  .site-header .container {
    padding: 1.5rem var(--container-padding);
  }

  .logo img {
    height: 3.25rem;
  }
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 2rem;
    text-align: left;
  }

  .footer-logo,
  .footer-divider {
    margin-left: 0;
    margin-right: 0;
  }

  .contact-item {
    flex-direction: row;
    align-items: flex-start;
  }

  .contact-icon {
    margin-right: 0.75rem;
    margin-bottom: 0;
  }

  .social-links {
    justify-content: flex-start;
  }

  /* Restore link dots on desktop */
  .footer-links li a {
    padding-left: 1.25rem;
    position: relative;
  }

  .footer-links li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--color-accent);
    border-radius: 50%;
    opacity: 0.6;
    transition: all 0.3s ease;
  }

  .footer-links li a:hover {
    transform: translateX(0.25rem);
  }

  .footer-links li a:hover::before {
    opacity: 1;
    width: 0.625rem;
    border-radius: 0.25rem;
  }

  .floating-buttons {
    right: 2.5rem;
  }
}

@media screen and (max-height: 500px) and (orientation: landscape) {
  .floating-buttons {
    right: 0.75rem;
    bottom: 0.75rem;
    gap: 0.5rem;
  }

  .floating-button {
    width: 2.5rem;
    height: 2.5rem;
  }

  .floating-button img {
    width: 1.25rem;
    height: 1.25rem;
  }

  .floating-button::before {
    right: 3rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
}
