@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  body {
    @apply bg-[#101823] text-white;
    font-family: 'Inter', 'Noto Sans', sans-serif;
  }
}

.Header_header__HXQOm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 2rem;
  min-height: 100px;
  /* Prevent header shrinking */
  display: flex;
  align-items: center;
}

.Header_nav__J8WFt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.Header_ctaContainer__c0RFP {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 180px;
}

.Header_mobileCtaWrapper__zPr8V {
  display: none;
}

/* ... existing styles ... */

.Header_logoImage__OY9g1 {
  height: 80px !important;
  width: auto;
  object-fit: contain;
  padding: 4px 0;
  transition: none !important;
  /* Disable transition to prevent animation */
}

.Header_logo__UsziS:hover .Header_logoImage__OY9g1 {
  transform: none !important;
  /* Disable hover scale if it contributes to issues */
}

/* Mobile Menu Button */
.Header_mobileMenuButton__QlntG {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
  position: relative;
}

.Header_hamburger__0Oz-R {
  width: 30px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.Header_hamburger__0Oz-R span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.Header_hamburgerOpen__AjA0W span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.Header_hamburgerOpen__AjA0W span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Navigation Links */
.Header_navLinks__1hQOi {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.Header_navLink__jN4KB {
  color: #a0aec0;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.Header_navLink__jN4KB:hover,
.Header_activeLink__EDH3b {
  color: #00d4ff;
}

.Header_activeLink__EDH3b::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Dropdown Menu */
.Header_navItemWithSubmenu__SfwIy {
  position: relative;
}

.Header_menuArrow__BJs4u {
  font-size: 0.8rem;
  margin-left: 0.2rem;
}

.Header_servicesSubmenu__KyCWb {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  padding: 1rem;
  width: 250px;
  min-width: max-content;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.Header_servicesSubmenu__KyCWb.Header_active__rHuVo {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ===== Mobile Overlay Menu ===== 
   Rendered OUTSIDE <header> to avoid backdrop-filter 
   creating a containing block that clips position:fixed */
.Header_mobileOverlay__puF65 {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(10, 10, 10, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: Header_fadeIn__g8dcH 0.3s ease forwards;
}

@keyframes Header_fadeIn__g8dcH {
  from { opacity: 0; }
  to { opacity: 1; }
}

.Header_mobileOverlayContent__PxnBO {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
  position: relative;
}

.Header_closeButton__KlIMa {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  z-index: 10;
  transition: color 0.2s ease;
}

.Header_closeButton__KlIMa:hover {
  color: #00d4ff;
}

.Header_mobileNav__2MJ\+H {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.Header_mobileNavLink__aQ7sq {
  color: #e2e8f0;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
}

.Header_mobileNavLink__aQ7sq:hover {
  color: #00d4ff;
}

.Header_mobileNavLink__aQ7sq.Header_activeLink__EDH3b {
  color: #00d4ff;
}

.Header_mobileNavLink__aQ7sq.Header_activeLink__EDH3b::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.Header_mobileNavGroup__wsnJd {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.Header_mobileNavToggle__nyXMT {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
}

.Header_mobileNavArrow__iaRkU {
  font-size: 0.7em;
  transition: transform 0.3s ease;
}

.Header_mobileNavArrowOpen__rsd8K {
  transform: rotate(180deg);
}

.Header_mobileServiceWrapper__sy0-D {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  width: 100%;
  max-width: 300px;
  margin-top: 0;
}

.Header_mobileServiceWrapper__sy0-D.Header_open__coLd6 {
  max-height: 600px; /* high enough to fit submenu */
  opacity: 1;
  margin-top: 1rem;
}

.Header_mobileOverlayCta__9a8z8 {
  margin-top: 1rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .Header_header__HXQOm {
    min-height: 70px;
    padding: 0.25rem 1rem;
  }

  .Header_logoImage__OY9g1 {
    height: 50px !important;
  }

  .Header_ctaContainer__c0RFP {
    display: none;
  }

  .Header_mobileMenuButton__QlntG {
    display: block;
  }

  /* Hide the in-header navLinks on mobile entirely */
  .Header_navLinks__1hQOi {
    display: none;
  }
}
.ServiceMenu_serviceMenu__wGyz2 {
  display: flex;
  flex-direction: column;
  background-color: #1a2435;
  border-radius: 8px;
  position: relative;
  min-width: 280px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.ServiceMenu_option__2Nuz\+:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.ServiceMenu_option__2Nuz\+:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.ServiceMenu_serviceMenu__wGyz2.ServiceMenu_navItem__2So8d {
  background-color: #1a2435;
  border: 2px solid rgba(0, 102, 255, 0.2);
}

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

.ServiceMenu_option__2Nuz\+ {
  position: relative;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #ffffff;
}

.ServiceMenu_option__2Nuz\+:hover, .ServiceMenu_option__2Nuz\+.ServiceMenu_active__cflz5 {
  background-color: #1e2c42;
}

.ServiceMenu_optionText__TbBdO {
  display: block;
  font-weight: 500;
  padding: 0.5rem 0;
}

.ServiceMenu_optionLink__v-klb {
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  padding: 0.5rem 0;
}

.ServiceMenu_subServicesContainer__FdPfa {
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #1a2435;
  border-radius: 8px;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.ServiceMenu_subServicesContainer__FdPfa.ServiceMenu_visible__D1tHc {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.ServiceMenu_subServiceLink__BN1XB {
  display: block;
  text-decoration: none;
  color: #ffffff;
  padding: 0.75rem 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.ServiceMenu_subServiceLink__BN1XB:hover {
  background-color: #1e2c42;
  color: #0066ff;
}

/* Para dispositivos móviles */
@media (max-width: 768px) {
  .ServiceMenu_serviceMenu__wGyz2 {
    width: 100%;
  }
  
  .ServiceMenu_subServicesContainer__FdPfa {
    position: relative;
    left: 0;
    padding-left: 1.5rem;
    box-shadow: none;
    transform: none;
  }
  
  .ServiceMenu_optionText__TbBdO {
    display: flex;
    justify-content: space-between;
  }
  
  .ServiceMenu_optionText__TbBdO::after {
    content: "⌵";
    transition: transform 0.2s ease;
  }
  
  .ServiceMenu_option__2Nuz\+.ServiceMenu_active__cflz5 .ServiceMenu_optionText__TbBdO::after {
    transform: rotate(180deg);
  }
}

.CyberButton_cyberButton__RUlpr {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.CyberButton_cyberButton__RUlpr:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Content */
.CyberButton_content__jbENI {
    position: relative;
    z-index: 2;
}

/* Shimmer effect */
.CyberButton_shimmer__D98sQ {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.CyberButton_cyberButton__RUlpr:hover .CyberButton_shimmer__D98sQ {
    left: 100%;
}

/* Variantes */
.CyberButton_primary__8Dgce {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-color: #00d4ff;
    color: #0a0e1a;
}

.CyberButton_primary__8Dgce:hover:not(:disabled) {
    background: linear-gradient(135deg, #00e5ff 0%, #00aadd 100%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5),
        0 0 40px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.CyberButton_secondary__A\+30c {
    background: rgba(168, 85, 247, 0.1);
    border-color: #a855f7;
    color: #a855f7;
}

.CyberButton_secondary__A\+30c:hover:not(:disabled) {
    background: rgba(168, 85, 247, 0.2);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
}

.CyberButton_premium__l1puC {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-color: #fbbf24;
    color: #0a0e1a;
}

.CyberButton_premium__l1puC:hover:not(:disabled) {
    background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5),
        0 0 40px rgba(251, 191, 36, 0.3);
    transform: translateY(-2px);
}

/* Tamaños */
.CyberButton_sm__ayxTK {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.CyberButton_md__XMbq6 {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.CyberButton_lg__UtT64 {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Active state */
.CyberButton_cyberButton__RUlpr:active:not(:disabled) {
    transform: translateY(0);
}
.Footer_footer__kXlYa {
  background-color: #0a0a0a;
  color: #a0aec0;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.Footer_footerContent__GLsTv {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.Footer_socialLinks__8J74g {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.Footer_socialLink__p-nyn {
  color: #a0aec0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Footer_socialLink__p-nyn:hover {
  color: #1877F2;
  /* Facebook Blue */
  transform: translateY(-2px);
  filter: drop-shadow(0 0 8px rgba(24, 119, 242, 0.5));
}

.Footer_footerLinks__3aiFY {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.Footer_footerLink__zoJJ6 {
  color: #718096;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.Footer_footerLink__zoJJ6:hover {
  color: #00d4ff;
}

.Footer_copyright__JQMtz {
  color: #4a5568;
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 768px) {
  .Footer_footerLinks__3aiFY {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
}
/* Cookie Banner Styles - RGPD Compliant */

.CookieBanner_backdrop__ZdmHP {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

.CookieBanner_cookieBanner__Bd5FR {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  max-height: 80vh;
  overflow-y: auto;
}

.CookieBanner_container__WQ8wJ {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* Simple View Styles */
.CookieBanner_simpleView__UFfhW {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.CookieBanner_content__ytc7O {
  flex: 1;
  min-width: 300px;
}

.CookieBanner_title__gzNQP {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a365d;
}

.CookieBanner_description__7Jy03 {
  margin: 0 0 0.75rem 0;
  color: #4a5568;
  line-height: 1.5;
  font-size: 0.95rem;
}

.CookieBanner_links__eeRSw {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.CookieBanner_linkButton__pwRH6 {
  background: none;
  border: none;
  color: #2563eb;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
}

.CookieBanner_linkButton__pwRH6:hover {
  color: #1d4ed8;
}

.CookieBanner_link__rWSvA {
  color: #2563eb;
  text-decoration: underline;
  font-size: 0.9rem;
}

.CookieBanner_link__rWSvA:hover {
  color: #1d4ed8;
}

.CookieBanner_actions__v24PM {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Button Styles */
.CookieBanner_buttonPrimary__y\+Bk4 {
  background-color: #1a365d;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.CookieBanner_buttonPrimary__y\+Bk4:hover {
  background-color: #2c5282;
}

.CookieBanner_buttonSecondary__netxE {
  background-color: transparent;
  color: #4a5568;
  border: 1px solid #d1d5db;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.CookieBanner_buttonSecondary__netxE:hover {
  background-color: #f7fafc;
  border-color: #a0aec0;
}

.CookieBanner_buttonTertiary__FMgPY {
  background-color: #3182ce;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.CookieBanner_buttonTertiary__FMgPY:hover {
  background-color: #2c5282;
}

/* Detailed View Styles */
.CookieBanner_detailedView__ITa4A {
  max-width: 800px;
  margin: 0 auto;
}

.CookieBanner_header__cTiCJ {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.CookieBanner_closeButton__dUspS {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b7280;
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: background-color 0.2s;
}

.CookieBanner_closeButton__dUspS:hover {
  background-color: #f3f4f6;
  color: #374151;
}

.CookieBanner_cookieCategories__a3dwC {
  margin-bottom: 2rem;
}

.CookieBanner_category__SH8Da {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background-color: #f9fafb;
}

.CookieBanner_categoryHeader__suLBh {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.CookieBanner_categoryHeader__suLBh h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a365d;
}

.CookieBanner_categoryDescription__xZhjV {
  margin: 0;
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.4;
}

.CookieBanner_cookieList__3DYRh {
  margin: 0;
  padding-left: 1rem;
  color: #4a5568;
  font-size: 0.85rem;
}

.CookieBanner_cookieList__3DYRh li {
  margin-bottom: 0.25rem;
  list-style: none;
}

/* Toggle Switch Styles */
.CookieBanner_toggle__OJ6mc {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.CookieBanner_toggle__OJ6mc input {
  opacity: 0;
  width: 0;
  height: 0;
}

.CookieBanner_slider__6Nb5q {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e0;
  transition: 0.3s;
  border-radius: 24px;
}

.CookieBanner_slider__6Nb5q:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.CookieBanner_toggle__OJ6mc input:checked + .CookieBanner_slider__6Nb5q {
  background-color: #1a365d;
}

.CookieBanner_toggle__OJ6mc input:checked + .CookieBanner_slider__6Nb5q:before {
  transform: translateX(26px);
}

.CookieBanner_toggle__OJ6mc input:disabled + .CookieBanner_slider__6Nb5q {
  background-color: #e2e8f0;
  cursor: not-allowed;
}

.CookieBanner_toggle__OJ6mc input:disabled + .CookieBanner_slider__6Nb5q:before {
  background-color: #a0aec0;
}

.CookieBanner_detailedActions__dVSrt {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

/* Responsive Design */
@media (max-width: 768px) {
  .CookieBanner_container__WQ8wJ {
    padding: 1rem;
  }
  
  .CookieBanner_simpleView__UFfhW {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .CookieBanner_actions__v24PM {
    justify-content: stretch;
  }
  
  .CookieBanner_actions__v24PM button {
    flex: 1;
  }
  
  .CookieBanner_categoryHeader__suLBh {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .CookieBanner_detailedActions__dVSrt {
    flex-direction: column;
  }
  
  .CookieBanner_detailedActions__dVSrt button {
    width: 100%;
  }
  
  .CookieBanner_cookieBanner__Bd5FR {
    max-height: 90vh;
  }
}

@media (max-width: 480px) {
  .CookieBanner_container__WQ8wJ {
    padding: 0.75rem;
  }
  
  .CookieBanner_title__gzNQP {
    font-size: 1.1rem;
  }
  
  .CookieBanner_description__7Jy03 {
    font-size: 0.9rem;
  }
  
  .CookieBanner_links__eeRSw {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}


/* Skip links - hidden by default, visible on focus */
.AccessibilityToolbar_skipLinks__afIde {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.AccessibilityToolbar_skipLink__7dmvB {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  background: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border: none;
  border-radius: 0 0 4px 4px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

.AccessibilityToolbar_skipLink__7dmvB:focus {
  position: static;
  width: auto;
  height: auto;
  left: 0;
  top: 0;
  padding: 0.5rem 1rem;
  z-index: 1001;
}

/* Main toolbar */
.AccessibilityToolbar_toolbar__p3myx {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
  background: #fff;
  border: 2px solid #0066cc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.AccessibilityToolbar_toggleButton__Z0AHC {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #0066cc;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
  min-width: 140px;
}

.AccessibilityToolbar_toggleButton__Z0AHC:hover {
  background: #0052a3;
  transform: translateY(-1px);
}

.AccessibilityToolbar_toggleButton__Z0AHC:focus {
  outline: 3px solid #ffd700;
  outline-offset: 2px;
}

.AccessibilityToolbar_toggleButton__Z0AHC.AccessibilityToolbar_expanded__bs1i5 {
  border-radius: 6px 6px 0 0;
}

.AccessibilityToolbar_icon__-1iwC {
  font-size: 1.2rem;
  line-height: 1;
}

.AccessibilityToolbar_label__yaC5y {
  white-space: nowrap;
}

/* Controls panel */
.AccessibilityToolbar_controls__BZB8G {
  background: #fff;
  border-top: 1px solid #e0e0e0;
  border-radius: 0 0 6px 6px;
  padding: 1rem;
  min-width: 280px;
  max-width: 320px;
}

.AccessibilityToolbar_controlGroup__h0Byh {
  margin-bottom: 1rem;
}

.AccessibilityToolbar_controlGroup__h0Byh:last-child {
  margin-bottom: 0;
}

.AccessibilityToolbar_groupTitle__W-1EF {
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.AccessibilityToolbar_controlButton__rRg2m {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.25rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  color: #333;
  transition: all 0.2s ease;
  text-align: left;
}

.AccessibilityToolbar_controlButton__rRg2m:hover {
  background: #e9ecef;
  border-color: #0066cc;
}

.AccessibilityToolbar_controlButton__rRg2m:focus {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
  background: #e9ecef;
}

.AccessibilityToolbar_controlButton__rRg2m.AccessibilityToolbar_active__egKWo {
  background: #0066cc;
  color: #fff;
  border-color: #0066cc;
}

.AccessibilityToolbar_controlButton__rRg2m.AccessibilityToolbar_active__egKWo:hover {
  background: #0052a3;
}

.AccessibilityToolbar_controlIcon__OovPd {
  font-size: 1rem;
  line-height: 1;
  min-width: 1rem;
}

/* Info section */
.AccessibilityToolbar_info__bXEIF {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.AccessibilityToolbar_infoText__QzKAp {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.4;
  margin: 0 0 0.5rem 0;
}

.AccessibilityToolbar_contact__XYR\+V {
  font-size: 0.75rem;
  color: #666;
  margin: 0;
}

.AccessibilityToolbar_contact__XYR\+V a {
  color: #0066cc;
  text-decoration: underline;
}

.AccessibilityToolbar_contact__XYR\+V a:hover {
  color: #0052a3;
}

/* High contrast mode */
.high-contrast .AccessibilityToolbar_toolbar__p3myx {
  background: #000;
  border-color: #fff;
  color: #fff;
}

.high-contrast .AccessibilityToolbar_toggleButton__Z0AHC {
  background: #fff;
  color: #000;
}

.high-contrast .AccessibilityToolbar_toggleButton__Z0AHC:hover {
  background: #f0f0f0;
}

.high-contrast .AccessibilityToolbar_controls__BZB8G {
  background: #000;
  color: #fff;
  border-color: #fff;
}

.high-contrast .AccessibilityToolbar_controlButton__rRg2m {
  background: #333;
  color: #fff;
  border-color: #666;
}

.high-contrast .AccessibilityToolbar_controlButton__rRg2m:hover {
  background: #555;
  border-color: #fff;
}

.high-contrast .AccessibilityToolbar_controlButton__rRg2m.AccessibilityToolbar_active__egKWo {
  background: #fff;
  color: #000;
}

.high-contrast .AccessibilityToolbar_groupTitle__W-1EF {
  color: #fff;
}

.high-contrast .AccessibilityToolbar_infoText__QzKAp,
.high-contrast .AccessibilityToolbar_contact__XYR\+V {
  color: #ccc;
}

.high-contrast .AccessibilityToolbar_contact__XYR\+V a {
  color: #fff;
}

/* Large text mode */
.large-text .AccessibilityToolbar_toolbar__p3myx {
  font-size: 1.1rem;
}

.large-text .AccessibilityToolbar_toggleButton__Z0AHC {
  font-size: 1rem;
  padding: 1rem 1.25rem;
}

.large-text .AccessibilityToolbar_controls__BZB8G {
  padding: 1.25rem;
  min-width: 320px;
}

.large-text .AccessibilityToolbar_controlButton__rRg2m {
  font-size: 1rem;
  padding: 0.75rem 1rem;
}

.large-text .AccessibilityToolbar_groupTitle__W-1EF {
  font-size: 1rem;
}

.large-text .AccessibilityToolbar_infoText__QzKAp,
.large-text .AccessibilityToolbar_contact__XYR\+V {
  font-size: 0.9rem;
}

/* Reduced motion mode */
.reduced-motion * {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .AccessibilityToolbar_toolbar__p3myx {
    top: 10px;
    right: 10px;
  }
  
  .AccessibilityToolbar_toggleButton__Z0AHC {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    min-width: 120px;
  }
  
  .AccessibilityToolbar_controls__BZB8G {
    min-width: 260px;
    padding: 0.75rem;
  }
  
  .AccessibilityToolbar_controlButton__rRg2m {
    font-size: 0.8rem;
  }
}

/* Focus management for keyboard navigation */
.AccessibilityToolbar_toolbar__p3myx:focus-within {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

/* Global styles */

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

body {
  font-family: 'Inter', 'Arial', sans-serif;
  background-color: #121925;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.app-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
  width: 100%;
  padding-top: 100px; /* Offset for fixed header height */
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.0625rem; /* ~17px for better readability */
  color: #cbd5e1;     /* Softer, brighter gray */
  line-height: 1.75;  /* Breathing room */
  text-align: justify;
  hyphens: auto;
  letter-spacing: 0.01em;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Container styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Button styles */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Section styles */
.section {
  padding: 4rem 0;
}

/* Grid layouts */
.grid {
  display: grid;
  gap: 2rem;
}

@media (max-width: 768px) {
  .main-content {
    padding-top: 80px; /* Smaller offset on mobile */
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding-top: 70px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }
}

a:hover {
  color: #2980b9;
}

/* Loading Spinner Styles */
.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  color: #ffffff;
}

/* Cookie Debug Info - Development Only */
.cookie-debug-info {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: #333;
  color: white;
  padding: 5px;
  font-size: 12px;
  border-radius: 4px;
  z-index: 10000;
}

/* Prevent horizontal overflow on mobile */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ===== Responsive Table Styles ===== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 2rem;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.9rem;
}

thead {
  background: rgba(0, 102, 255, 0.15);
}

th {
  padding: 0.85rem 1rem;
  text-align: left;
  color: #00d4ff;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 2px solid rgba(0, 102, 255, 0.3);
  white-space: nowrap;
}

td {
  padding: 0.75rem 1rem;
  color: #b3b9c5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}

tbody tr:hover {
  background: rgba(0, 102, 255, 0.05);
}

tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  table {
    font-size: 0.8rem;
  }

  th, td {
    padding: 0.6rem 0.5rem;
  }

  /* Stack table cells on very small screens */
  table, thead, tbody, th, td, tr {
    display: block;
  }

  thead {
    display: none;
  }

  tr {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
    background: rgba(15, 23, 42, 0.8);
  }

  td {
    padding: 0.5rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    padding-left: 45%;
  }

  td::before {
    content: attr(data-label);
    position: absolute;
    left: 0.75rem;
    width: 40%;
    font-weight: 600;
    color: #00d4ff;
    font-size: 0.75rem;
    text-transform: uppercase;
  }
}


