* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gradient-primary: linear-gradient(90deg, #D123FF 0%, #00D1FF 100%);
  --color-dark: #1a1a2e;
  --color-white: #ffffff;
  --color-text-light: rgba(255, 255, 255, 0.9);
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

/* Navbar scrolled state */
.navbar.scrolled {
  background: #FFFFFF;
  box-shadow: 0px 8px 16px 0px #00000014, 0px 0px 4px 0px #0000000A;
}

.navbar.scrolled .navbar-links a {
  color: #323232;
  opacity: 1;
}

.navbar.scrolled .navbar-links a:hover,
.navbar.scrolled .navbar-links a.active {
  color: #B305CF;
}

.navbar.scrolled .navbar-cta {
  background: transparent;
  color: #323232;
  border: 1px solid #323232;
}

.navbar.scrolled .navbar-cta:hover {
  background: #323232;
  color: #FFFFFF;
}

.navbar.scrolled .hamburger span {
  background: #323232;
}

.navbar-logo {
  height: 50px;
  width: auto;
  flex-shrink: 0;
}

.navbar-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.navbar-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.navbar-cta-wrapper {
  flex-shrink: 0;
}

.navbar-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
  opacity: 0.7;
}

.navbar-links a:hover {
  opacity: 1;
}

.navbar-links a.active {
  color: #FFFFFF;
  opacity: 1;
}

.navbar-cta {
  padding: 0.75rem 1.75rem;
  background: #FFFFFF3D;
  border: none;
  border-radius: 10px;
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar-cta:hover {
  background: #FFFFFF;
  color: var(--color-dark);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  width: 30px;
  height: 24px;
  justify-content: center;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.active span {
  background: var(--color-dark);
}

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu-links a {
  color: #323232;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
  color: #B305CF;
}

.mobile-menu-cta {
  padding: 1rem 2.5rem;
  border: 2px solid var(--color-dark);
  border-radius: 16px;
  color: var(--color-dark);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background-image: url('https://firebasestorage.googleapis.com/v0/b/cstf-v2-dev.appspot.com/o/JellyMed%20Website%2Fjellymed-bg-hero-section.png?alt=media&token=b2b64333-39ad-452a-9ee9-44f31724bfa6');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: var(--color-white);
}

.hero-tagline {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.hero-title-line {
  display: block;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--gradient-primary);
  color: var(--color-white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(209, 35, 255, 0.4);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(209, 35, 255, 0.6);
}

/* Visit Mode Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 2rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--color-white);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  max-width: 900px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: #000;
}

.modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 2rem;
}

.modal-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.visit-card {
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  background: var(--color-white);
  transition: box-shadow 0.3s ease;
}

.visit-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.visit-card-image {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.visit-card-image img {
  max-width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}

.visit-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.visit-card-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.visit-card-subtitle {
  font-size: 0.95rem;
  color: #999;
  margin-bottom: 1rem;
}

.visit-card-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  min-height: 90px;
}

.visit-card-btn {
  width: 100%;
  padding: 0.875rem 2rem;
  background: var(--gradient-primary);
  color: var(--color-white);
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.visit-card-btn:hover {
  transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: var(--color-white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  width: 32.64%;
  max-width: 583px;
  z-index: 1000;
  display: none;
}

.cookie-banner.active {
  display: block;
  animation: slideIn 0.4s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.cookie-close:hover {
  color: #000;
}

.cookie-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.cookie-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.cookie-text a {
  color: #D123FF;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.cookie-btn {
  padding: 0.75rem 1.25rem;
  border: 2px solid #e0e0e0;
  background: var(--color-white);
  color: var(--color-dark);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.cookie-btn:hover {
  border-color: #ccc;
  background: #f5f5f5;
  color: #000;
  transform: translateY(-2px);
}

.cookie-btn-accept {
  background: var(--gradient-primary);
  color: var(--color-white);
  border: none;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
}

/* Hi I'm Rori Section */
.rori-section {
  padding: 80px 0;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rori-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.rori-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

/* Dr. Laura Purdy Section */
.dr-laura-section {
  padding: 100px 80px;
  background: var(--color-white);
}

.dr-laura-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.dr-laura-image-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dr-laura-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  object-fit: contain;
}

.dr-laura-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dr-laura-name {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.dr-laura-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #666;
  line-height: 1.3;
  margin-bottom: 16px;
}

.dr-laura-text {
  font-size: 1.125rem;
  font-weight: 400;
  color: #333;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.dr-laura-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.dr-laura-btn {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  display: inline-block;
  text-align: center;
}

.dr-laura-btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  border: none;
}

.dr-laura-btn-primary:hover {
  transform: translateY(-2px);
}

.dr-laura-btn-secondary {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}

.dr-laura-btn-secondary:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

/* Festival Showcase Section */
.festival-section {
  padding: 80px 80px;
  background: #B305CF;
  text-align: center;
  overflow-x: hidden;
}

.festival-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.festival-subtext {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}

.festival-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.festival-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.festival-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  height: 120px;
}

/* Specific logo dimensions */
.festival-card-dusk .festival-image-wrapper {
  width: 221px;
}

.festival-card-winter .festival-image-wrapper {
  width: 397px;
}

.festival-card-lolla .festival-image-wrapper {
  width: 306px;
}

.festival-card:hover .festival-image-wrapper {
  transform: translateY(-8px);
}

.festival-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.festival-card:hover .festival-image {
  transform: scale(1.05);
}

.festival-name {
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.5px;
  margin-top: 4px;
  line-height: 1.5;
}

/* All-in-One Support Section */
.support-section {
  padding: 80px 40px;
  background: #B305CF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.support-content {
  max-width: 1200px;
  margin: 0 auto;
}

.support-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.support-subheading {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 60px;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.support-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(196, 196, 196, 0) 156.08%);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.support-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.support-card-large {
  grid-column: 1 / -1;
}

.support-card-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-card-icon svg {
  width: 54px;
  height: 54px;
  fill: var(--color-white);
}

.support-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.support-card-description {
  font-size: 1rem;
  color: var(--color-white);
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 16px;
}

.support-card-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-card-list li {
  font-size: 0.95rem;
  color: var(--color-white);
  line-height: 1.7;
  opacity: 0.95;
}

.support-card-list li strong {
  font-weight: 600;
}

.support-card-tour-dates {
  font-size: 1rem;
  color: var(--color-white);
  font-style: italic;
  margin-top: 8px;
  opacity: 0.9;
}

/* Floating Images */
.floating-image {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

.floating-image-1 {
  width: 300px;
  height: auto;
  top: 5%;
  left: 6%;
  animation: float 6s ease-in-out infinite;
}

.floating-image-2 {
  width: 110px;
  height: auto;
  top: 12%;
  right: 15%;
  animation: float 7s ease-in-out infinite 1s;
  z-index: 0;
}

.floating-image-3 {
  width: 100px;
  height: auto;
  bottom: 11%;
  left: 12.9%;
  animation: float 8s ease-in-out infinite 2s;
  z-index: 0;
}

.floating-image-4 {
  width: 95px;
  height: auto;
  bottom: 1%;
  left: 48%;
  transform: translateX(-50%);
  animation: float 7.5s ease-in-out infinite 1.5s;
  z-index: 0;
}

.floating-image-5 {
  width: 90px;
  height: auto;
  bottom: 35%;
  right: 15%;
  transform: translateY(-50%);
  animation: float 6.5s ease-in-out infinite 0.5s;
  z-index: 0;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* How JellyMed Care Works Section */
.how-it-works-section {
  padding: 80px 40px;
  background: #FFFFFF;
  text-align: center;
}

.how-it-works-content {
  max-width: 1200px;
  margin: 0 auto;
}

.how-it-works-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 60px;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.work-step-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.work-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.step-number {
  display: none;
}

.step-icon {
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.step-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 12px;
  text-align: center;
  line-height: 1.3;
}

.step-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  text-align: center;
}

.how-it-works-cta {
  display: inline-block;
  margin-top: 50px;
  padding: 1rem 3rem;
  background: var(--gradient-primary);
  color: var(--color-white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.how-it-works-cta:hover {
  transform: translateY(-2px);
}

.how-it-works-pricing {
  margin-top: 30px;
  text-align: center;
}

.pricing-fee {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.pricing-details {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .navbar-logo {
    height: 40px;
  }

  .navbar-menu {
    display: none;
  }

  .navbar-cta-wrapper {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 2rem 1.5rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-cta {
    padding: 0.9rem 2.5rem;
    font-size: 0.95rem;
  }

  .modal-overlay {
    padding: 0.5rem;
  }

  .modal-content {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }

  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 1.5rem;
    width: 30px;
    height: 30px;
  }

  .modal-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
  }

  .modal-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .visit-card {
    padding: 1.25rem;
  }

  .visit-card-image {
    min-height: 120px;
    margin-bottom: 1rem;
  }

  .visit-card-image img {
    max-height: 120px;
  }

  .visit-card-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .visit-card-price {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }

  .visit-card-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .visit-card-description {
    min-height: auto;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }

  .visit-card-btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.85rem;
  }

  .cookie-banner {
    width: auto;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
    padding: 1.5rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  /* Rori Section - Mobile */
  .rori-section {
    padding: 40px 0;
  }

  .rori-content {
    padding: 0 20px;
  }

  /* Dr. Laura Purdy Section - Mobile */
  .dr-laura-section {
    padding: 60px 20px;
  }

  .dr-laura-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dr-laura-image-wrapper {
    order: 1;
  }

  .dr-laura-content {
    order: 2;
    gap: 16px;
  }

  .dr-laura-name {
    font-size: 2rem;
    margin-bottom: 6px;
  }

  .dr-laura-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .dr-laura-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 6px;
  }

  .dr-laura-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .dr-laura-btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  /* Festival Section - Mobile */
  .festival-section {
    padding: 40px 20px;
  }

  .festival-heading {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }

  .festival-subtext {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .festival-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .festival-card {
    gap: 16px;
  }

  .festival-card-dusk .festival-image-wrapper,
  .festival-card-winter .festival-image-wrapper,
  .festival-card-lolla .festival-image-wrapper {
    width: auto;
    height: auto;
    max-width: 90%;
  }

  .festival-image {
    max-width: 100%;
    height: auto;
  }

  /* Support Section - Mobile */
  .support-section {
    padding: 60px 20px;
  }

  .support-heading {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .support-subheading {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .support-card {
    padding: 24px 20px;
  }

  .support-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  .support-card-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .support-card-description {
    font-size: 0.9rem;
  }

  /* Scale down floating images on mobile */
  .floating-image-1 {
    width: 120px;
    top: 12%;
    left: 2%;
    z-index: 0;
  }

  .floating-image-2 {
    width: 70px;
    top: 10%;
    right: 2%;
  }

  .floating-image-3 {
    width: 60px;
    bottom: 30%;
    left: 5%;
  }

  .floating-image-4 {
    width: 55px;
    bottom: 5%;
  }

  .floating-image-5 {
    width: 50px;
    top: 45%;
    left: 2%;
  }

  /* How It Works Section - Mobile */
  .how-it-works-section {
    padding: 60px 20px;
  }

  .how-it-works-heading {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .work-step-card {
    padding: 32px 24px;
  }

  .work-step-card:hover {
    transform: translateY(-4px);
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .step-icon {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
  }

  .step-title {
    font-size: 1.1rem;
  }

  .step-description {
    font-size: 0.9rem;
  }

  .how-it-works-cta {
    margin-top: 40px;
    padding: 0.9rem 2.5rem;
    font-size: 0.95rem;
  }

  .how-it-works-pricing {
    margin-top: 24px;
  }

  .pricing-fee {
    font-size: 1rem;
  }

  .pricing-details {
    font-size: 1rem;
  }
}

@media (max-width: 414px) {
  .modal-overlay {
    padding: 0.25rem;
  }

  .modal-content {
    padding: 1.25rem 0.85rem;
  }

  .modal-title {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
  }

  .visit-card {
    padding: 1rem;
  }

  .visit-card-image {
    min-height: 100px;
  }

  .visit-card-image img {
    max-height: 100px;
  }

  .visit-card-title {
    font-size: 1rem;
  }

  .visit-card-price {
    font-size: 1.35rem;
  }

  .visit-card-description {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .visit-card-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
  }

  /* Footer legal links - 2 per row */
  .footer-legal-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    max-width: 100%;
  }

  .footer-legal-link {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.75rem;
  }

  .footer-separator {
    display: inline;
    flex: 0 0 auto;
    font-size: 0.75rem;
  }

  .footer-separator:nth-of-type(2) {
    display: none;
  }
}

@media (max-width: 375px) {
  .modal-content {
    padding: 1rem 0.75rem;
  }

  .modal-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .modal-cards {
    gap: 0.85rem;
  }

  .visit-card {
    padding: 0.85rem;
  }

  .visit-card-image {
    min-height: 90px;
    margin-bottom: 0.75rem;
  }

  .visit-card-image img {
    max-height: 90px;
  }

  .visit-card-title {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .visit-card-price {
    font-size: 1.25rem;
  }

  .visit-card-subtitle {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .visit-card-description {
    font-size: 0.75rem;
    margin-bottom: 0.85rem;
  }

  .visit-card-btn {
    padding: 0.7rem 1rem;
    font-size: 0.75rem;
  }

  /* Footer legal links - 2 per row */
  .footer-legal-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    max-width: 100%;
  }

  .footer-legal-link {
    flex: 0 0 auto;
  }

  .footer-separator {
    display: inline;
  }

  .footer-separator:nth-of-type(2) {
    display: none;
  }
}

@media (max-width: 320px) {
  .modal-overlay {
    padding: 0.15rem;
  }

  .modal-content {
    padding: 0.85rem 0.6rem;
  }

  .modal-close {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.25rem;
    width: 25px;
    height: 25px;
  }

  .modal-title {
    font-size: 1rem;
    margin-bottom: 0.85rem;
    padding-right: 1.5rem;
  }

  .modal-cards {
    gap: 0.75rem;
  }

  .visit-card {
    padding: 0.75rem;
  }

  .visit-card-image {
    min-height: 80px;
    margin-bottom: 0.6rem;
  }

  .visit-card-image img {
    max-height: 80px;
  }

  .visit-card-title {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }

  .visit-card-price {
    font-size: 1.15rem;
  }

  .visit-card-subtitle {
    font-size: 0.7rem;
    margin-bottom: 0.6rem;
  }

  .visit-card-description {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }

  .visit-card-btn {
    padding: 0.65rem 0.85rem;
    font-size: 0.7rem;
  }

  /* Footer legal links - 2 per row */
  .footer-legal-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    max-width: 100%;
  }

  .footer-legal-link {
    flex: 0 0 auto;
  }

  .footer-separator {
    display: inline;
  }

  .footer-separator:nth-of-type(2) {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.75rem 1rem;
  }

  .navbar-logo {
    height: 35px;
  }

  .hero {
    padding: 1.5rem 1rem;
  }

  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .hero-cta {
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
  }

  .cookie-banner {
    padding: 1.25rem;
  }

  .cookie-title {
    font-size: 1rem;
  }

  .cookie-text {
    font-size: 0.85rem;
  }

  /* How It Works Section - Mobile Medium */
  .how-it-works-section {
    padding: 50px 16px;
  }

  .how-it-works-heading {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }

  .how-it-works-grid {
    gap: 20px;
  }

  .work-step-card {
    padding: 28px 20px;
  }

  .step-number {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
    margin-bottom: 18px;
  }

  .step-icon {
    width: 180px;
    height: 180px;
    margin-bottom: 18px;
  }

  .step-title {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }

  .step-description {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .how-it-works-cta {
    margin-top: 35px;
    padding: 0.85rem 2.25rem;
    font-size: 0.9rem;
  }

  .how-it-works-pricing {
    margin-top: 22px;
  }

  .pricing-fee {
    font-size: 1rem;
  }

  .pricing-details {
    font-size: 1rem;
  }
}

@media (max-width: 375px) {
  /* How It Works Section - Mobile Small */
  .how-it-works-section {
    padding: 45px 14px;
  }

  .how-it-works-heading {
    font-size: 1.5rem;
    margin-bottom: 28px;
  }

  .how-it-works-grid {
    gap: 18px;
  }

  .work-step-card {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
    margin-bottom: 16px;
  }

  .step-icon {
    width: 160px;
    height: 160px;
    margin-bottom: 16px;
  }

  .step-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .step-description {
    font-size: 0.85rem;
  }

  .how-it-works-cta {
    margin-top: 32px;
    padding: 0.8rem 2rem;
    font-size: 0.875rem;
  }

  .how-it-works-pricing {
    margin-top: 20px;
  }

  .pricing-fee {
    font-size: 1rem;
  }

  .pricing-details {
    font-size: 1rem;
  }
}

@media (max-width: 320px) {
  /* How It Works Section - Mobile Tiny */
  .how-it-works-section {
    padding: 40px 12px;
  }

  .how-it-works-heading {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }

  .how-it-works-grid {
    gap: 16px;
  }

  .work-step-card {
    padding: 22px 16px;
    border-radius: 12px;
  }

  .step-number {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    margin-bottom: 14px;
  }

  .step-icon {
    width: 140px;
    height: 140px;
    margin-bottom: 14px;
  }

  .step-title {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .step-description {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .how-it-works-cta {
    margin-top: 28px;
    padding: 0.75rem 1.75rem;
    font-size: 0.85rem;
  }

  .how-it-works-pricing {
    margin-top: 18px;
  }

  .pricing-fee {
    font-size: 1rem;
  }

  .pricing-details {
    font-size: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .navbar {
    padding: 1rem 2.5rem;
  }

  .navbar-links {
    gap: 2rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .cookie-banner {
    width: 65%;
    max-width: 650px;
  }

  .cookie-buttons {
    gap: 0.5rem;
  }

  .cookie-btn {
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
  }

  /* Rori Section - Tablet */
  .rori-content {
    max-width: 100%;
  }

  /* Dr. Laura Purdy Section - Tablet */
  .dr-laura-section {
    padding: 80px 40px;
    overflow-x: hidden;
  }

  .dr-laura-container {
    max-width: 100%;
    gap: 60px;
  }

  .dr-laura-name {
    font-size: 2.5rem;
  }

  .dr-laura-title {
    font-size: 1.3rem;
  }

  .dr-laura-text {
    font-size: 1.05rem;
  }

  /* Festival Section - Tablet */
  .festival-section {
    padding: 60px 30px;
    overflow-x: hidden;
  }

  .festival-grid {
    gap: 30px;
    max-width: 100%;
  }

  .festival-image-wrapper {
    height: 100px;
  }

  .festival-card-dusk .festival-image-wrapper {
    width: 150px;
  }

  .festival-card-winter .festival-image-wrapper {
    width: 250px;
  }

  .festival-card-lolla .festival-image-wrapper {
    width: 200px;
  }

  /* Support Section - Tablet */
  .support-section {
    padding: 60px 30px;
    overflow-x: hidden;
  }

  .support-content {
    max-width: 100%;
  }

  .support-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .support-card {
    padding: 24px 18px;
  }

  /* Floating images - Tablet */
  .floating-image-1 {
    width: 130px;
    top: 15%;
    left: 2%;
  }

  .floating-image-2 {
    width: 70px;
    top: 12%;
    right: 3%;
  }

  .floating-image-3 {
    width: 60px;
    bottom: 28%;
    left: 5%;
  }

  .floating-image-4 {
    width: 55px;
    bottom: 8%;
  }

  .floating-image-5 {
    width: 50px;
    top: 50%;
    left: 3%;
  }

  /* How It Works Section - Tablet */
  .how-it-works-section {
    padding: 60px 30px;
    overflow-x: hidden;
  }

  .how-it-works-content {
    max-width: 100%;
  }

  .how-it-works-heading {
    font-size: 2rem;
    margin-bottom: 45px;
  }

  .how-it-works-grid {
    gap: 25px;
  }

  .work-step-card {
    padding: 28px 20px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }

  .step-icon {
    width: 220px;
    height: 220px;
  }

  .step-title {
    font-size: 1.15rem;
  }

  .step-description {
    font-size: 0.9rem;
  }

  .how-it-works-cta {
    margin-top: 45px;
    padding: 0.95rem 2.75rem;
    font-size: 0.95rem;
  }

  .how-it-works-pricing {
    margin-top: 26px;
  }

  .pricing-fee {
    font-size: 1rem;
  }

  .pricing-details {
    font-size: 1rem;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  /* How It Works Section - Tablet Landscape */
  .how-it-works-section {
    padding: 70px 50px;
  }

  .how-it-works-heading {
    font-size: 2.25rem;
    margin-bottom: 50px;
  }

  .how-it-works-grid {
    gap: 35px;
  }

  .work-step-card {
    padding: 35px 25px;
  }

  .step-icon {
    width: 270px;
    height: 270px;
  }
}

@media (min-width: 1441px) {
  .navbar {
    padding: 1.5rem 4rem;
  }

  .hero-tagline {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }
}

@media (min-width: 769px) {
  /* Support Section - Tablet and Desktop */
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }

  .support-card-large {
    grid-column: 1 / -1;
  }

  .support-card {
    height: 100%;
  }
}

@media (min-width: 1441px) and (max-width: 2559px) {
  /* Support Section - Large Desktop */
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .support-card {
    padding: 48px 40px;
  }

  .support-card-large {
    grid-column: 1 / -1;
  }

  /* How It Works Section - Large Desktop */
  .how-it-works-section {
    padding: 90px 60px;
  }

  .how-it-works-heading {
    font-size: 2.75rem;
    margin-bottom: 70px;
  }

  .how-it-works-grid {
    gap: 50px;
  }

  .step-title {
    font-size: 1.35rem;
  }

  .step-description {
    font-size: 1rem;
  }
}

@media (min-width: 2560px) {
  .navbar {
    padding: 2rem 6rem;
  }

  .navbar-logo {
    height: 70px;
  }

  .hero-tagline {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 5rem;
  }

  .hero-description {
    font-size: 1.5rem;
  }

  .hero-cta {
    padding: 1.25rem 3.5rem;
    font-size: 1.25rem;
  }

  /* How It Works Section - Ultra-wide */
  .how-it-works-section {
    padding: 100px 80px;
  }

  .how-it-works-heading {
    font-size: 3rem;
    margin-bottom: 80px;
  }

  .how-it-works-grid {
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .work-step-card {
    padding: 50px 40px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }

  .step-icon {
    width: 350px;
    height: 350px;
  }

  .step-title {
    font-size: 1.5rem;
  }

  .step-description {
    font-size: 1.1rem;
  }
}
.footer-top {
  text-align: center;
  margin-bottom: 40px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 1.125rem;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Footer Middle Section - Three Columns */
.footer-middle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.footer-column-text {
  font-size: 0.95rem;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.footer-link {
  color: #323232;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.footer-social-link {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-dark);
  transition: all 0.3s ease;
  position: relative;
}

.footer-social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 1.8px;
  background: linear-gradient(45deg, #D123FF 14.6%, #00D1FF 85.4%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.footer-social-link::after {
  content: '';
  position: absolute;
  inset: 1.8px;
  border-radius: 50%;
  background: linear-gradient(143.94deg, rgba(255, 255, 255, 0.56) 14.74%, rgba(196, 196, 196, 0) 134.34%);
  z-index: 0;
}

.footer-social-link:hover {
  color: var(--color-white);
  transform: translateY(-3px);
}

/* SVG icon styling - ready for insertion */
.footer-social-link svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  position: relative;
  z-index: 1;
}

/* Footer Disclaimer */
.footer-disclaimer {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

.footer-disclaimer-text {
  font-size: 0.875rem;
  font-weight: 400;
  color: #666;
  line-height: 1.7;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* Footer Bottom Section */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
  font-weight: 400;
  color: #666;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-legal-link {
  font-size: 1rem;
  font-weight: 400;
  color: #323232;
  text-decoration: underline;
  line-height: 100%;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: #D123FF;
}

.footer-separator {
  color: #ccc;
  font-size: 0.875rem;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 60px 20px 30px;
  }

  .footer-top {
    margin-bottom: 40px;
  }

  .footer-logo {
    height: 50px;
    margin-bottom: 16px;
  }

  .footer-tagline {
    font-size: 1rem;
  }

  .footer-middle {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-column {
    text-align: left;
  }

  .footer-column-title {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }

  .footer-column-text {
    font-size: 0.9rem;
  }

  .footer-social {
    gap: 20px;
    margin-bottom: 40px;
  }

  .footer-social-link {
    width: 70px;
    height: 70px;
  }

  .footer-social-link svg {
    width: 28px;
    height: 28px;
  }

  .footer-disclaimer {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .footer-disclaimer-text {
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }

  .footer-legal-links {
    justify-content: center;
    gap: 8px;
  }

  .footer-legal-link {
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0.01em;
  }

  .footer-separator {
    font-size: 0.8rem;
  }
}

/* Footer Legal Links - Specific Media Queries */
@media (max-width: 540px) {
  .footer-legal-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    max-width: 100%;
  }

  .footer-legal-link {
    white-space: nowrap;
    font-size: 0.75rem;
  }

  /* Force first row: Terms and Conditions | Privacy Policy */
  .footer-legal-link:nth-of-type(1) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(1) {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }

  .footer-legal-link:nth-of-type(2) {
    flex: 0 0 auto;
  }

  /* Force line break after Privacy Policy */
  .footer-separator:nth-of-type(2) {
    flex: 0 0 100%;
    height: 0;
    overflow: hidden;
    visibility: hidden;
  }

  /* Second row: FAQs | Accessibility Statement */
  .footer-legal-link:nth-of-type(3),
  .footer-legal-link:nth-of-type(4) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(3) {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }
}

@media (max-width: 430px) {
  .footer-legal-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    max-width: 100%;
  }

  .footer-legal-link {
    white-space: nowrap;
    font-size: 0.75rem;
  }

  .footer-legal-link:nth-of-type(1) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(1) {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }

  .footer-legal-link:nth-of-type(2) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(2) {
    flex: 0 0 100%;
    height: 0;
    overflow: hidden;
    visibility: hidden;
  }

  .footer-legal-link:nth-of-type(3),
  .footer-legal-link:nth-of-type(4) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(3) {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }
}

@media (max-width: 425px) {
  .footer-legal-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    max-width: 100%;
  }

  .footer-legal-link {
    white-space: nowrap;
    font-size: 0.75rem;
  }

  .footer-legal-link:nth-of-type(1) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(1) {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }

  .footer-legal-link:nth-of-type(2) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(2) {
    flex: 0 0 100%;
    height: 0;
    overflow: hidden;
    visibility: hidden;
  }

  .footer-legal-link:nth-of-type(3),
  .footer-legal-link:nth-of-type(4) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(3) {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }
}

@media (max-width: 414px) {
  .footer-legal-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    max-width: 100%;
  }

  .footer-legal-link {
    white-space: nowrap;
    font-size: 0.75rem;
  }

  .footer-legal-link:nth-of-type(1) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(1) {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }

  .footer-legal-link:nth-of-type(2) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(2) {
    flex: 0 0 100%;
    height: 0;
    overflow: hidden;
    visibility: hidden;
  }

  .footer-legal-link:nth-of-type(3),
  .footer-legal-link:nth-of-type(4) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(3) {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }
}

@media (max-width: 412px) {
  .footer-legal-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    max-width: 100%;
  }

  .footer-legal-link {
    white-space: nowrap;
    font-size: 0.75rem;
  }

  .footer-legal-link:nth-of-type(1) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(1) {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }

  .footer-legal-link:nth-of-type(2) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(2) {
    flex: 0 0 100%;
    height: 0;
    overflow: hidden;
    visibility: hidden;
  }

  .footer-legal-link:nth-of-type(3),
  .footer-legal-link:nth-of-type(4) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(3) {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }
}

@media (max-width: 390px) {
  .footer-legal-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    max-width: 100%;
  }

  .footer-legal-link {
    white-space: nowrap;
    font-size: 0.75rem;
  }

  .footer-legal-link:nth-of-type(1) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(1) {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }

  .footer-legal-link:nth-of-type(2) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(2) {
    flex: 0 0 100%;
    height: 0;
    overflow: hidden;
    visibility: hidden;
  }

  .footer-legal-link:nth-of-type(3),
  .footer-legal-link:nth-of-type(4) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(3) {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }
}

@media (max-width: 375px) {
  .footer-legal-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    max-width: 100%;
  }

  .footer-legal-link {
    white-space: nowrap;
    font-size: 0.75rem;
  }

  .footer-legal-link:nth-of-type(1) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(1) {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }

  .footer-legal-link:nth-of-type(2) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(2) {
    flex: 0 0 100%;
    height: 0;
    overflow: hidden;
    visibility: hidden;
  }

  .footer-legal-link:nth-of-type(3),
  .footer-legal-link:nth-of-type(4) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(3) {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .footer-legal-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    max-width: 100%;
  }

  .footer-legal-link {
    white-space: nowrap;
    font-size: 0.75rem;
  }

  .footer-legal-link:nth-of-type(1) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(1) {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }

  .footer-legal-link:nth-of-type(2) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(2) {
    flex: 0 0 100%;
    height: 0;
    overflow: hidden;
    visibility: hidden;
  }

  .footer-legal-link:nth-of-type(3),
  .footer-legal-link:nth-of-type(4) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(3) {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }
}

@media (max-width: 344px) {
  .footer-legal-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    max-width: 100%;
  }

  .footer-legal-link {
    white-space: nowrap;
    font-size: 0.75rem;
  }

  .footer-legal-link:nth-of-type(1) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(1) {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }

  .footer-legal-link:nth-of-type(2) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(2) {
    flex: 0 0 100%;
    height: 0;
    overflow: hidden;
    visibility: hidden;
  }

  .footer-legal-link:nth-of-type(3),
  .footer-legal-link:nth-of-type(4) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(3) {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }
}

@media (max-width: 320px) {
  .footer-legal-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    max-width: 100%;
  }

  .footer-legal-link {
    white-space: nowrap;
    font-size: 0.75rem;
  }

  .footer-legal-link:nth-of-type(1) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(1) {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }

  .footer-legal-link:nth-of-type(2) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(2) {
    flex: 0 0 100%;
    height: 0;
    overflow: hidden;
    visibility: hidden;
  }

  .footer-legal-link:nth-of-type(3),
  .footer-legal-link:nth-of-type(4) {
    flex: 0 0 auto;
  }

  .footer-separator:nth-of-type(3) {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 50px 16px 25px;
  }

  .footer-top {
    margin-bottom: 35px;
  }

  .footer-logo {
    height: 45px;
    margin-bottom: 14px;
  }

  .footer-tagline {
    font-size: 0.95rem;
  }

  .footer-middle {
    gap: 35px;
    margin-bottom: 35px;
  }

  .footer-column-title {
    font-size: 1rem;
  }

  .footer-column-text {
    font-size: 0.875rem;
  }

  .footer-social {
    gap: 16px;
    margin-bottom: 35px;
  }

  .footer-social-link {
    width: 60px;
    height: 60px;
  }

  .footer-social-link svg {
    width: 24px;
    height: 24px;
  }

  .footer-disclaimer {
    margin-bottom: 28px;
    padding-bottom: 28px;
  }

  .footer-disclaimer-text {
    font-size: 0.75rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .footer {
    padding: 80px 60px 35px;
  }

  .footer-middle {
    gap: 50px;
  }

  .footer-social {
    gap: 22px;
  }
}

@media (min-width: 1441px) {
  .footer {
    padding: 100px 120px 40px;
  }

  .footer-logo {
    height: 70px;
    margin-bottom: 24px;
  }

  .footer-tagline {
    font-size: 1.25rem;
  }

  .footer-middle {
    gap: 80px;
    margin-bottom: 60px;
  }

  .footer-column-title {
    font-size: 1.25rem;
  }

  .footer-column-text {
    font-size: 1rem;
  }

  .footer-social {
    gap: 28px;
    margin-bottom: 60px;
  }

  .footer-social-link {
    width: 90px;
    height: 90px;
  }

  .footer-social-link svg {
    width: 36px;
    height: 36px;
  }

  .footer-disclaimer {
    margin-bottom: 50px;
    padding-bottom: 50px;
  }

  .footer-disclaimer-text {
    font-size: 0.95rem;
  }

  .footer-copyright,
  .footer-legal-link {
    font-size: 0.95rem;
  }
}
