:root {
  --color-accent-1: #ff7b00;
  --color-accent-2: #ff9500;
  --color-accent-3: #cc6200;
  --color-bg-100: #fff5eb;
  --color-bg-200: #ffe0cc;
  --color-bg-300: #ffcc99;
  --color-bg-dark: #1e293b;
  --color-text-dark: #333;
  --color-text-light: #ffffff;
  --color-text-gray: #666;
  --color-brilliant: #fff5eb;
  --color-platinum: #e5e7eb;
  --color-success: #4caf50;
  --color-warning: #ff9500;
  --color-error: #f44336;
  --color-info: #ff7b00;
  --color-border-light: rgba(255, 123, 0, 0.2);
  --color-border-dark: rgba(255, 123, 0, 0.3);
  --shadow-sm: 0 1px 3px rgba(255, 123, 0, 0.2);
  --shadow-md: 0 4px 8px rgba(255, 123, 0, 0.25);
  --shadow-lg: 0 10px 20px rgba(255, 123, 0, 0.3);
  --shadow-jewelry: 0 20px 40px rgba(255, 123, 0, 0.35);
}

  

        .hero-content {
            max-width: 900px;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .hero h1 {
            font-size: 4rem;
            margin: 0;
            font-weight: bold;
            color: var(--color-text-light);
        }

        .hero p {
            font-size: 1.5rem;
            margin-top: 1rem;
            color: var(--color-text-light);
            font-weight: 400;
        }

        .play-button {
            margin-top: 2rem;
            padding: 15px 30px;
            background-color: var(--color-accent-1);
            color: var(--color-text-light);
            font-size: 1.2rem;
            font-weight: bold;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .play-button:hover {
            background-color: var(--color-accent-2);
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 3rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .play-button {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }
        }
[data-astro-cid-sckkx6r4] {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #fff5eb 0%, #ffe0cc 100%);
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 123, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 149, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 90%, rgba(204, 98, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

main[data-astro-cid-sckkx6r4] {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  width: 100%;
}

@media (max-width: 768px) {
  main[data-astro-cid-sckkx6r4] {
    padding: 1rem;
  }
}

.header[data-astro-cid-3ef6ksr2] {
  background: linear-gradient(135deg, #1e293bf2 0%, #334155f2 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 123, 0, 0.3);
  box-shadow: 0 20px 40px rgba(255, 123, 0, 0.35);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header[data-astro-cid-3ef6ksr2]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff7b00, #ff9500, transparent);
}

.header-container[data-astro-cid-3ef6ksr2] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-brand[data-astro-cid-3ef6ksr2] {
  flex-shrink: 0;
}

.brand-link[data-astro-cid-3ef6ksr2] {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}

.brand-text[data-astro-cid-3ef6ksr2] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.brand-name[data-astro-cid-3ef6ksr2] {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ff9500, #ff7b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.brand-sub[data-astro-cid-3ef6ksr2] {
  font-size: 0.75rem;
  font-weight: 600;
  color: #ff9500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: -2px;
}

.desktop-nav[data-astro-cid-3ef6ksr2] {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-item[data-astro-cid-3ef6ksr2] {
  position: relative;
}

.nav-link[data-astro-cid-3ef6ksr2] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  color: #f0f6fc;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 6px;
}

.nav-link[data-astro-cid-3ef6ksr2]:hover {
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 123, 0, 0.2), rgba(255, 149, 0, 0.2));
}

.nav-link[data-astro-cid-3ef6ksr2] i[data-astro-cid-3ef6ksr2] {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.dropdown-toggle[data-astro-cid-3ef6ksr2][aria-expanded=true] i[data-astro-cid-3ef6ksr2] {
  transform: rotate(180deg);
}

.dropdown-menu[data-astro-cid-3ef6ksr2] {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  max-width: 320px;
  background: linear-gradient(135deg, #fff, #fff5eb);
  border: 1px solid rgba(255, 123, 0, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(255, 123, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  max-height: 400px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-item[data-astro-cid-3ef6ksr2]:last-child .dropdown-menu[data-astro-cid-3ef6ksr2] {
  left: auto;
  right: 0;
}

@media (max-width: 1200px) {
  .dropdown-menu[data-astro-cid-3ef6ksr2] {
    min-width: 260px;
    max-width: 280px;
  }
}

.dropdown-menu[data-astro-cid-3ef6ksr2].show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header[data-astro-cid-3ef6ksr2] {
  padding: 0.75rem 1rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #333;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 123, 0, 0.15);
}

.dropdown-subheader[data-astro-cid-3ef6ksr2] {
  padding: 0.5rem 1rem 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ff7b00;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dropdown-divider[data-astro-cid-3ef6ksr2] {
  height: 1px;
  background-color: rgba(255, 123, 0, 0.15);
  margin: 0.5rem 0;
}

.dropdown-item[data-astro-cid-3ef6ksr2] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.dropdown-item[data-astro-cid-3ef6ksr2]:hover {
  background: linear-gradient(135deg, rgba(255, 123, 0, 0.1), rgba(255, 149, 0, 0.1));
}

.dropdown-icon[data-astro-cid-3ef6ksr2] {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
  padding: 2px;
}

.dropdown-content[data-astro-cid-3ef6ksr2] {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.dropdown-title[data-astro-cid-3ef6ksr2] {
  font-weight: 500;
  font-size: 0.875rem;
}

.dropdown-subtitle[data-astro-cid-3ef6ksr2] {
  font-size: 0.75rem;
  color: #ff9500;
  font-weight: 600;
}

.payment-methods[data-astro-cid-3ef6ksr2] .dropdown-menu[data-astro-cid-3ef6ksr2] {
  min-width: 320px;
}

@media (max-width: 1200px) {
  .payment-methods[data-astro-cid-3ef6ksr2] .dropdown-menu[data-astro-cid-3ef6ksr2] {
    min-width: 280px;
  }
}

.payment-grid[data-astro-cid-3ef6ksr2] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
  padding: 0.5rem;
}

.payment-item[data-astro-cid-3ef6ksr2] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.8rem;
  transition: background-color 0.2s ease;
}

.payment-item[data-astro-cid-3ef6ksr2]:hover {
  background: linear-gradient(135deg, rgba(255, 123, 0, 0.1), rgba(255, 149, 0, 0.1));
}

.payment-item[data-astro-cid-3ef6ksr2] i[data-astro-cid-3ef6ksr2] {
  font-size: 1rem;
  color: #ff7b00;
}

.mobile-menu-toggle[data-astro-cid-3ef6ksr2] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: #f0f6fc;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.mobile-menu-toggle[data-astro-cid-3ef6ksr2]:hover {
  background: linear-gradient(135deg, rgba(255, 123, 0, 0.2), rgba(255, 149, 0, 0.2));
}

.mobile-nav[data-astro-cid-3ef6ksr2] {
  display: none;
  position: fixed;
  inset: 64px 0 0;
  background: linear-gradient(135deg, #fff5eb, #fff);
  z-index: 999;
  flex-direction: column;
}

.mobile-nav[data-astro-cid-3ef6ksr2]:before {
  content: "";
  position: fixed;
  inset: -64px 0 0;
  background: #1e293bcc;
  backdrop-filter: blur(8px);
  z-index: -1;
}

.mobile-nav[data-astro-cid-3ef6ksr2].show {
  display: flex;
}

.mobile-nav-header[data-astro-cid-3ef6ksr2] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #fff, #fff5eb);
  border-bottom: 2px solid rgba(255, 123, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.mobile-nav-title[data-astro-cid-3ef6ksr2] {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ff7b00;
}

.mobile-nav-close[data-astro-cid-3ef6ksr2] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: #333;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.mobile-nav-close[data-astro-cid-3ef6ksr2]:hover {
  background: linear-gradient(135deg, rgba(255, 123, 0, 0.1), rgba(255, 149, 0, 0.1));
}

.mobile-nav-content[data-astro-cid-3ef6ksr2] {
  width: 100%;
  padding: 0;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-section[data-astro-cid-3ef6ksr2] {
  border-bottom: 1px solid rgba(255, 123, 0, 0.15);
}

.mobile-section[data-astro-cid-3ef6ksr2]:last-child {
  border-bottom: none;
}

.mobile-section-toggle[data-astro-cid-3ef6ksr2] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1rem;
  background: none;
  border: none;
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
}

.mobile-section-toggle[data-astro-cid-3ef6ksr2]:hover {
  background: linear-gradient(135deg, rgba(255, 123, 0, 0.05), rgba(255, 149, 0, 0.05));
}

.mobile-section-toggle[data-astro-cid-3ef6ksr2] i[data-astro-cid-3ef6ksr2] {
  font-size: 1.2rem;
  color: #ff7b00;
  transition: transform 0.3s ease;
}

.mobile-section[data-astro-cid-3ef6ksr2].active .mobile-section-toggle[data-astro-cid-3ef6ksr2] i[data-astro-cid-3ef6ksr2] {
  transform: rotate(90deg);
}

.mobile-section-content[data-astro-cid-3ef6ksr2] {
  display: none;
  padding: 0;
  background: linear-gradient(135deg, #fff5eb, #ffe0cc);
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-section[data-astro-cid-3ef6ksr2].active .mobile-section-content[data-astro-cid-3ef6ksr2] {
  display: block;
  max-height: 500px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {
  .mobile-section-toggle[data-astro-cid-3ef6ksr2] {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    min-height: 56px;
  }
  
  .mobile-item[data-astro-cid-3ef6ksr2] {
    padding: 1rem 2rem;
    min-height: 48px;
    font-size: 0.9rem;
  }
  
  .mobile-nav-header[data-astro-cid-3ef6ksr2] {
    padding: 1.25rem 1.5rem;
    min-height: 64px;
  }
  
  .mobile-nav-close[data-astro-cid-3ef6ksr2],
  .mobile-menu-toggle[data-astro-cid-3ef6ksr2] {
    min-width: 44px;
    min-height: 44px;
  }
}

.mobile-item[data-astro-cid-3ef6ksr2] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 123, 0, 0.15);
  font-size: 0.95rem;
  transition: background-color 0.2s ease;
}

.mobile-item[data-astro-cid-3ef6ksr2]:hover {
  background: linear-gradient(135deg, rgba(255, 123, 0, 0.05), rgba(255, 149, 0, 0.05));
}

.mobile-item[data-astro-cid-3ef6ksr2]:last-child {
  border-bottom: none;
}

.mobile-item[data-astro-cid-3ef6ksr2].view-all {
  color: #ff7b00;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(255, 123, 0, 0.05), rgba(255, 149, 0, 0.05));
}

.mobile-icon[data-astro-cid-3ef6ksr2] {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

.mobile-item[data-astro-cid-3ef6ksr2] i[data-astro-cid-3ef6ksr2] {
  font-size: 1.2rem;
  color: #ff7b00;
  flex-shrink: 0;
}

.mobile-item-content[data-astro-cid-3ef6ksr2] {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.mobile-item-title[data-astro-cid-3ef6ksr2] {
  font-weight: 500;
  font-size: 0.95rem;
}

.mobile-item-subtitle[data-astro-cid-3ef6ksr2] {
  font-size: 0.8rem;
  color: #ff9500;
  font-weight: 600;
}

.mobile-divider[data-astro-cid-3ef6ksr2] {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #ffe0cc, #ffcc99);
  border-bottom: 1px solid rgba(255, 123, 0, 0.15);
}

.mobile-divider[data-astro-cid-3ef6ksr2] span[data-astro-cid-3ef6ksr2] {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff7b00;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .desktop-nav[data-astro-cid-3ef6ksr2] {
    display: flex;
  }
  
  .mobile-menu-toggle[data-astro-cid-3ef6ksr2] {
    display: none;
  }
  
  .nav-link[data-astro-cid-3ef6ksr2] {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
  
  .dropdown-menu[data-astro-cid-3ef6ksr2] {
    max-width: min(320px, calc(100vw - 2rem));
  }
  
  @media (max-width: 1023px) {
    .nav-item[data-astro-cid-3ef6ksr2]:nth-last-child(-n+2) .dropdown-menu[data-astro-cid-3ef6ksr2] {
      left: auto;
      right: 0;
    }
  }
}

@media (min-width: 1024px) {
  .nav-link[data-astro-cid-3ef6ksr2] {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .desktop-nav[data-astro-cid-3ef6ksr2] {
    gap: 2.5rem;
  }
}

.footer[data-astro-cid-sz7xmlte] {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-top: 1px solid rgba(255, 123, 0, 0.3);
  margin-top: auto;
  color: #e5e7eb;
  position: relative;
}

.footer[data-astro-cid-sz7xmlte]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff7b00, #ff9500, transparent);
}

.footer-container[data-astro-cid-sz7xmlte] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-main[data-astro-cid-sz7xmlte] {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0 2rem;
  border-bottom: 1px solid rgba(255, 123, 0, 0.2);
}

.footer-section[data-astro-cid-sz7xmlte] h3[data-astro-cid-sz7xmlte] {
  color: #f0f6fc;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.company-info[data-astro-cid-sz7xmlte] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand-text[data-astro-cid-sz7xmlte] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.footer-brand-name[data-astro-cid-sz7xmlte] {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ff9500, #ff7b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.footer-brand-sub[data-astro-cid-sz7xmlte] {
  font-size: 0.65rem;
  font-weight: 600;
  color: #ff9500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: -2px;
}

.company-description[data-astro-cid-sz7xmlte] {
  color: #8b949e;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  max-width: 280px;
}

.footer-nav[data-astro-cid-sz7xmlte] {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav[data-astro-cid-sz7xmlte] li[data-astro-cid-sz7xmlte] {
  margin-bottom: 0.5rem;
}

.footer-nav[data-astro-cid-sz7xmlte] a[data-astro-cid-sz7xmlte] {
  color: #8b949e;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  display: block;
  padding: 0.25rem 0;
}

.footer-nav[data-astro-cid-sz7xmlte] a[data-astro-cid-sz7xmlte]:hover {
  color: #ff7b00;
}

.footer-bottom[data-astro-cid-sz7xmlte] {
  padding: 1.5rem 0;
}

.footer-bottom-content[data-astro-cid-sz7xmlte] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-bottom-left[data-astro-cid-sz7xmlte] {
  flex: 1;
}

.copyright[data-astro-cid-sz7xmlte] {
  color: #f0f6fc;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.regulatory[data-astro-cid-sz7xmlte] {
  color: #8b949e;
  font-size: 0.75rem;
  margin: 0;
  opacity: 0.9;
  line-height: 1.4;
  max-width: 500px;
}

.footer-bottom-right[data-astro-cid-sz7xmlte] {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.age-badge[data-astro-cid-sz7xmlte] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ff9500, #ff7b00);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 8px rgba(255, 123, 0, 0.3);
}

.age-badge[data-astro-cid-sz7xmlte] i[data-astro-cid-sz7xmlte] {
  font-size: 1rem;
}

.responsible-links[data-astro-cid-sz7xmlte] {
  display: flex;
  gap: 0.5rem;
}

.responsible-links[data-astro-cid-sz7xmlte] a[data-astro-cid-sz7xmlte] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #21262d;
  color: #8b949e;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.responsible-links[data-astro-cid-sz7xmlte] a[data-astro-cid-sz7xmlte]:hover {
  background: linear-gradient(135deg, #ff9500, #ff7b00);
  color: #fff;
  box-shadow: 0 4px 8px rgba(255, 123, 0, 0.3);
}

.responsible-links[data-astro-cid-sz7xmlte] i[data-astro-cid-sz7xmlte] {
  font-size: 1rem;
}

.warning[data-astro-cid-sz7xmlte] {
  color: #f85149;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .footer-main[data-astro-cid-sz7xmlte] {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0 1.5rem;
    text-align: center;
  }
  
  .company-info[data-astro-cid-sz7xmlte] {
    order: 1;
    align-items: center;
  }
  
  .company-description[data-astro-cid-sz7xmlte] {
    text-align: center;
    max-width: none;
  }
  
  .social-links[data-astro-cid-sz7xmlte] {
    justify-content: center;
  }
  
  .footer-bottom-content[data-astro-cid-sz7xmlte] {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-bottom-right[data-astro-cid-sz7xmlte] {
    flex-direction: column;
    gap: 1rem;
  }
  
  .warning[data-astro-cid-sz7xmlte] {
    white-space: normal;
    text-align: center;
  }
  
  .regulatory[data-astro-cid-sz7xmlte] {
    text-align: center;
    max-width: none;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .footer-main[data-astro-cid-sz7xmlte] {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
  
  .company-info[data-astro-cid-sz7xmlte] {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .company-description[data-astro-cid-sz7xmlte] {
    text-align: center;
    max-width: 400px;
  }
  
  .social-links[data-astro-cid-sz7xmlte] {
    justify-content: center;
  }
  
  .footer-bottom-content[data-astro-cid-sz7xmlte] {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-bottom-right[data-astro-cid-sz7xmlte] {
    flex-direction: row;
    justify-content: center;
  }
  
  .regulatory[data-astro-cid-sz7xmlte] {
    text-align: center;
    max-width: none;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .footer-main[data-astro-cid-sz7xmlte] {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1.5rem;
  }
}