@font-face {
  font-family: 'SF Pro Text Semibold';
  src: url('assets/fonts/sf-pro-text-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Display Medium';
  src: url('assets/fonts/sf-pro-display-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'OCR-B';
  src: url('assets/fonts/ocrb.woff2') format('woff2');
  font-style: normal;
}

@font-face {
  font-family: 'HelveticaNeue-CondensedBold';
  src: url('assets/fonts/HelveticaNeue-CondensedBold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue Regular';
  src: url('assets/fonts/Helvetica Neue Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #000000;
}

.home-page {
  background: #000000 url('assets/mm-background.png') center no-repeat;
  position: relative;
}

#slider-container {
  position: absolute;
  top: calc(50% + 163px);
  left: calc(50% - 96px); /* 48px from center + 48px button width */
  width: 192px; /* 48px button + 144px slide area */
  height: 48px;
}

#phone-button {
  position: absolute;
  width: 48px;
  height: 48px;
  left: 0;
  top: 0;
  background-image: url('assets/phonebutton.svg');
  background-size: contain;
  background-repeat: no-repeat;
  cursor: grab;
  z-index: 10;
  animation: nudge 3s ease-in-out infinite;
}

#phone-button.is-dragging {
  animation: none;
}

#slide-text {
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'SF Pro Display Medium', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #212121;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.1s ease-out;
}

@keyframes nudge {
  0%, 100% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(15px);
  }
  20% {
    transform: translateX(0);
  }
}

.phone-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 545px;
  width: auto;
  z-index: 10;
  pointer-events: none;
}

.screen-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 243px;
  height: 517px;
  background-color: white;
  border-radius: 44px;
  z-index: 1;
  display: grid;
  overflow: hidden;
  grid-template-rows: 
    [status-bar] 24px
    [logo] 64px
    [spacer-1] 12px
    [img-container] 303.75px
    [spacer-2] 10px
    [img-preview] 34px
    [spacer-3] 8px
    [contact] 55.25px;
  grid-template-areas:
    "status-bar"
    "logo"
    "spacer-1"
    "img-container"
    "spacer-2"
    "img-preview"
    "spacer-3"
    "contact";
  }

/* Calendar-specific screen container layout */
body:has(.calendar-container) .screen-container {
  display: flex !important;
  flex-direction: column;
  height: 517px;
  grid-template-rows: none;
  grid-template-areas: none;
  position: relative;
  padding-bottom: 48px;
  box-sizing: border-box;
}

/* Content pages: remove navigation space and hide nav */
body:has(.content-scroll-container) .screen-container {
  padding-bottom: 0 !important;
}

body:has(.content-scroll-container) .calendar-nav {
  display: none;
}

/* Calendar-specific status bar with grey background */
body:has(.calendar-container) .status-bar {
  background-color: #f5f5f5;
  height: 24px;
  flex-shrink: 0;
}

/* Homescreen-specific wallpaper */
.homescreen .screen-container {
  background: url('assets/homescreen-wallpaper.png') center center/cover no-repeat;
}

.image-gallery-container {
  grid-area: img-container;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
}

/* Main Swiper Styles */
.main-swiper {
  width: 100%;
  height: 100%;
  cursor: grab;
}

.main-swiper:active {
  cursor: grabbing;
}

.main-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
}

.main-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
}

/* Smooth transitions */
.main-swiper .swiper-slide {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Swiper overrides for iOS feel */
.swiper {
  touch-action: pan-y;
}

.swiper-wrapper {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.status-bar {
  grid-area: status-bar;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding-bottom: 2px;
}

.status-time {
  font-family: 'SF Pro Text Semibold', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #000000;
  margin-left: 32px;
}

.levels-icon {
  width: 84px;
  height: auto;
  margin-left: auto;
  margin-right: 8px;
}

.logo-container {
  grid-area: logo;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding-bottom: 8px;
  position: relative;
}

.back-button {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 8px;
  left: 6px;
  cursor: pointer;
}

.back-button:active {
  content: url('assets/back-button-pressed.svg');
}

.logo-image {
  width: 88px;
  height: auto;
  object-fit: contain;
}

.preview-container {
  grid-area: img-preview;
  padding-left: 0px;
  padding-right: 0px;
  height: 30px;
  overflow: hidden;
  position: relative;
}

/* Preview Swiper Styles */
.preview-swiper {
  width: 100%;
  height: 100%;
}

.preview-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.preview-swiper .swiper-slide {
  width: 30px !important;
  height: 30px !important;
  margin-right: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
  flex-shrink: 0;
}

.preview-swiper .swiper-slide:last-child {
  margin-right: 0;
}

.preview-swiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  z-index: 2;
}

.preview-image {
  width: 30px !important;
  height: 30px !important;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  -webkit-user-drag: none;
  display: block;
}

.contact-container {
  grid-area: contact;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.ig-button {
  width: 32px;
  height: 32px;
  margin-right: 18px;
  cursor: pointer;
}

.ig-button:active {
  content: url('assets/ig-button-pressed.svg');
}

.contact-button {
  width: 96px;
  height: 32px;
  margin-right: 18px;
  cursor: pointer;
}

.contact-button:active {
  content: url('assets/contact-button-pressed.svg');
}

.like-button {
  width: 32px;
  height: 32px;
  cursor: pointer;
}

/* Apps grid styling for homescreen */
.apps {
  display: grid;
  grid-template-columns: repeat(4, 42px);
  grid-template-rows: repeat(6, auto);
  gap: 12px;
  justify-content: center;
  align-content: start;
  padding: 20px 0;
  height: calc(100% - 40px);
  width: 100%;
}

.app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
  /* iOS-like fly-in animation */
  opacity: 0;
  transform: scale(0.3) translateY(-20px);
  animation: flyIntoPosition 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.app-icon {
  background-color: transparent;
  border-radius: 12px;
  width: 42px;
  height: 42px;
  transition: background-color 0.2s ease;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

#tiktok-app .app-icon {
  background-image: url('assets/tiktok-icon.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#instagram-app .app-icon {
  background-image: url('assets/instagram-icon.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#mail-app .app-icon {
  background-image: url('assets/mail-icon.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#calendar-app .app-icon {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#lookbook-app .app-icon {
  background-image: url('assets/lookbook-icon.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.calendar-icon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.calendar-day-name {
  font-family: 'Helvetica Neue Regular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: normal;
  color: #707070;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  line-height: 1;
}

.calendar-date {
  font-family: 'HelveticaNeue-CondensedBold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #000000;
  line-height: 1;
  
}



.app-name {
  font-family: 'SF Pro Text Regular', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 9px;
  padding-top: 2px;
  color: #ffffff;
  text-align: center;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 50px;
}

.app-item:active .app-icon {
  background-color: #555555;
  transform: scale(0.95);
  transition: all 0.1s ease;
}

/* Keyframe animation for apps flying into position */
@keyframes flyIntoPosition {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Staggered animation delays for each app */
#lookbook-app {
  animation-delay: 0.1s;
}

#calendar-app {
  animation-delay: 0.2s;
}

#tiktok-app {
  animation-delay: 0.3s;
}

#instagram-app {
  animation-delay: 0.4s;
}

#mail-app {
  animation-delay: 0.5s;
}


/* Calendar styling */
.calendar-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  overflow: hidden;
}

.calendar-info {
  background-color: #f5f5f5;
  padding: 0px 0px 8px 0px;
  flex-shrink: 0;
  border-bottom: 1px solid #d9d9d9;
}

.calendar-scroll-container {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #ffffff;
  min-height: 0;
  scroll-behavior: smooth;
}

.calendar-months {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.month-container {
  width: 100%;
  flex-shrink: 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  padding: 0 8px 12px 8px;
  background-color: #ffffff;
  width: 100%;
  box-sizing: border-box;
}

.calendar-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  aspect-ratio: 1;
  background-color: #ffffff;
  position: relative;
  padding: 4px 1px;
  box-sizing: border-box;
  min-width: 0;
}

.calendar-day.empty-day {
  background-color: transparent;
  visibility: hidden;
}

.day-number {
  font-family: 'SF Pro Display Medium', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 4px;
  text-align: center;
}

.day-number.today {
  color: #ff0000;
  font-weight: 600;
}

.day-indicator {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  margin-top: auto;
  background-color: transparent;
  overflow: hidden;
}

.day-indicator.has-content {
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Maintain exact dimensions regardless of image content */
  flex-shrink: 0;
  flex-grow: 0;
  border-radius: 6px;
  overflow: hidden;
}

/* When day indicator replaces the day number, make it larger and centered */
.calendar-day:has(.day-indicator.has-content:only-child) {
  justify-content: center;
}

.calendar-day:has(.day-indicator.has-content:only-child) .day-indicator.has-content {
  width: 32px;
  height: 32px;
  margin-top: 0;
  border-radius: 8px;
  overflow: hidden;
}

/* Remove border for clean appearance */
.day-indicator.has-content:only-child {
  border: none;
}

/* Today styling for content days */
.day-indicator.has-content.today {
  border: 2px solid #ff0000;
}



.calendar-nav {
  background-color: #f5f5f5; /* Same light grey as calendar-info */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  padding: 12px 0;
  height: 32px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-top: 1px solid #d9d9d9;
}

.nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Helvetica Neue Regular', 'Helvetica', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  cursor: pointer;
  transition: all 0.2s ease;
  padding-bottom: 8px;
  border-radius: 4px;
  margin: 0 4px;
}

.nav-item:nth-child(1) {
  justify-content: flex-start;
  margin-left: 16px;
}

.nav-item:nth-child(2) {
  justify-content: center;
}

.nav-item:nth-child(3) {
  justify-content: flex-end;
  margin-right: 16px;
}

.nav-item:active {
  opacity: 0.6;
  transform: scale(0.95);
}

.month {
  font-family: 'HelveticaNeue-CondensedBold', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 24px;
  color: #000000;
  text-align: left;
  margin-bottom: 4px;
  padding-left: 14px;
  padding-top: 8px;
  text-transform: uppercase;
}

.month-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-left: 14px;
  padding-top: 8px;
  margin-bottom: 4px;
}

.month-header .month {
  padding-left: 0;
  padding-top: 0;
  margin-bottom: 0;
}

.month-header .selected-day {
  padding-left: 0;
  padding-top: 0;
  margin-bottom: 0;
}

.year {
  font-family: 'HelveticaNeue-CondensedBold', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 24px;
  color: #666666;
  padding-right: 14px;
}

.selected-day {
  font-family: 'HelveticaNeue-CondensedBold', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 24px;
  color: #000000;
  text-align: left;
  margin-bottom: 4px;
  padding-left: 14px;
  padding-top: 8px;
  text-transform: uppercase;
}

/* Calendar-specific logo container */
.calendar-logo-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 24px;
  padding-bottom: 0px;
  position: relative;
  background-color: #f5f5f5;
  flex-shrink: 0;
}

.day-name {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: 1fr;
  gap: 0;
  text-align: center;
  padding: 0 8px;
  box-sizing: border-box;
}

.day-name div {
  font-family: 'Helvetica Neue Regular', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 8px;
  color: #666666;
}

/* Content image styling */
.content-image {
  width: 243px;
  aspect-ratio: 4 / 3;
  background-color: #f0f0f0;
  border-radius: 8px;
  margin: 0 auto;
  padding-top: 12px;
}

/* Content scroll container */
.content-scroll-container {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #ffffff;
  min-height: 0;
  scroll-behavior: smooth;
  padding-bottom: 32px;
}

/* Content area with padding */
.content-area {
  padding: 0 14px 16px 14px;
}

/* Text content that moves down smoothly when gallery loads */
.content-text-section {
  transform: translateY(0);
  transition: transform 0.4s ease-out;
}

/* When gallery is loading, text is positioned higher */
.content-area:has(.content-gallery-container.loading) .content-text-section {
  transform: translateY(-20px);
}

/* Content image for templates (flexible aspect ratio) */
.content-area .content-image {
  width: 100%;
  aspect-ratio: unset;
  background-color: transparent;
  border-radius: 8px;
  margin-bottom: 8px;
}

/* Content Gallery Styles */
.content-gallery-container {
  width: 100%;
  aspect-ratio: unset;
  background-color: transparent;
  border-radius: 0;
  margin-bottom: 8px;
  margin-top: 12px;
  position: relative;
  overflow: hidden;
  transition: height 0.4s ease-out;
}

/* Loading state for smooth transitions */
.content-gallery-container.loading {
  background-color: #f8f8f8;
  animation: subtle-pulse 1.5s ease-in-out infinite;
  position: relative;
}

.content-gallery-container.loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-top: 2px solid #999;
  border-radius: 50%;
  animation: loading-spinner 1s linear infinite;
}

@keyframes subtle-pulse {
  0%, 100% { background-color: #f8f8f8; }
  50% { background-color: #f2f2f2; }
}

@keyframes loading-spinner {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.content-gallery {
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
}

.content-gallery .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-gallery .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.content-gallery .swiper-slide img.loaded {
  opacity: 1;
}

/* Instagram-style pagination dots */
.content-gallery .swiper-pagination {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: none; /* Hide by default, show only when needed */
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Show pagination when multiple images are confirmed */
.content-gallery.show-pagination .swiper-pagination {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.gallery-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  display: block !important;
  visibility: visible !important;
}

.gallery-pagination-bullet-active {
  background-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

/* Hide pagination if only one image */
.content-gallery.single-image .swiper-pagination {
  display: none !important;
  visibility: hidden !important;
}

.content-gallery:has(.swiper-wrapper .swiper-slide:only-child) .swiper-pagination {
  display: none !important;
  visibility: hidden !important;
}

/* Content headline */
.content-headline {
  font-family: 'SF Pro Text Regular', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  color: #000000;
  text-align: left;
  margin-bottom: 2px;
  line-height: 1.3;
}

/* Calendar tag */
.calendar-tag {
  font-family: 'SF Pro Text Regular', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 9px;
  color: #000000;
  text-align: left;
  border: 1px solid #000000;
  padding: 2px 6px;
  margin-bottom: 4px;
  margin-right: 8px;
  display: inline-block;
  line-height: 1.2;
}

/* Content text */
.content-text {
  font-family: 'SF Pro Text Regular', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  color: #000000;
  text-align: left;
  line-height: 1.2;
  margin-bottom: 16px;
}

/* Content link - similar to content text but underlined with link symbol */
.content-link:not(:empty) {
  font-family: 'SF Pro Text Regular', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  color: #000000;
  text-align: left;
  line-height: 1.4;
  margin-bottom: 16px;
  text-decoration: underline;
  position: relative;
  padding-top: 20px;
  padding-bottom: 16px;
}

.content-link:not(:empty)::before {
  content: '🔗';
  position: absolute;
  left: 0;
  top: 0;
}

.content-link a {
  color: inherit;
  text-decoration: inherit;
}

/* Legal link styling */
.legal-link {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-family: 'SF Pro Display Medium', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #d9d9d9;
  text-decoration: none;
  z-index: 1000;
  transition: opacity 0.2s ease;
}

.legal-link:hover {
  opacity: 0.8;
}

.legal-link:active {
  opacity: 0.6;
}

/* Legal page styling */
.legal-page {
  background-color: #ffffff;
  color: #000000;
  padding: 0;
  margin: 0;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  min-height: 100vh;
  box-sizing: border-box;
}

/* Main page title (H1) */
.legal-heading {
  font-family: 'OCR-B', monospace;
  font-size: 36px;
  color: #000000;
  margin: 0 0 48px 0;
  text-align: center;
  font-weight: normal;
}

/* Major sections (H2) - Imprint, Datenschutzerklärung */
.legal-subheading {
  font-family: 'OCR-B', monospace;
  font-size: 28px;
  color: #000000;
  margin: 48px 0 12px 0;
  font-weight: normal;
  text-align: left;
}

.legal-subheading:first-of-type {
  margin-top: 0;
}

/* Numbered sections (H3) - 1. Datenschutz auf einen Blick, 2. Verantwortliche Stelle */
.legal-h3 {
  font-family: 'OCR-B', monospace;
  font-size: 22px;
  color: #000000;
  margin: 40px 0 8px 0;
  font-weight: normal;
  text-align: left;
}

/* Subsections (H4) - Allgemeine Hinweise, Datenerfassung */
.legal-h4 {
  font-family: 'OCR-B', monospace;
  font-size: 18px;
  color: #000000;
  margin: 12px 0 6px 0;
  font-weight: normal;
  text-align: left;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-text {
  font-family: 'OCR-B', monospace;
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
  white-space: pre-line;
  max-width: none;
}

.legal-text:last-child {
  margin-bottom: 0;
}

/* Links within legal text */
.legal-text a {
  color: #000000;
  text-decoration: underline;
}

.legal-text a:hover {
  opacity: 0.7;
}

/* Mobile: up to 600px */
@media (max-width: 600px) {
  .legal-link {
    bottom: 16px;
    right: 16px;
    font-size: 16px;
  }
  
  .legal-container {
    padding: 20px 16px;
  }
  
  .legal-heading {
    font-size: 28px;
    margin-bottom: 32px;
  }
  
  .legal-subheading {
    font-size: 22px;
    margin: 32px 0 8px 0;
    text-align: left;
  }
  
  .legal-h3 {
    font-size: 18px;
    margin: 28px 0 6px 0;
    text-align: left;
  }
  
  .legal-h4 {
    font-size: 16px;
    margin: 20px 0 4px 0;
    text-align: left;
  }
  
  .legal-text {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Tablet: 601px to 1024px */
@media (min-width: 601px) and (max-width: 1024px) {
}

/* Desktop: 1025px and up */
@media (min-width: 1025px) {
}
