    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { 
      font-family: Arial, sans-serif; 
      background: #fff; 
      color: #333; 
      overflow-x: hidden; 
      line-height: 1.6;
    }

    /* Navigation Bar */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(35, 39, 46, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 15px 0;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(35, 39, 46, 0.98);
      padding: 10px 0;
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-logo .logo-img {
      height: 50px;
      width: auto;
      transition: height 0.3s ease;
    }

    .navbar.scrolled .nav-logo .logo-img {
      height: 40px;
    }

    .nav-menu {
      display: flex;
      list-style: none;
      gap: 30px;
      margin: 0 auto;
      flex: 1;
      justify-content: center;
      margin-left: 100px; /* Espaço para compensar o logo */
    }

    .nav-link {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      font-size: 16px;
      transition: color 0.3s ease, transform 0.3s ease;
      position: relative;
    }

    .nav-link:hover {
      color: #2250e3;
      transform: translateY(-2px);
    }

    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 50%;
      background-color: #2250e3;
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    .nav-link:hover::after {
      width: 100%;
    }

    /* Remove underline from nested dropdown toggles */
    .dropdown-content .dropdown-toggle::after {
      display: none;
    }

    /* Dropdown Menu */
    .nav-dropdown {
      position: relative;
    }

    .dropdown-toggle {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .dropdown-toggle i {
      font-size: 12px;
      transition: transform 0.3s ease;
    }

    .dropdown-content {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(35, 39, 46, 0.95);
      backdrop-filter: blur(15px);
      border-radius: 8px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      min-width: 180px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 1000;
      margin-top: 10px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-dropdown:hover > .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .nav-dropdown:hover > .dropdown-toggle i {
      transform: rotate(180deg);
    }

    /* Nested dropdown specific hover */
    .dropdown-content .nav-dropdown:hover > .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateX(0) translateY(0);
    }

    .dropdown-content .nav-dropdown:hover > .dropdown-toggle i {
      transform: rotate(180deg);
    }

    .dropdown-link {
      display: block;
      padding: 12px 20px;
      color: #fff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 400;
      transition: all 0.3s ease;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-link:last-child {
      border-bottom: none;
    }

    .dropdown-link:hover {
      color: #2250e3;
      transform: translateX(5px);
    }

    /* Nested Dropdown (Sub-menu) */
    .dropdown-content .nav-dropdown {
      position: relative;
    }

    .dropdown-content .nav-dropdown .dropdown-content {
      position: absolute;
      top: 0;
      left: 100%;
      margin-top: 0;
      margin-left: 5px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      transform: translateX(-10px);
    }

    .dropdown-content .dropdown-toggle {
      padding: 12px 20px;
      color: #fff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 400;
      transition: all 0.3s ease;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      justify-content: space-between;
    }

    .dropdown-content .dropdown-toggle:hover {
      background: rgba(34, 80, 227, 0.1);
      color: #2250e3;
      transform: translateX(5px);
    }

    .dropdown-content .dropdown-toggle i {
      font-size: 10px;
    }

    /* Mobile Menu Toggle */
    .nav-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .bar {
      width: 25px;
      height: 3px;
      background-color: #fff;
      margin: 3px 0;
      transition: 0.3s;
    }

    /* Mobile Responsive */
    @media screen and (max-width: 768px) {
      .navbar {
        padding: 10px 0;
      }

      .nav-logo .logo-img {
        height: 45px;
      }

      .navbar.scrolled {
        padding: 8px 0;
      }

      .navbar.scrolled .nav-logo .logo-img {
        height: 40px;
      }

      .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background-color: rgba(35, 39, 46, 0.98);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        margin: 0;
        padding: 20px 0;
        backdrop-filter: blur(10px);
      }

      .navbar.scrolled .nav-menu {
        top: 56px;
      }

      .nav-menu.active {
        left: 0;
      }

      .nav-menu a {
        padding: 15px;
        display: block;
        font-size: 18px;
      }

      /* Mobile Dropdown */
      .nav-dropdown {
        width: 100%;
      }

      .dropdown-content {
        position: static;
        background: rgba(0, 0, 0, 0.3);
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        border: none;
        border-top: 0;
        left: auto;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.3s ease, max-height 0.3s ease, border-top 0.3s ease;
        transform: none !important;
        display: block;
      }

      .nav-dropdown:not(.active) .dropdown-content {
        opacity: 0;
        max-height: 0;
        border-top: 0;
        padding: 0;
        margin: 0;
      }

      .nav-dropdown.active .dropdown-content {
        opacity: 1;
        max-height: 300px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .dropdown-link {
        padding: 10px 30px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
      }

      .dropdown-toggle {
        justify-content: center;
      }

      /* Mobile dropdown icon rotation - only with active class */
      .dropdown-toggle i {
        transition: transform 0.3s ease;
        transform: rotate(0deg) !important;
      }

      .nav-dropdown.active > .dropdown-toggle i {
        transform: rotate(180deg) !important;
      }

      /* Mobile dropdown active state styling */
      .nav-dropdown.active > .dropdown-toggle {
        color: #2250e3;
      }

      /* Ensure closed dropdowns have white text and icon rotated correctly */
      .nav-dropdown:not(.active) > .dropdown-toggle {
        color: #fff;
      }

      .nav-dropdown:not(.active) > .dropdown-toggle i {
        transform: rotate(0deg) !important;
      }

      /* Remove underline when dropdown is closed */
      .nav-dropdown:not(.active) > .dropdown-toggle::after {
        width: 0 !important;
      }

      /* Show purple underline only when active */
      .nav-dropdown.active > .dropdown-toggle::after {
        width: 100% !important;
      }

      /* Mobile Nested Dropdowns */
      .dropdown-content .nav-dropdown {
        width: 100%;
      }

      .dropdown-content .nav-dropdown .dropdown-content {
        position: static;
        left: auto;
        margin-left: 0;
        background: rgba(0, 0, 0, 0.5);
        border-left: 3px solid #2250e3;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.3s ease, max-height 0.3s ease;
      }

      .dropdown-content .nav-dropdown.active .dropdown-content {
        opacity: 1;
        max-height: 200px;
      }

      /* Nested dropdown icon rotation */
      .dropdown-content .nav-dropdown .dropdown-toggle i {
        transform: rotate(0deg) !important;
      }

      .dropdown-content .nav-dropdown.active > .dropdown-toggle i {
        transform: rotate(180deg) !important;
      }

      /* Nested dropdown active state styling */
      .dropdown-content .nav-dropdown.active > .dropdown-toggle {
        color: #2250e3;
      }

      /* Ensure closed nested dropdowns have white text */
      .dropdown-content .nav-dropdown:not(.active) > .dropdown-toggle {
        color: #fff;
      }

      /* Remove underline when nested dropdown is closed */
      .dropdown-content .nav-dropdown:not(.active) > .dropdown-toggle::after {
        width: 0 !important;
      }

      /* Show purple underline only when nested dropdown is active */
      .dropdown-content .nav-dropdown.active > .dropdown-toggle::after {
        width: 100% !important;
      }

      .dropdown-content .dropdown-toggle {
        padding: 10px 30px;
        font-size: 16px;
        justify-content: space-between;
      }

      .dropdown-content .dropdown-link {
        padding: 8px 40px;
        font-size: 14px;
      }

      .nav-toggle {
        display: flex;
      }

      .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
      }

      .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }

      .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }
    }

    @media screen and (max-width: 480px) {
      .nav-container {
        padding: 0 15px;
      }

      .nav-logo .logo-img {
        height: 40px;
      }

      .navbar.scrolled .nav-logo .logo-img {
        height: 35px;
      }
    }

    /* Hero Section - New Split Design */
    .hero {
      position: relative;
      min-height: 82vh;
      overflow: hidden;
      background: linear-gradient(135deg, #1e1e2e 0%, #2a2a3e 100%);
    }

    .hero-split-container {
      display: flex;
      height: 100%;
      position: relative;
    }

    /* Left Image Panel */
    .hero-image-panel {
      flex: 0 0 45%;
      position: relative;
      background: url('../images/background-image.jpg') center/cover no-repeat;
      clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
      animation: slideInLeft 1s ease-out;
    }

    .hero-image-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(34, 80, 227, 0.3) 0%, rgba(46, 89, 132, 0.4) 100%);
      mix-blend-mode: multiply;
    }

    /* Floating Elements */
    .hero-floating-elements {
      display: none;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      overflow: hidden;
    }

    .float-element {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(5px);
      animation: float 6s ease-in-out infinite;
    }

    .float-element.element-1 {
      width: 150px;
      height: 150px;
      top: 20%;
      left: 15%;
      animation-delay: 0s;
    }

    .float-element.element-2 {
      width: 100px;
      height: 100px;
      top: 60%;
      left: 60%;
      animation-delay: 2s;
    }

    .float-element.element-3 {
      width: 80px;
      height: 80px;
      top: 75%;
      left: 25%;
      animation-delay: 4s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
      50% { transform: translateY(-30px) scale(1.1); opacity: 0.6; }
    }

    /* Right Content Panel */
    .hero-content-panel {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px;
      position: relative;
      animation: slideInRight 1s ease-out;
    }

    .hero-content-wrapper {
      max-width: 600px;
      width: 100%;
      color: #fff;
      margin-top: 4rem;
    }

    .badge-icon {
      font-size: 1.2rem;
    }

    /* Main Title */
    .hero-main-title {
      display: flex;
      flex-direction: column;
      margin-bottom: 40px;
      animation: fadeInUp 1s ease-out 0.5s both;
    }

    .title-year {
      font-size: 1.5rem;
      font-weight: 300;
      letter-spacing: 3px;
      color: #2250e3;
    }

    .title-location {
      font-family: 'Alexandria', sans-serif;
      font-size: 4rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -2px;
      background: linear-gradient(135deg, #fff 0%, #2250e3 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Countdown Box */
    .hero-countdown-box {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 25px;
      margin-bottom: 30px;
      animation: fadeInUp 1s ease-out 0.7s both;
    }

    .countdown-header {
      font-size: 0.9rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 15px;
      text-align: center;
    }

    .countdown-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
    }

    .countdown-card {
      text-align: center;
      background: rgba(34, 80, 227, 0.1);
      border: 1px solid rgba(34, 80, 227, 0.3);
      border-radius: 12px;
      padding: 15px 10px;
      transition: all 0.3s ease;
    }

    .countdown-card:hover {
      transform: translateY(-5px);
      background: rgba(34, 80, 227, 0.2);
      box-shadow: 0 10px 20px rgba(34, 80, 227, 0.2);
    }

    .countdown-value {
      display: block;
      font-size: 2.5rem;
      font-weight: 700;
      color: #fff;
      line-height: 1;
      margin-bottom: 8px;
    }

    .countdown-label {
      display: block;
      font-size: 0.75rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, 0.6);
    }

    /* Info Cards Mini */
    .hero-info-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      margin-bottom: 30px;
      animation: fadeInUp 1s ease-out 0.9s both;
      margin-top: 1rem;
    }

    .info-card-mini {
      display: flex;
      align-items: center;
      gap: 15px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 15px;
      transition: all 0.3s ease;
    }

    .info-card-mini:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateX(5px);
    }

    .info-card-mini i {
      font-size: 1.5rem;
      color: #2250e3;
    }

    .info-label {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .info-value {
      font-size: 1rem;
      font-weight: 600;
      color: #fff;
      margin-top: 2px;
    }

    /* Action Buttons */
    .hero-action-buttons {
      display: none;
      gap: 15px;
      margin-bottom: 40px;
      animation: fadeInUp 1s ease-out 1.1s both;
    }

    .hero-action-buttons.show {
      display: flex;
    }

    .hero-btn-modern {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 18px 30px;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .hero-btn-modern::before {
      content: '';
      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;
    }

    .hero-btn-modern:hover::before {
      left: 100%;
    }

    .hero-btn-modern.primary {
      background: linear-gradient(135deg, #2250e3 0%, #1a3fb5 100%);
      color: #fff;
      box-shadow: 0 5px 20px rgba(34, 80, 227, 0.4);
    }

    .hero-btn-modern.primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(34, 80, 227, 0.6);
    }

    .hero-btn-modern.secondary {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      border: 2px solid rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(10px);
    }

    .hero-btn-modern.secondary:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: #2250e3;
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
    }

    .btn-icon {
      font-size: 1.2rem;
    }

    /* Scroll Indicator */
    .hero-scroll-indicator {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      animation: fadeIn 1s ease-out 1.3s both;
    }

    .scroll-text {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .scroll-arrow {
      width: 30px;
      height: 30px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: bounce 2s ease-in-out infinite;
    }

    .scroll-arrow i {
      font-size: 0.9rem;
      color: #2250e3;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(10px); }
    }

    @keyframes slideInLeft {
      from {
        transform: translateX(-100%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    @keyframes slideInRight {
      from {
        transform: translateX(100%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    @keyframes fadeInDown {
      from {
        transform: translateY(-30px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

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

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

    /* Responsive Design */
    @media screen and (max-width: 1024px) {
      .hero-image-panel {
        flex: 0 0 40%;
      }

      .hero-content-panel {
        padding: 40px;
      }

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

      .countdown-value {
        font-size: 2rem;
      }
    }

    @media screen and (max-width: 768px) {
      .hero {
        min-height: auto;
        height: auto;
      }

      .hero-split-container {
        flex-direction: column;
        min-height: 100vh;
      }

      .hero-image-panel {
        flex: 0 0 35vh;
        min-height: 250px;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
      }

      .hero-content-panel {
        padding: 30px 25px 40px;
        justify-content: flex-start;
        flex: 1;
      }

      .hero-content-wrapper {
        margin-top: 1rem;
        max-width: 100%;
      }

      .title-year {
        font-size: 1.2rem;
      }

      .title-location {
        font-size: 2.5rem;
      }

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

      .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-info-cards {
        grid-template-columns: 1fr;
      }

      .hero-action-buttons {
        flex-direction: column;
      }
    }

    @media screen and (max-width: 480px) {
      .hero {
        min-height: 100vh;
        height: auto;
      }

      .hero-split-container {
        min-height: 100vh;
      }

      .hero-image-panel {
        flex: 0 0 30vh;
        min-height: 200px;
        max-height: 300px;
      }

      .hero-content-panel {
        padding: 20px 20px 30px;
        min-height: auto;
        flex: 1;
      }

      .hero-content-wrapper {
        margin-top: 0.5rem;
      }

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

      .title-location {
        font-size: 2rem;
        letter-spacing: -1px;
      }

      .title-subtitle {
        font-size: 0.9rem;
      }

      .countdown-value {
        font-size: 1.5rem;
      }

      .countdown-card {
        padding: 10px 6px;
      }

      .countdown-label {
        font-size: 0.65rem;
      }

      .countdown-grid {
        gap: 8px;
      }

      .hero-countdown-box {
        padding: 15px 12px;
        margin-bottom: 20px;
      }

      .hero-info-cards {
        gap: 8px;
        margin-bottom: 20px;
        margin-top: 0.5rem;
      }

      .info-card-mini {
        padding: 10px;
      }

      .info-card-mini i {
        font-size: 1.2rem;
      }

      .info-label {
        font-size: 0.7rem;
      }

      .info-value {
        font-size: 0.9rem;
      }

      .hero-btn-modern {
        padding: 14px 18px;
        font-size: 0.85rem;
      }

      .hero-scroll-indicator {
        margin-top: 20px;
      }
    }

    /* Gradient transition to sponsors */
    .gradient-transition {
      position: absolute;
      width: 100vw;
      height: 300px;
      bottom: 0;
      left: 0;
      right: 0;
      margin-left: calc(-50vw + 50%);
      background: linear-gradient(to bottom, 
        rgba(26, 26, 26, 0) 0%,
        rgba(26, 26, 26, 0.05) 10%,
        rgba(26, 26, 26, 0.15) 25%,
        rgba(26, 26, 26, 0.35) 45%,
        rgba(26, 26, 26, 0.60) 65%,
        rgba(26, 26, 26, 0.85) 85%,
        #1a1a1a  100%
      );
      z-index: 1;
      pointer-events: none;
    }
    
    @media (max-width: 768px) {
      .gradient-transition {
        height: 120px;
      }
    }
    
    @media (max-width: 480px) {
      .gradient-transition {
        height: 100px;
      }
    }

        .sponsors {
    background: linear-gradient(165deg, #1a1a1a 0%, #1a1a1a 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    margin-top: 0; /* Remove qualquer margem superior para garantir conexão suave */
    }

    .sponsor-slider {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      padding: 20px 40px;
      align-items: center;
      justify-items: center;   /* centrar cada card na coluna */
      max-width: 1200px;       /* limitar largura total */
      margin: 0 auto;          /* centrar o grid na página */
      overflow: visible;
      position: relative;
      scrollbar-width: none;
      -ms-overflow-style: none; /* IE 10+ */
    }
    
    .sponsor-slider {
      justify-content: center;
    }
    
    @media (max-width: 1024px) {
      .sponsors {
        padding: 50px 0;
      }
      
      .sponsor-slider {
        padding: 15px 30px;
        gap: 15px;
      }
    }
    
    @media (max-width: 768px) {
      .sponsors {
        padding: 40px 0;
      }
      
      .sponsor-slider {
        padding: 10px 20px;
        gap: 12px;
      }
    }
    
    @media (max-width: 480px) {
      .sponsors {
        padding: 30px 0;
      }
      
      .sponsor-slider {
        padding: 8px 15px;
        gap: 10px;
      }
    }

    .sponsor-slider::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Opera */
    }

    /* Áreas de auto-scroll fixas nas laterais da seção sponsors */
    .slider-scroll-zone {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 120px;
      z-index: 10;
      cursor: pointer;
      pointer-events: auto;
      opacity: 0.3;
      transition: opacity 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .slider-scroll-zone.left {
      left: 0;
      background: linear-gradient(90deg, rgba(35,39,46,0.5) 80%, transparent 100%);
    }
    .slider-scroll-zone.right {
      right: 0;
      background: linear-gradient(270deg, rgba(35,39,46,0.5) 80%, transparent 100%);
    }
    .slider-scroll-zone:hover {
      opacity: 0.8;
    }
    .slider-scroll-zone i {
      color: #fff;
      font-size: 1.8rem;
      opacity: 0.8;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
      transition: all 0.3s ease;
      pointer-events: none; /* O ícone não bloqueia eventos */
    }
    .slider-scroll-zone:hover i {
      opacity: 1;
      transform: scale(1.1);
    }
    
    @media (max-width: 768px) {
      .slider-scroll-zone {
        width: 40px;
        height: 100px;
      }
      
      .slider-scroll-zone i {
        font-size: 1.5rem;
      }
    }
    
    @media (max-width: 480px) {
      .slider-scroll-zone {
        width: 32px;
        height: 80px;
      }
      
      .slider-scroll-zone i {
        font-size: 1.2rem;
      }
    }

    /* Hide scroll arrows on tablets and mobile devices */
    @media (max-width: 1024px) {
      .slider-scroll-zone {
        display: none !important;
      }
    }

    .sponsor-logo {
      flex: none;
      width: 100%;
      max-width: 360px;
      height: 220px;
      background: rgba(255, 255, 255, 0.1);
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: all 0.4s ease-out;
    }

    .sponsor-logo:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.4);
      transform: scale(1.1);
    }

    .sponsor-logo img {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
    }
    
    @media (max-width: 1024px) {
      .sponsor-logo {
        flex: 0 0 280px;
        max-width: 280px;
        height: 200px;
      }
    }
    
    @media (max-width: 768px) {
      .sponsor-logo {
        flex: 0 0 220px;
        max-width: 220px;
        height: 160px;
      }
      
      .sponsor-logo:hover {
        transform: scale(1.05);
      }
    }
    
    @media (max-width: 480px) {
      .sponsor-logo {
        flex: 0 0 180px;
        max-width: 180px;
        height: 130px;
        border-radius: 8px;
      }
    }

    .arrow {
      display: none;
    }

    /* Olympians Teaser Section */
    /* Why Monte Gordo Section */
    .why-monte-gordo {
      background: linear-gradient(135deg, #23272e 0%, #1a1d23 100%);
      padding: 100px 20px;
      position: relative;
      overflow: hidden;
    }

    .why-monte-gordo::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 30%, rgba(34, 80, 227, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 157, 0.1) 0%, transparent 40%);
      pointer-events: none;
    }

    .why-header {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      z-index: 1;
    }

    .why-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, rgba(34, 80, 227, 0.2), rgba(255, 107, 157, 0.2));
      border: 1px solid rgba(34, 80, 227, 0.3);
      padding: 10px 25px;
      border-radius: 50px;
      color: #2250e3;
      font-size: 0.95rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }

    .why-badge i {
      font-size: 1.1rem;
    }

    .why-title {
      font-family: 'Alexandria', sans-serif;
      color: #ffffff;
      font-size: 3rem;
      font-weight: 700;
      margin: 0;
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto 60px;
      position: relative;
      z-index: 1;
    }

    .why-card {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 40px 30px;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .why-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(145deg, rgba(34, 80, 227, 0.05), transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .why-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      border-color: rgba(34, 80, 227, 0.4);
    }

    .why-card:hover::before {
      opacity: 1;
    }

    .why-card-icon {
      width: 70px;
      height: 70px;
      min-width: 70px;
      min-height: 70px;
      flex-shrink: 0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      font-size: 2rem;
      transition: all 0.4s ease;
      position: relative;
      z-index: 1;
    }

    .why-card-icon.ideal-conditions {
      background: linear-gradient(135deg, #ffd700, #ffa500);
      color: #fff;
      box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
    }

    .why-card-icon.world-class {
      background: linear-gradient(135deg, #2250e3, #1a3fb5);
      color: #fff;
      box-shadow: 0 10px 30px rgba(34, 80, 227, 0.3);
    }

    .why-card-icon.locations {
      background: linear-gradient(135deg, #ff6b9d, #c94277);
      color: #fff;
      box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
    }

    .why-card:hover .why-card-icon {
      transform: scale(1.1) rotate(10deg);
    }

    .why-card-title {
      color: #ffffff;
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
    }

    .why-card-text {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 25px;
      position: relative;
      z-index: 1;
    }

    .why-card-stats {
      display: flex;
      gap: 30px;
      margin-top: 25px;
      position: relative;
      z-index: 1;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .stat-value {
      color: #2250e3;
      font-size: 1.8rem;
      font-weight: 700;
    }

    .stat-label {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .why-card-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 25px;
      position: relative;
      z-index: 1;
    }

    .highlight-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(34, 80, 227, 0.15);
      border: 1px solid rgba(34, 80, 227, 0.3);
      padding: 8px 15px;
      border-radius: 20px;
      color: #2250e3;
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .why-card:hover .highlight-tag {
      background: rgba(34, 80, 227, 0.25);
      border-color: rgba(34, 80, 227, 0.5);
    }

    .why-card-features {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 25px;
      position: relative;
      z-index: 1;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255, 255, 255, 0.9);
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .feature-item i {
      color: #2250e3;
      font-size: 1.2rem;
      width: 20px;
    }

    .why-card:hover .feature-item {
      color: #ffffff;
      transform: translateX(5px);
    }

    .why-cta-banner {
      max-width: 1200px;
      margin: 0 auto;
      background: linear-gradient(135deg, rgba(34, 80, 227, 0.2), rgba(255, 107, 157, 0.15));
      border: 2px solid rgba(34, 80, 227, 0.3);
      border-radius: 25px;
      padding: 50px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    .why-cta-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
      0% { left: -100%; }
      100% { left: 200%; }
    }

    .cta-content {
      flex: 1;
    }

    .cta-title {
      color: #ffffff;
      font-size: 2rem;
      font-weight: 700;
      margin: 0 0 10px 0;
    }

    .cta-subtitle {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.1rem;
      margin: 0;
    }

    .cta-button-modern {
      display: inline-flex;
      align-items: center;
      gap: 15px;
      background: linear-gradient(135deg, #2250e3, #1a3fb5);
      color: #ffffff;
      padding: 18px 40px;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.4s ease;
      box-shadow: 0 10px 30px rgba(34, 80, 227, 0.4);
      position: relative;
      overflow: hidden;
    }

    .cta-button-modern::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .cta-button-modern:hover::before {
      width: 400px;
      height: 400px;
    }

    .cta-button-modern:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(34, 80, 227, 0.6);
    }

    .cta-button-modern i {
      font-size: 1rem;
      transition: transform 0.3s ease;
    }

    .cta-button-modern:hover i {
      transform: translateX(5px);
    }

    /* Responsive Design */
    @media (max-width: 968px) {
      .why-title {
        font-size: 2.5rem;
      }

      .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .why-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
      }

      .cta-title {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 768px) {
      .why-monte-gordo {
        padding: 70px 20px;
      }

      .why-title {
        font-size: 2rem;
      }

      .why-card {
        padding: 30px 25px;
      }

      .why-card-title {
        font-size: 1.4rem;
      }

      .why-card-text {
        font-size: 1rem;
      }

      .cta-title {
        font-size: 1.6rem;
      }

      .cta-subtitle {
        font-size: 1rem;
      }

      .cta-button-modern {
        padding: 16px 35px;
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .why-monte-gordo {
        padding: 60px 15px;
      }

      .why-header {
        margin-bottom: 40px;
      }

      .why-title {
        font-size: 1.8rem;
      }

      .why-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
      }

      .why-card {
        padding: 25px 20px;
      }

      .why-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
      }

      .why-card-stats {
        gap: 20px;
      }

      .stat-value {
        font-size: 1.5rem;
      }

      .cta-button-modern {
        padding: 14px 30px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
      }
    }

    /* Events Section - New Modern Design */
    .events {
      background: linear-gradient(135deg, #f8f9fa 0%, #f7f7f7 100%);
      color: #333;
      padding: 100px 20px;
      position: relative;
      overflow: hidden;
    }

    .events::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #2250e3, #1a3fb5, #2250e3);
      background-size: 200% 100%;
      animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    /* Events Header */
    .events-header {
      max-width: 1400px;
      margin: 0 auto 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 30px;
      padding: 0 20px;
    }

    .events-header-content {
      flex: 1;
      min-width: 300px;
    }

    .events-main-title {
      font-family: 'Alexandria', sans-serif;
      font-size: 3.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, #23272e 0%, #2250e3 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      line-height: 1.2;
    }

    .events-subtitle {
      font-size: 1.2rem;
      color: #666;
      font-weight: 500;
      letter-spacing: 1px;
    }

    .events-date-badge {
      background: linear-gradient(135deg, #2250e3, #1a3fb5);
      color: white;
      padding: 20px 30px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: 0 8px 30px rgba(34, 80, 227, 0.3);
      transform: translateY(0);
      transition: all 0.3s ease;
    }

    .events-date-badge:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 40px rgba(34, 80, 227, 0.4);
    }

    .badge-icon {
      font-size: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      backdrop-filter: blur(10px);
    }

    .badge-content {
      text-align: left;
    }

    .badge-day {
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      opacity: 0.9;
    }

    .badge-date {
      font-size: 1.3rem;
      font-weight: 700;
      letter-spacing: 1px;
    }
    

    /* Events Container */
    .events-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
      gap: 40px;
    }

    /* Event Race Card */
    .event-race-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
    }

    .event-race-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, #2250e3, #1a3fb5);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .event-race-card:hover::before {
      transform: scaleX(1);
    }

    .event-race-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .event-race-card.women::before {
      background: linear-gradient(90deg, #e91e63, #c2185b);
    }

    .event-race-card.men::before {
      background: linear-gradient(90deg, #2250e3, #1a3fb5);
    }

    /* Race Card Header */
    .race-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 25px 30px;
      background: linear-gradient(135deg, #f8f9fa, #e9ecef);
      border-bottom: 2px solid #dee2e6;
    }

    .race-category-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: 700;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: white;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .women-badge {
      background: linear-gradient(135deg, #e91e63, #c2185b);
    }

    .men-badge {
      background: linear-gradient(135deg, #2250e3, #1a3fb5);
    }

    .race-category-badge i {
      font-size: 1.2rem;
    }

    .race-time-display {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.8rem;
      font-weight: 800;
      color: #2250e3;
    }

    .race-time-display i {
      font-size: 1.5rem;
    }

    /* Race Card Body */
    .race-card-body {
      position: relative;
      overflow: hidden;
    }

    .race-image-container {
      position: relative;
      height: 250px;
      overflow: hidden;
    }

    .race-bg-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .event-race-card:hover .race-bg-image {
      transform: scale(1.1);
    }

    .race-image-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0.3) 50%, 
        rgba(0,0,0,0.7) 100%
      );
    }

    /* Race Info Content */
    .race-info-content {
      padding: 30px;
    }

    .race-title {
      font-family: 'Alexandria', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: #23272e;
      margin-bottom: 25px;
      line-height: 1.3;
    }

    /* Race Disciplines */
    .race-disciplines {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 15px;
      margin-bottom: 30px;
      padding: 20px;
      background: linear-gradient(135deg, #f8f9fa, #e9ecef);
      border-radius: 15px;
      border: 2px solid #dee2e6;
    }

    .discipline-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      flex: 1;
    }

    .discipline-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: white;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .event-race-card:hover .discipline-icon {
      transform: rotateY(180deg) scale(1.05);
    }

    .swim-icon {
      background: linear-gradient(135deg, #00bcd4, #0097a7);
    }

    .bike-icon {
      background: linear-gradient(135deg, #ff0707, #bb0e0e);
    }

    .run-icon {
      background: linear-gradient(135deg, #4caf50, #388e3c);
    }

    .discipline-icon i {
      font-size: 1.5rem;
    }

    .discipline-details {
      text-align: center;
    }

    .discipline-label {
      font-size: 0.85rem;
      color: #666;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
    }

    .discipline-value {
      font-size: 1.3rem;
      font-weight: 800;
      color: #23272e;
      margin: 5px 0;
    }

    .discipline-laps {
      font-size: 0.8rem;
      color: #999;
      font-style: italic;
    }

    .discipline-arrow {
      color: #2250e3;
      font-size: 1.5rem;
      opacity: 0.6;
    }

    /* Race Actions */
    .race-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .race-action-btn {
      flex: 1;
      min-width: 140px;
      padding: 14px 20px;
      border: none;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .race-action-btn.primary {
      background: linear-gradient(135deg, #2250e3, #1a3fb5);
      color: white;
    }

    .race-action-btn.primary:hover {
      background: linear-gradient(135deg, #1a3fb5, #0d1e5c);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(34, 80, 227, 0.4);
    }

    .race-action-btn.secondary {
      background: linear-gradient(135deg, #4caf50, #388e3c);
      color: white;
    }

    .race-action-btn.secondary:hover {
      background: linear-gradient(135deg, #388e3c, #2e7d32);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    }

    .race-action-btn.tertiary {
      background: linear-gradient(135deg, #e91e63, #c2185b);
      color: white;
    }

    .race-action-btn.tertiary:hover {
      background: linear-gradient(135deg, #c2185b, #ad1457);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    }

    .race-action-btn i {
      font-size: 1rem;
    }

    /* Events Info Banner */
    .events-info-banner {
      max-width: 1400px;
      margin: 60px auto 0;
      padding: 25px 30px;
      background: linear-gradient(135deg, #fff3cd, #ffeaa7);
      border-left: 5px solid #ff9800;
      border-radius: 10px;
      display: flex;
      align-items: center;
      gap: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin-bottom: 3rem;
    }

    .events-info-banner i {
      font-size: 1.8rem;
      color: #ff9800;
      flex-shrink: 0;
    }

    .events-info-banner p {
      margin: 0;
      font-size: 1.05rem;
      color: #856404;
      line-height: 1.5;
    }

    /* Diagonal lines transition - Simple and clean */
    .diagonal-lines-transition {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100px;
      overflow: hidden;
      z-index: 10;
      pointer-events: none;
    }

    .diagonal-line {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #1e3a8a;
      transform: skewY(2deg);
      transform-origin: bottom left;
    }
    
    @media (max-width: 768px) {
      .diagonal-lines-transition {
        height: 70px;
      }
      
      .diagonal-line {
        transform: skewY(1.5deg);
      }
    }
    
    @media (max-width: 480px) {
      .diagonal-lines-transition {
        height: 50px;
      }
      
      .diagonal-line {
        transform: skewY(1deg);
      }
    }

    /* Two diagonal transitions for transfers section */

    .diagonal-left-transfer {
      position: relative;
      width: 50%;
      height: 50px;
      overflow: hidden;
      background: #f8f9fa;
      float: left;
    }

    .diagonal-left-transfer::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 80%;
      height: 100%;
      background: linear-gradient(225deg, #f8f9fa 50%, #333333 50%);
    }

    .diagonal-right-transfer {
      position: relative;
      width: 50%;
      height: 50px;
      overflow: hidden;
      background: #f8f9fa;
      float: right;
    }

    .diagonal-right-transfer::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 80%;
      height: 100%;
      background: linear-gradient(315deg, #333333 50%, #f8f9fa 50%);
    }

    .diagonal-container-transfer {
      width: 100%;
      height: 50px;
      overflow: hidden;
    }

    .diagonal-container-transfer::after {
      content: "";
      display: table;
      clear: both;
    }
    
    @media (max-width: 768px) {
      .diagonal-left-transfer,
      .diagonal-right-transfer,
      .diagonal-container-transfer {
        height: 30px;
      }
    }
    
    @media (max-width: 480px) {
      .diagonal-left-transfer,
      .diagonal-right-transfer,
      .diagonal-container-transfer {
        height: 20px;
      }
    }
    .events-info-banner p {
      margin: 0;
      font-size: 1.05rem;
      color: #856404;
      line-height: 1.5;
    }

    /* Responsive Events Section */
    @media (max-width: 1200px) {
      .events {
        padding: 80px 20px;
      }

      .events-main-title {
        font-size: 3rem;
      }

      .events-container {
        gap: 30px;
      }

      .race-title {
        font-size: 1.4rem;
      }
    }

    @media (max-width: 1024px) {
      .events {
        padding: 70px 15px;
      }

      .events-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
      }

      .events-main-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
      }

      .events-subtitle {
        font-size: 1.1rem;
      }

      .events-container {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .race-disciplines {
        padding: 15px;
      }

      .discipline-icon {
        width: 50px;
        height: 50px;
      }

      .discipline-icon i {
        font-size: 1.3rem;
      }
    }

    @media (max-width: 768px) {
      .events {
        padding: 60px 15px;
      }

      .events-main-title {
        font-size: 2rem;
        letter-spacing: 1px;
      }

      .events-subtitle {
        font-size: 1rem;
      }

      .events-date-badge {
        padding: 15px 20px;
        gap: 15px;
        width: 100%;
        max-width: 400px;
      }

      .badge-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
      }

      .badge-day {
        font-size: 0.8rem;
      }

      .badge-date {
        font-size: 1.1rem;
      }

      .race-card-header {
        padding: 20px 25px;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 15px;
        justify-content: space-between;
      }

      .race-category-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
      }

      .race-time-display {
        font-size: 1.5rem;
      }

      .race-image-container {
        height: 200px;
      }

      .race-info-content {
        padding: 25px;
      }

      .race-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
      }

      .race-disciplines {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
      }

      .discipline-item {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
        gap: 15px;
      }

      .discipline-details {
        text-align: left;
      }

      .discipline-arrow {
        display: none;
      }

      .race-actions {
        flex-direction: column;
      }

      .race-action-btn {
        width: 100%;
      }

      .events-info-banner {
        padding: 20px 25px;
        flex-direction: column;
        text-align: center;
      }

      .events-info-banner p {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .events {
        padding: 50px 10px;
      }

      .events-main-title {
        font-size: 1.6rem;
      }

      .events-subtitle {
        font-size: 0.9rem;
      }

      .events-date-badge {
        padding: 12px 15px;
        gap: 10px;
      }

      .badge-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
      }

      .badge-day {
        font-size: 0.7rem;
      }

      .badge-date {
        font-size: 1rem;
      }

      .event-race-card {
        border-radius: 15px;
      }

      .race-card-header {
        padding: 15px 20px;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
      }

      .race-category-badge {
        font-size: 0.85rem;
        padding: 7px 14px;
        order: 1;
      }

      .race-time-display {
        font-size: 1.3rem;
        order: 2;
      }

      .race-image-container {
        height: 180px;
      }

      .race-info-content {
        padding: 20px;
      }

      .race-title {
        font-size: 1.15rem;
        margin-bottom: 15px;
      }

      .race-disciplines {
        padding: 15px;
        gap: 12px;
      }

      .discipline-icon {
        width: 45px;
        height: 45px;
      }

      .discipline-icon i {
        font-size: 1.1rem;
      }

      .discipline-value {
        font-size: 1.1rem;
      }

      .discipline-label {
        font-size: 0.75rem;
      }

      .discipline-laps {
        font-size: 0.75rem;
      }

      .race-action-btn {
        padding: 12px 18px;
        font-size: 0.85rem;
      }

      .events-info-banner {
        padding: 15px 20px;
        margin: 40px auto 0;
        margin-bottom: 3rem;
      }

      .events-info-banner i {
        font-size: 1.5rem;
      }

      .events-info-banner p {
        font-size: 0.95rem;
      }
    }

    /* Location Section - Card-Based Design */
    .location {
      background: linear-gradient(180deg, #1e3a8a 0%, #3b82f6 100%);
      color: #fff;
      padding: 100px 20px;
      position: relative;
      overflow: hidden;
    }

    .location::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
      opacity: 0.3;
    }

    .location-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .location-content-card {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 30px;
      padding: 60px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
      color: #333;
    }

    /* Title Section */
    .location-title-section {
      text-align: center;
      margin-bottom: 50px;
    }

    .location-pretitle {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #2e5984;
      font-size: 0.95rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 15px;
    }

    .location-pretitle i {
      font-size: 1.1rem;
    }

    .location-title {
      font-family: 'Alexandria', sans-serif;
      font-size: 3rem;
      font-weight: 700;
      color: #1e3a8a;
      margin: 15px 0 0 0;
      line-height: 1.2;
    }

    /* Main Content */
    .location-main-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: start;
    }

    /* Image Showcase */
    .location-image-showcase {
      position: relative;
    }

    .showcase-main-image {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
      margin-bottom: 20px;
    }

    .showcase-main-image .main-img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .showcase-main-image:hover .main-img {
      transform: scale(1.05);
    }

    .image-label {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: rgba(30, 58, 138, 0.9);
      backdrop-filter: blur(10px);
      color: white;
      padding: 12px 20px;
      border-radius: 50px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .image-label i {
      font-size: 1.1rem;
    }

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

    .thumbnail-item {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .thumbnail-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    }

    .thumbnail-item img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .thumbnail-item:hover img {
      transform: scale(1.1);
    }

    /* Text Content */
    .location-text-content {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .location-intro-text {
      font-size: 1.15rem;
      line-height: 1.8;
      color: #1e293b;
      font-weight: 500;
    }

    .location-details-text {
      font-size: 1.05rem;
      line-height: 1.7;
      color: #475569;
    }

    /* Highlights */
    .location-highlights {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 10px;
    }

    .highlight-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 20px;
      background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
      border-radius: 15px;
      border-left: 4px solid #2e5984;
      transition: all 0.3s ease;
    }

    .highlight-item:hover {
      transform: translateX(10px);
      box-shadow: 0 8px 25px rgba(46, 89, 132, 0.15);
    }

    .highlight-icon {
      width: 55px;
      height: 55px;
      background: linear-gradient(135deg, #2e5984, #1e3a8a);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      flex-shrink: 0;
      box-shadow: 0 5px 15px rgba(46, 89, 132, 0.3);
    }

    .highlight-text {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .highlight-text strong {
      font-size: 1.1rem;
      color: #1e3a8a;
      font-weight: 700;
    }

    .highlight-text span {
      font-size: 0.95rem;
      color: #64748b;
    }

    /* CTA Button */
    .location-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: linear-gradient(135deg, #1e3a8a, #2e5984);
      color: white;
      padding: 18px 40px;
      border: none;
      border-radius: 50px;
      font-size: 1.05rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.4s ease;
      text-decoration: none;
      box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
      align-self: flex-start;
      margin-top: 10px;
    }

    .location-cta-btn:hover {
      background: linear-gradient(135deg, #2e5984, #3b82f6);
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(30, 58, 138, 0.4);
    }

    .location-cta-btn i {
      transition: transform 0.3s ease;
    }

    .location-cta-btn:hover i {
      transform: translateX(5px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .location {
        padding: 80px 20px;
      }

      .location-content-card {
        padding: 50px 40px;
      }

      .location-title {
        font-size: 2.5rem;
      }

      .location-main-content {
        gap: 40px;
      }

      .showcase-main-image .main-img {
        height: 350px;
      }
    }

    @media (max-width: 768px) {
      .location {
        padding: 60px 15px;
      }

      .location-content-card {
        padding: 40px 30px;
      }

      .location-title {
        font-size: 2rem;
      }

      .location-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .showcase-main-image .main-img {
        height: 300px;
      }

      .thumbnail-item img {
        height: 100px;
      }

      .location-cta-btn {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      .location {
        padding: 40px 10px;
      }

      .location-content-card {
        padding: 30px 20px;
        border-radius: 20px;
      }

      .location-title {
        font-size: 1.6rem;
      }

      .location-pretitle {
        font-size: 0.85rem;
      }

      .location-intro-text {
        font-size: 1rem;
      }

      .location-details-text {
        font-size: 0.95rem;
      }

      .showcase-main-image .main-img {
        height: 250px;
      }

      .showcase-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
      }

      .thumbnail-item img {
        height: 80px;
      }

      .highlight-item {
        padding: 15px;
      }

      .highlight-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
      }

      .highlight-text strong {
        font-size: 1rem;
      }

      .highlight-text span {
        font-size: 0.85rem;
      }

      .location-cta-btn {
        padding: 15px 30px;
        font-size: 0.95rem;
      }

      .image-label {
        padding: 10px 16px;
        font-size: 0.85rem;
        bottom: 15px;
        left: 15px;
      }
    }
    
    @media (max-width: 768px) {
      .location-main {
        flex-direction: column;
        gap: 30px;
      }
      
      .location-description {
        text-align: center;
        padding-right: 0;
        align-items: center;
      }
      
      .location-button {
        align-self: center;
      }
      
      .location-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
      }
      
      .location-image img {
        height: 200px;
      }
    }
    
    /* Innovative Transition - Floating Particles */
    .particle-transition {
      position: relative;
      width: 100%;
      height: 120px;
      background: linear-gradient(135deg, #333333 0%, #23272e 50%, #1a1a1a 100%);
      overflow: hidden;
    }
    
    @media (max-width: 768px) {
      .particle-transition {
        height: 80px;
      }
    }
    
    @media (max-width: 480px) {
      .particle-transition {
        height: 60px;
      }
    }

    .particle-transition::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(circle at 20% 20%, rgba(120,197,247,0.3) 2px, transparent 2px),
        radial-gradient(circle at 80% 40%, rgba(255,255,255,0.2) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(120,197,247,0.4) 1.5px, transparent 1.5px),
        radial-gradient(circle at 90% 10%, rgba(255,255,255,0.3) 1px, transparent 1px),
        radial-gradient(circle at 10% 60%, rgba(120,197,247,0.2) 2px, transparent 2px),
        radial-gradient(circle at 60% 30%, rgba(255,255,255,0.25) 1px, transparent 1px);
      background-size: 200px 200px, 300px 300px, 250px 250px, 180px 180px, 220px 220px, 280px 280px;
      animation: floatParticles 15s linear infinite;
    }

    .particle-transition::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        linear-gradient(90deg, transparent 0%, rgba(120,197,247,0.1) 50%, transparent 100%);
      animation: sweepLight 6s ease-in-out infinite;
    }

    @keyframes floatParticles {
      0% { transform: translateX(-100px) translateY(-20px); }
      100% { transform: translateX(100vw) translateY(-40px); }
    }

    @keyframes sweepLight {
      0%, 100% { transform: translateX(-100%); opacity: 0; }
      50% { transform: translateX(100%); opacity: 1; }
    }

    /* Contact Section */
    .contacts {
      background: linear-gradient(180deg, #23272e 0%, #1a1a1a 100%);
      color: #fff;
      padding: 80px 20px;
      text-align: center;
      position: relative;
    }
    
    .contacts h2 {
      font-family: 'Alexandria', sans-serif;
      font-size: 3rem;
      font-weight: 600;
      /* font-style: italic; */
      color: #fff;
      margin-bottom: 60px;
      letter-spacing: 8px;
      text-transform: uppercase;
      /* text-shadow: 0 0 20px rgba(255,255,255,0.3); */
    }
    
    @media (max-width: 1024px) {
      .contacts {
        padding: 60px 15px;
      }
      
      .contacts h2 {
        font-size: 2.5rem;
        letter-spacing: 6px;
        margin-bottom: 40px;
      }
    }
    
    @media (max-width: 768px) {
      .contacts {
        padding: 40px 10px;
      }
      
      .contacts h2 {
        font-size: 2rem;
        letter-spacing: 4px;
        margin-bottom: 30px;
      }
    }
    
    @media (max-width: 480px) {
      .contacts h2 {
        font-size: 1.5rem;
        letter-spacing: 2px;
        margin-bottom: 20px;
      }
    }
    
    .contacts-content {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .federation-card {
      background: rgba(255, 255, 255, 0.1);
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      padding: 50px 40px;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    }
    
    @media (max-width: 1024px) {
      .contacts-content {
        max-width: 700px;
        padding: 0 15px;
      }
      
      .federation-card {
        padding: 40px 30px;
      }
    }
    
    @media (max-width: 768px) {
      .contacts-content {
        max-width: 600px;
        padding: 0 10px;
      }
      
      .federation-card {
        padding: 30px 20px;
      }
    }
    
    @media (max-width: 480px) {
      .contacts-content {
        padding: 0 5px;
      }
      
      .federation-card {
        padding: 20px 15px;
      }
    }
    
    .federation-card:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.4);
      transform: translateY(-5px);
      box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    }
    
    .federation-title {
      font-size: 2.2rem;
      font-weight: 600;
      color: #78c5f7;
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 2px;
    }
    
    @media (max-width: 1024px) {
      .federation-title {
        font-size: 2rem;
        margin-bottom: 25px;
      }
    }
    
    @media (max-width: 768px) {
      .federation-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        letter-spacing: 1px;
      }
    }
    
    @media (max-width: 480px) {
      .federation-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
      }
    }
    
    .address-section {
      margin-bottom: 40px;
      padding-bottom: 30px;
      border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    
    .address-line {
      font-size: 1.2rem;
      color: #e8f4fd;
      margin-bottom: 8px;
      line-height: 1.4;
    }
    
    .contact-methods {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    
    @media (max-width: 1024px) {
      .address-line {
        font-size: 1.1rem;
      }
      
      .contact-methods {
        gap: 30px;
      }
    }
    
    @media (max-width: 768px) {
      .address-line {
        font-size: 1rem;
      }
      
      .contact-methods {
        flex-direction: column;
        gap: 25px;
        align-items: center;
      }
    }
    
    @media (max-width: 480px) {
      .address-line {
        font-size: 0.9rem;
      }
      
      .contact-methods {
        gap: 20px;
      }
    }
    
    .contact-method {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      min-width: 200px;
    }
    
    .contact-icon-circle {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #2250e3, #0d1e5c);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: white;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(34, 80, 227,0.3);
    }
    
    .contact-icon-circle:hover {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 12px 30px rgba(34, 80, 227,0.5);
    }
    
    @media (max-width: 768px) {
      .contact-icon-circle {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
      }
    }
    
    @media (max-width: 480px) {
      .contact-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
      }
    }
    
    .contact-info {
      text-align: center;
    }
    
    .contact-label {
      font-size: 1rem;
      color: #b0c4de;
      margin-bottom: 5px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .contact-value {
      font-size: 1.3rem;
      color: #fff;
      font-weight: 600;
    }
    
    @media (max-width: 768px) {
      .contact-value {
        font-size: 1.2rem;
      }
    }
    
    @media (max-width: 480px) {
      .contact-value {
        font-size: 1.1rem;
      }
    }
    
    .contact-value a {
      color: #78c5f7;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .contact-value a:hover {
      color: #fff;
      text-shadow: 0 0 10px rgba(120,197,247,0.5);
    }
    
    @media (max-width: 768px) {
      .contacts h2 {
        font-size: 2.5rem;
        letter-spacing: 4px;
      }
      
      .federation-card {
        padding: 30px 25px;
      }
      
      .federation-title {
        font-size: 1.8rem;
      }
      
      .contact-methods {
        flex-direction: column;
        gap: 30px;
      }
      
      .contact-method {
        min-width: auto;
      }
      
      .address-line {
        font-size: 1.1rem;
      }
    }

    /* Footer Section */
    .footer {
      background: #1a1a1a;
      color: #e8f4fd;
      padding: 30px 20px;
      text-align: center;
      font-size: 0.9rem;
      line-height: 1.4;
    }
    
    .footer p {
      margin: 0;
    }
    
    .footer a {
      color: #078569;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .footer a:hover {
      color: #0a9f7a;
    }
    
    @media (max-width: 768px) {
      .footer {
        padding: 25px 15px;
        font-size: 0.85rem;
      }
    }
    
    @media (max-width: 480px) {
      .footer {
        padding: 20px 10px;
        font-size: 0.8rem;
      }
    }

    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #23272e, #1a1a1a);
      color: #fff;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      opacity: 0;
      visibility: hidden;
      transform: translateY(100px);
      transition: all 0.3s ease;
      z-index: 1000;
      animation: bounce 2s infinite;
    }

    .back-to-top.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .back-to-top:hover {
      background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.4);
      animation: none;
    }
    
    @media (max-width: 768px) {
      .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
      }
    }
    
    @media (max-width: 480px) {
      .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-10px);
      }
      60% {
        transform: translateY(-5px);
      }
    }

    .back-to-top.show:hover {
      animation: none;
    }

    /* Responsive utilities for very large screens */
    @media (min-width: 1440px) {
      .events-content,
      .location-content,
      .contacts-content,
      .accommodations-content,
      .airport-content {
        max-width: 1400px;
      }
    }

    /* Responsive utilities for very small screens */
    @media (max-width: 320px) {
      body {
        font-size: 14px;
      }
      
      .hero {
        height: 60vh;
        padding: 0 5px;
      }
      
      .events h2,
      .location h2,
      .contacts h2,
      .accommodations h2,
      .transfers-airport h3 {
        font-size: 1.2rem;
        letter-spacing: 1px;
      }
      
      .sponsor-logo {
        flex: 0 0 150px;
        max-width: 150px;
        height: 110px;
      }
      
      .pricing-amount {
        font-size: 2.5rem;
      }
      
      .contact-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
      }
      
      .modal-content {
        width: 98%;
        margin: 1% auto;
      }
      
      .modal-header h2 {
        font-size: 1.5rem;
      }
    }

    /* Section Transition - Geometric Pattern */
    .section-transition {
      position: relative;
      width: 100%;
      height: 150px;
      overflow: hidden;
    }

    .geometric {
      background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 30px;
    }

    .triangle {
      width: 0;
      height: 0;
      border-left: 40px solid transparent;
      border-right: 40px solid transparent;
      border-bottom: 70px solid #9a2923;
      animation: float 3s ease-in-out infinite;
      opacity: 0.7;
    }

    .triangle-1 {
      animation-delay: 0s;
    }

    .triangle-2 {
      animation-delay: 0.5s;
      border-bottom-color: #fdcd23;
    }

    .triangle-3 {
      animation-delay: 1s;
      border-bottom-color: #006b33;
    }

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

    @media (max-width: 768px) {
      .section-transition {
        height: 100px;
      }

      .triangle {
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
        border-bottom: 45px solid #9a2923;
      }

      .triangle-2 {
        border-bottom-color: #fdcd23;
      }

      .triangle-3 {
        border-bottom-color: #006b33;
      }

      .geometric {
        gap: 15px;
      }
    }

    /* Accommodations Section */
    .accommodations {
      background: #f8f9fa;
      color: #333;
      padding: 80px 20px;
      text-align: center;
    }
    
    .accommodations h2 {
      font-family: 'Alexandria', sans-serif;
      font-size: 3rem;
      font-weight: 600;
      /* font-style: italic; */
      background: linear-gradient(180deg, #23272e 0%, #1a1a1a 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 60px;
      letter-spacing: 8px;
      text-transform: uppercase;
      /*text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
      filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));*/
    }

    .accommodations.partner-services {
      background: linear-gradient(180deg, #f8f9fa 0%, #eef3ff 100%);
    }

    .partner-services-lead {
      max-width: 860px;
      margin: -20px auto 34px;
      font-size: 1.15rem;
      line-height: 1.7;
      color: #4c5668;
      text-align: center;
    }

    .partner-services-shell {
      max-width: 1120px;
      margin: 0 auto;
      background: #ffffff;
      border: 1px solid #dfe6f5;
      border-radius: 24px;
      padding: 36px;
      box-shadow: 0 18px 34px rgba(20, 44, 95, 0.1);
    }

    .partner-brand-row {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 26px;
      min-height: 80px;
    }

    .partner-services-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
      margin-bottom: 24px;
    }

    .partner-service-card {
      background: linear-gradient(145deg, #f9fbff 0%, #f0f4ff 100%);
      border: 1px solid #d7e1f8;
      border-radius: 18px;
      padding: 24px;
      text-align: left;
      display: flex;
      flex-direction: column;
    }

    .partner-service-card h3 {
      font-size: 1.4rem;
      color: #1b356f;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .partner-service-card p {
      color: #4a5770;
      line-height: 1.65;
      margin-bottom: 18px;
    }

    .partner-service-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 18px;
      border-radius: 999px;
      background: linear-gradient(135deg, #2250e3, #1739a4);
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 8px 18px rgba(34, 80, 227, 0.28);
      align-self: center;
    }

    .partner-service-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 20px rgba(34, 80, 227, 0.34);
    }

    .partner-service-btn.secondary {
      background: #ffffff;
      color: #1b356f;
      border: 1px solid #1b356f;
      box-shadow: none;
    }

    .partner-service-btn.secondary:hover {
      background: #1b356f;
      color: #ffffff;
      box-shadow: 0 10px 20px rgba(27, 53, 111, 0.25);
    }

    .partner-contact-strip {
      background: #0f1e45;
      border-radius: 14px;
      padding: 14px 18px;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 18px;
    }

    .partner-contact-item {
      color: #dfe7ff;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.98rem;
    }

    .partner-contact-item a {
      color: #ffffff;
      text-decoration: none;
      font-weight: 600;
    }

    .partner-contact-item a:hover {
      text-decoration: underline;
    }

    @media (max-width: 900px) {
      .partner-services-grid {
        grid-template-columns: 1fr;
      }

      .partner-services-shell {
        padding: 24px;
      }
    }

    @media (max-width: 480px) {
      .partner-services-shell {
        padding: 18px;
        border-radius: 16px;
      }

      .partner-services-lead {
        font-size: 1rem;
      }

      .partner-service-card {
        padding: 18px;
      }

      .partner-service-card h3 {
        font-size: 1.2rem;
      }

      .partner-service-btn {
        width: 100%;
        justify-content: center;
      }
    }
    
    @media (max-width: 1024px) {
      .accommodations {
        padding: 60px 15px;
      }
      
      .accommodations h2 {
        font-size: 2.5rem;
        letter-spacing: 6px;
        margin-bottom: 40px;
      }
    }
    
    @media (max-width: 768px) {
      .accommodations {
        padding: 40px 10px;
      }
      
      .accommodations h2 {
        font-size: 2rem;
        letter-spacing: 4px;
        margin-bottom: 30px;
      }
    }
    
    @media (max-width: 480px) {
      .accommodations h2 {
        font-size: 1.5rem;
        letter-spacing: 2px;
        margin-bottom: 20px;
      }
    }
    
    .accommodations-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .hotel-item {
      display: flex;
      align-items: center;
      gap: 40px;
      margin-bottom: 60px;
      background: #fff;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }
    
    @media (max-width: 1024px) {
      .accommodations-content {
        max-width: 1000px;
        padding: 0 15px;
      }
      
      .hotel-item {
        gap: 30px;
        margin-bottom: 40px;
        padding: 25px;
      }
    }
    
    @media (max-width: 768px) {
      .accommodations-content {
        max-width: 600px;
        padding: 0 10px;
      }
      
      .hotel-item {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
        padding: 20px;
      }
    }
    
    @media (max-width: 480px) {
      .accommodations-content {
        padding: 0 5px;
      }
      
      .hotel-item {
        padding: 15px;
        margin-bottom: 20px;
      }
    }
    
    .hotel-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
    
    .hotel-item.reverse {
      flex-direction: row-reverse;
    }
    
    .hotel-image {
      flex: 1;
      min-width: 300px;
    }
    
    .hotel-image img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 10px;
      transition: all 0.3s ease;
    }
    
    .hotel-image img:hover {
      transform: scale(1.05);
    }
    
    @media (max-width: 768px) {
      .hotel-item.reverse {
        flex-direction: column;
      }
      
      .hotel-image {
        min-width: auto;
        width: 100%;
      }
      
      .hotel-image img {
        height: 250px;
      }
    }
    
    @media (max-width: 480px) {
      .hotel-image img {
        height: 200px;
      }
    }
    
    .hotel-info {
      flex: 1;
      text-align: left;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 20px;
    }
    
    .hotel-item.reverse .hotel-info {
      text-align: right;
    }
    
    .hotel-name {
      font-size: 2rem;
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 15px;
    }
    
    .hotel-description {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #555;
      margin-bottom: 30px;
    }
    
    @media (max-width: 1024px) {
      .hotel-name {
        font-size: 1.8rem;
      }
      
      .hotel-description {
        font-size: 1rem;
        margin-bottom: 25px;
      }
    }
    
    @media (max-width: 768px) {
      .hotel-info, .hotel-item.reverse .hotel-info {
        text-align: center;
        padding: 15px;
      }
      
      .hotel-name {
        font-size: 1.6rem;
        margin-bottom: 12px;
      }
      
      .hotel-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
      }
    }
    
    @media (max-width: 480px) {
      .hotel-info {
        padding: 10px;
      }
      
      .hotel-name {
        font-size: 1.4rem;
        margin-bottom: 10px;
      }
      
      .hotel-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
      }
    }
    
    .hotel-button {
      background: linear-gradient(135deg, #2980b9, #1f5fa6);
      color: white;
      padding: 15px 30px;
      border: none;
      border-radius: 25px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-decoration: none;
      display: inline-block;
      align-self: center;
      position: relative;
      overflow: hidden;
    }
    
    .hotel-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transition: left 0.6s ease;
    }
    
    .hotel-button:hover {
      background: linear-gradient(135deg, #1f5fa6, #1a527a);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(31,95,166,0.5);
    }
    
    .hotel-button:hover::before {
      left: 100%;
    }
    
    @media (max-width: 768px) {
      .hotel-button {
        padding: 12px 25px;
        font-size: 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .hotel-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        width: 100%;
        max-width: 250px;
      }
    }

    /* ===== NEW OFFICIAL HOTEL DESIGN ===== */
    .official-hotel-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .hotel-main-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .hotel-main-card:hover {
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
      transform: translateY(-5px);
    }

    .hotel-hero-image {
      position: relative;
      width: 100%;
      height: 450px;
      overflow: hidden;
    }

    .hotel-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .hotel-main-card:hover .hotel-hero-image img {
      transform: scale(1.1);
    }

    .hotel-location-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: #2250e3;
      color: white;
      padding: 12px 24px;
      border-radius: 50px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      font-size: 1rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(10px);
    }

    .hotel-location-badge i {
      font-size: 1.2rem;
    }

    .hotel-content-wrapper {
      padding: 50px;
    }

    .hotel-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .hotel-main-title {
      font-size: 3rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 10px;
      background: linear-gradient(135deg, #2c3e50, #34495e);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hotel-tagline {
      font-size: 1.3rem;
      color: #7f8c8d;
      font-style: italic;
    }

    .partner-logo-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 18px;
      min-height: 80px;
    }

    .partner-logo {
      max-height: 74px;
      max-width: 350px;
      object-fit: contain;
      filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
    }

    .partner-logo-fallback {
      font-size: 1.6rem;
      font-weight: 700;
      color: #ff8c3a;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .hotel-info-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      margin-bottom: 40px;
    }

    .info-card {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .info-card:hover {
      border-color: #2250e3be;
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(34, 80, 227, 0.2);
    }

    .card-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #2250e3, #0d1e5c);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 4px 15px rgba(34, 80, 227, 0.3);
    }

    .card-icon i {
      font-size: 1.8rem;
      color: white;
    }

    .info-card h4 {
      font-size: 1.5rem;
      color: #2c3e50;
      margin-bottom: 25px;
      text-align: center;
      font-weight: 700;
    }

    .info-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .info-item {
      display: grid;
      grid-template-columns: 30px 1fr;
      gap: 15px;
      align-items: start;
    }

    .info-item i {
      font-size: 1.3rem;
      color: #2980b9;
      margin-top: 5px;
      text-align: center;
    }

    .info-item > div {
      display: flex;
      flex-direction: column;
    }

    .info-item strong {
      display: block;
      color: #2c3e50;
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .info-item p {
      color: #555;
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
    }

    .info-item a {
      color: #2980b9;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .info-item a:hover {
      color: #1f5fa6;
      text-decoration: underline;
    }

    .bike-storage-content {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .bike-notice {
      background: #fff3cd;
      border-left: 4px solid #ffc107;
      padding: 15px;
      border-radius: 8px;
      color: #856404;
      font-size: 0.95rem;
      line-height: 1.6;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin-left: -3% !important;
    }

    .bike-notice i {
      font-size: 1.3rem;
      margin-top: 2px;
      min-width: 20px;
    }

    .storage-hours h5 {
      font-size: 1.1rem;
      color: #2c3e50;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .storage-hours h5 i {
      color: #27ae60;
    }

    .hours-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .hour-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: white;
      padding: 12px 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .day-label {
      font-weight: 600;
      color: #2c3e50;
      font-size: 0.95rem;
    }

    .time-label {
      color: #27ae60;
      font-weight: 700;
      font-size: 1rem;
      font-family: 'Courier New', monospace;
    }

    .security-badge {
      background: linear-gradient(135deg, #27ae60, #229954);
      color: white;
      padding: 12px 20px;
      border-radius: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-weight: 600;
      box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    }

    .security-badge i {
      font-size: 1.3rem;
    }

    .hotel-actions {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .primary-hotel-btn,
    .secondary-hotel-btn {
      padding: 18px 40px;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      transition: all 0.3s ease;
      cursor: pointer;
      border: 2px solid transparent;
    }

    .primary-hotel-btn {
      background: linear-gradient(135deg, #1a3fb5, #5a0f4b);
      color: white;
      box-shadow: 0 5px 20px rgba(34, 80, 227, 0.3);
    }

    .primary-hotel-btn:hover {
      background: linear-gradient(135deg, #1a3fb5, #500d43);
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(34, 80, 227, 0.5);
    }

    .secondary-hotel-btn {
      background: white;
      color: #1a3fb5;
      border-color: #1a3fb5;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .secondary-hotel-btn:hover {
      background: #1a3fb5;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(34, 80, 227, 0.3);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .hotel-content-wrapper {
        padding: 40px;
      }

      .hotel-main-title {
        font-size: 2.5rem;
      }

      .hotel-tagline {
        font-size: 1.1rem;
      }

      .hotel-hero-image {
        height: 400px;
      }
    }

    @media (max-width: 768px) {
      .hotel-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .hotel-content-wrapper {
        padding: 30px 20px;
      }

      .hotel-main-title {
        font-size: 2rem;
      }

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

      .hotel-hero-image {
        height: 300px;
      }

      .hotel-location-badge {
        top: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 0.9rem;
      }

      .official-badge {
        font-size: 1rem;
        padding: 10px 25px;
      }

      .hotel-actions {
        flex-direction: column;
        gap: 15px;
      }

      .primary-hotel-btn,
      .secondary-hotel-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .hotel-content-wrapper {
        padding: 25px 15px;
      }

      .hotel-main-title {
        font-size: 1.7rem;
      }

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

      .hotel-hero-image {
        height: 250px;
      }

      .info-card {
        padding: 20px;
      }

      .card-icon {
        width: 50px;
        height: 50px;
      }

      .card-icon i {
        font-size: 1.5rem;
      }

      .info-card h4 {
        font-size: 1.3rem;
      }

      .hour-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
      }

      .hotel-location-badge {
        position: static;
        margin: 15px;
        align-self: flex-start;
      }
    }
    /* ===== END NEW OFFICIAL HOTEL DESIGN ===== */
    
    @media (max-width: 768px) {
      .hotel-item, .hotel-item.reverse {
        flex-direction: column;
        text-align: center;
      }
      
      .hotel-info, .hotel-item.reverse .hotel-info {
        text-align: center;
      }
      
      .hotel-image {
        min-width: auto;
      }
      
      .hotel-image img {
        height: 250px;
      }
    }

    /* Hotel Transfers Section */
    .transfers {
      margin-top: 80px;
      padding-top: 60px;
      position: relative;
    }
    
    .transfers::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60%;
      max-width: 600px;
      height: 2px;
      background: #e9ecef;
    }
    
    .transfers h3 {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 2.5rem;
      font-weight: 600;
      font-style: italic;
      background: linear-gradient(180deg, #23272e 0%, #1a1a1a 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 50px;
      letter-spacing: 4px;
      text-transform: uppercase;
      text-align: center;
    }
    
    @media (max-width: 1024px) {
      .transfers {
        margin-top: 60px;
        padding-top: 40px;
      }
      
      .transfers h3 {
        font-size: 2.2rem;
        letter-spacing: 3px;
        margin-bottom: 40px;
      }
    }
    
    @media (max-width: 768px) {
      .transfers {
        margin-top: 40px;
        padding-top: 30px;
      }
      
      .transfers h3 {
        font-size: 1.8rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
      }
    }
    
    @media (max-width: 480px) {
      .transfers h3 {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-bottom: 20px;
      }
    }
    
    .transfers-intro {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 50px;
      font-size: 1.2rem;
      color: #555;
      line-height: 1.6;
    }
    
    .transfers-timeline {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      padding: 40px 0;
    }
    
    @media (max-width: 1024px) {
      .transfers-intro {
        max-width: 500px;
        margin: 0 auto 40px;
        font-size: 1.1rem;
      }
      
      .transfers-timeline {
        max-width: 800px;
        padding: 30px 0;
      }
    }
    
    @media (max-width: 768px) {
      .transfers-intro {
        max-width: 400px;
        margin: 0 auto 30px;
        font-size: 1rem;
        padding: 0 15px;
      }
      
      .transfers-timeline {
        max-width: 600px;
        padding: 20px 0;
      }
    }
    
    @media (max-width: 480px) {
      .transfers-intro {
        font-size: 0.9rem;
        padding: 0 10px;
        margin: 0 auto 20px;
      }
      
      .transfers-timeline {
        padding: 15px 0;
      }
    }
    
    .transfers-timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, #2980b9, #1f5fa6);
      transform: translateX(-50%);
      border-radius: 2px;
    }
    
    .day-section {
      margin-bottom: 60px;
      position: relative;
    }
    
    .day-header {
      text-align: center;
      position: relative;
      margin-bottom: 40px;
      background: #f8f9fa;
      padding: 10px 20px;
      border-radius: 15px;
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 40px;
      z-index: 3;
    }
    
    .day-circle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #2980b9, #1f5fa6);
      border-radius: 50%;
      color: white;
      font-size: 1.2rem;
      font-weight: bold;
      position: relative;
      z-index: 2;
      box-shadow: 0 8px 25px rgba(41,128,185,0.3);
    }
    
    .day-title {
      font-size: 1.8rem;
      font-weight: 600;
      color: #1f5fa6;
      margin-top: 15px;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-align: center;
      line-height: 1.2;
    }
    
    @media (max-width: 768px) {
      .day-circle {
        width: 60px;
        height: 60px;
        font-size: 1rem;
      }
      
      .day-title {
        font-size: 1.5rem;
        margin-top: 10px;
      }
    }
    
    @media (max-width: 480px) {
      .day-circle {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
      }
      
      .day-title {
        font-size: 1.2rem;
        margin-top: 8px;
      }
    }
    
    .transfers-row {
      display: flex;
      align-items: center;
      gap: 30px;
      margin-bottom: 30px;
      position: relative;
    }
    
    .transfer-card {
      flex: 1;
      background: #fff;
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      position: relative;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }
    
    @media (max-width: 1024px) {
      .transfers-row {
        gap: 20px;
        margin-bottom: 25px;
      }
      
      .transfer-card {
        padding: 20px;
      }
    }
    
    @media (max-width: 768px) {
      .transfers-row {
        flex-direction: column;
        margin-left: 60px;
        gap: 15px;
        margin-bottom: 20px;
      }
      
      .transfer-card {
        width: 100%;
        padding: 18px;
      }
    }
    
    @media (max-width: 480px) {
      .transfers-row {
        margin-left: 40px;
        gap: 10px;
      }
      
      .transfer-card {
        padding: 15px;
      }
    }
    
    .transfer-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
      border-color: #2980b9;
    }
    
    .transfer-card.to-venue {
      background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    }
    
    .transfer-card.from-venue {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .transfer-icon-container {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 15px;
    }
    
    .transfer-route-icon {
      font-size: 2.5rem;
      color: #2980b9;
    }
    
    .transfer-direction {
      font-size: 1.3rem;
      font-weight: 600;
      color: #2c3e50;
    }
    
    .transfer-time {
      font-size: 2rem;
      font-weight: bold;
      color: #2980b9;
      margin-bottom: 8px;
    }
    
    .transfer-route {
      font-size: 1.1rem;
      color: #555;
      line-height: 1.4;
    }
    
    @media (max-width: 768px) {
      .transfer-route-icon {
        font-size: 2rem;
      }
      
      .transfer-direction {
        font-size: 1.2rem;
      }
      
      .transfer-time {
        font-size: 1.8rem;
      }
      
      .transfer-route {
        font-size: 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .transfer-route-icon {
        font-size: 1.8rem;
      }
      
      .transfer-direction {
        font-size: 1.1rem;
      }
      
      .transfer-time {
        font-size: 1.6rem;
      }
      
      .transfer-route {
        font-size: 0.9rem;
      }
    }
    
    .transfer-duration {
      display: inline-block;
      background: #2980b9;
      color: white;
      padding: 5px 12px;
      border-radius: 15px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-top: 10px;
    }
    
    .timeline-connector {
      position: absolute;
      left: 50%;
      width: 2px;
      height: 60px;
      background: #ddd;
      transform: translateX(-50%);
      top: -30px;
    }
    
    .hotels-badge {
      display: inline-block;
      background: linear-gradient(135deg, #23272e, #1a1a1a);
      color: white;
      padding: 8px 20px;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    @media (max-width: 768px) {
      .transfers-timeline::before {
        left: 30px;
      }
      
      .day-circle {
        width: 60px;
        height: 60px;
        font-size: 1rem;
      }
      
      .transfers-row {
        flex-direction: column;
        margin-left: 60px;
      }
      
      .transfer-card {
        width: 100%;
      }
      
      .timeline-connector {
        display: none;
      }
    }

    /* Airport Transfers Section */
    .transfers-airport {
      background-color: #333333;
      padding: 80px 20px;
      text-align: center;
      position: relative;
    }

    
    .transfers-airport h3 {
      font-family: 'Alexandria', sans-serif;
      font-size: 3rem;
      font-weight: 600;
      /* font-style: italic; */
      color: #fff;
      margin-bottom: 50px;
      letter-spacing: 6px;
      text-transform: uppercase;
      /* text-shadow: 0 0 20px rgba(255,255,255,0.3); */
    }
    
    @media (max-width: 1024px) {
      .transfers-airport {
        padding: 60px 15px;
      }
      
      .transfers-airport h3 {
        font-size: 2.5rem;
        letter-spacing: 4px;
        margin-bottom: 40px;
      }
    }
    
    @media (max-width: 768px) {
      .transfers-airport {
        padding: 40px 10px;
      }
      
      .transfers-airport h3 {
        font-size: 2rem;
        letter-spacing: 3px;
        margin-bottom: 30px;
      }
    }
    
    @media (max-width: 480px) {
      .transfers-airport h3 {
        font-size: 1.5rem;
        letter-spacing: 2px;
        margin-bottom: 20px;
      }
    }
    
    .airport-content {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .airport-pricing {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-bottom: 60px;
      flex-wrap: wrap;
    }
    
    @media (max-width: 1024px) {
      .airport-content {
        max-width: 900px;
        padding: 0 15px;
      }
      
      .airport-pricing {
        gap: 30px;
        margin-bottom: 40px;
      }
    }
    
    @media (max-width: 768px) {
      .airport-content {
        max-width: 600px;
        padding: 0 10px;
      }
      
      .airport-pricing {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-bottom: 30px;
      }
    }
    
    @media (max-width: 480px) {
      .airport-content {
        padding: 0 5px;
      }
      
      .airport-pricing {
        gap: 20px;
        margin-bottom: 20px;
      }
    }
    
    .pricing-card {
      background: rgba(255, 255, 255, 0.1);
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      padding: 40px 30px;
      min-width: 280px;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }
    
    .pricing-card:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.4);
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }
    
    .pricing-period {
      font-size: 1.4rem;
      font-weight: 600;
      color: #e8f4fd;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .pricing-amount {
      font-size: 4rem;
      font-weight: bold;
      color: #fff;
      margin-bottom: 10px;
      /*text-shadow: 2px 2px 4px rgba(0,0,0,0.3);*/
    }
    
    .pricing-details {
      font-size: 1.2rem;
      color: #b0c4de;
      line-height: 1.4;
    }
    
    @media (max-width: 768px) {
      .pricing-card {
        min-width: auto;
        width: 100%;
        max-width: 350px;
        padding: 30px 25px;
      }
      
      .pricing-period {
        font-size: 1.2rem;
        margin-bottom: 15px;
      }
      
      .pricing-amount {
        font-size: 3.5rem;
      }
      
      .pricing-details {
        font-size: 1.1rem;
      }
    }
    
    @media (max-width: 480px) {
      .pricing-card {
        padding: 25px 20px;
      }
      
      .pricing-period {
        font-size: 1.1rem;
      }
      
      .pricing-amount {
        font-size: 3rem;
      }
      
      .pricing-details {
        font-size: 1rem;
      }
    }
    
    .airport-info {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 15px;
      padding: 40px;
      margin-bottom: 50px;
      border-left: 4px solid #1a3fb5;
    }
    
    .airport-info p {
      font-size: 1.2rem;
      line-height: 1.6;
      color: #e8f4fd;
      margin-bottom: 0;
    }
    
    .contacts-section {
      background: rgba(0, 0, 0, 0.3);
      border-radius: 20px;
      padding: 50px 40px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .orange-transfer-contact {
      max-width: 760px;
      margin: 0 auto;
    }
    
    .contacts-title {
      font-size: 2.5rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 2px;
    }
    
    @media (max-width: 768px) {
      .contacts-title {
        font-size: 2rem;
        margin-bottom: 30px;
        letter-spacing: 1px;
      }
    }
    
    @media (max-width: 480px) {
      .contacts-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
      }
    }
    
    .federation-info {
      max-width: 600px;
      margin: 0 auto;
    }
    
    .federation-name {
      font-size: 1.8rem;
      font-weight: 600;
      color: #2980b9;
      margin-bottom: 15px;
    }
    
    .federation-title {
      font-size: 1.4rem;
      color: #b0c4de;
      margin-bottom: 30px;
      font-style: italic;
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin-bottom: 20px;
      font-size: 1.2rem;
    }
    
    .contact-icon {
      font-size: 1.5rem;
      color: #2980b9;
      width: 30px;
      text-align: center;
    }
    
    .contact-text {
      color: #e8f4fd;
    }
    
    .contact-text a {
      color: #78c5f7;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .contact-text a:hover {
      color: #fff;
    }
    
    .transfer-form-button {
      background: linear-gradient(135deg, #1a3fb5, #500d43);
      color: white;
      padding: 18px 40px;
      border: none;
      border-radius: 30px;
      font-size: 1.3rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin: 30px 0;
      box-shadow: 0 8px 25px rgba(34, 80, 227,0.3);
    }
    
    .transfer-form-button:hover {
      background: linear-gradient(135deg, #751669, #500d43);
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(34, 80, 227, 0.5);
    }
    
    @media (max-width: 768px) {
      .transfer-form-button {
        padding: 15px 30px;
        font-size: 1.2rem;
        letter-spacing: 1px;
        margin: 25px 0;
      }
    }
    
    @media (max-width: 480px) {
      .transfer-form-button {
        padding: 12px 25px;
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        margin: 20px 0;
        width: 100%;
        max-width: 300px;
      }
    }

    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 10000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.7);
      backdrop-filter: blur(5px);
      animation: fadeIn 0.3s ease;
    }

    .modal.show {
      display: block;
    }

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

    @keyframes slideDown {
      from { 
        opacity: 0;
        transform: translateY(-50px);
      }
      to { 
        opacity: 1;
        transform: translateY(0);
      }
    }

    .modal-content {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      margin: 2% auto;
      padding: 0;
      border-radius: 20px;
      width: 90%;
      max-width: 800px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 25px 50px rgba(0,0,0,0.3);
      animation: slideDown 0.4s ease;
      position: relative;
    }

    /* Custom Scrollbar for Modal */
    .modal-content::-webkit-scrollbar {
      width: 8px;
    }

    .modal-content::-webkit-scrollbar-track {
      background: rgba(0,0,0,0.1);
      border-radius: 10px;
    }

    .modal-content::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, #2980b9, #1f5fa6);
      border-radius: 10px;
      transition: all 0.3s ease;
    }

    .modal-content::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, #1f5fa6, #1a527a);
    }

    /* Firefox scrollbar */
    .modal-content {
      scrollbar-width: thin;
      scrollbar-color: #2980b9 rgba(0,0,0,0.1);
    }

    .modal-header {
      background: linear-gradient(180deg, #23272e 0%, #1a1a1a 100%);
      color: white;
      padding: 30px 40px;
      border-radius: 20px 20px 0 0;
      position: relative;
    }

    .modal-header h2 {
      font-size: 2.5rem;
      font-weight: 600;
      margin: 0;
      text-align: center;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .close {
      position: absolute;
      right: 25px;
      top: 50%;
      transform: translateY(-50%);
      color: #fff;
      font-size: 2.5rem;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
    }

    .close:hover {
      background: rgba(255,255,255,0.2);
      transform: translateY(-50%) scale(1.1);
    }

    .modal-body {
      padding: 40px;
    }

    .form-section {
      margin-bottom: 40px;
      background: #fff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .form-section h3 {
      font-size: 1.8rem;
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 25px;
      padding: 15px 20px;
      background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
      border-radius: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      text-align: center;
      box-shadow: 0 3px 10px rgba(41,128,185,0.1);
    }

    .form-section h3::before {
      content: '';
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      width: 4px;
      height: 30px;
      background: linear-gradient(180deg, #1a3fb5, #500d43);
      border-radius: 2px;
    }

    .form-section h3::after {
      content: '';
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      width: 4px;
      height: 30px;
      background: linear-gradient(180deg, #1a3fb5, #500d43);
      border-radius: 2px;
    }

    .form-row {
      display: flex;
      gap: 20px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .form-group {
      flex: 1;
      min-width: 250px;
      display: flex;
      flex-direction: column;
    }

    .form-group.full-width {
      flex: 100%;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: #2c3e50;
      font-size: 1rem;
      min-height: 3.1em;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 15px;
      border: 2px solid #e9ecef;
      border-radius: 8px;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: #fff;
      box-sizing: border-box;
      height: 48px;
    }
    
    .form-group textarea {
      height: auto;
      min-height: 100px;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #2980b9;
      box-shadow: 0 0 0 3px rgba(41,128,185,0.1);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 100px;
    }

    .checkbox-group {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 20px 0;
    }

    .checkbox-group input[type="checkbox"] {
      width: auto;
      margin: 0;
    }

    .bank-details {
      background: linear-gradient(135deg, #2c3e50, #34495e);
      color: white;
      padding: 25px;
      border-radius: 10px;
      margin-top: 30px;
    }

    .bank-details h4 {
      color: #fff;
      margin-bottom: 15px;
      font-size: 1.4rem;
      font-family: Arial, sans-serif;
      text-align: center;
    }

    .bank-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .bank-item {
      background: rgba(255,255,255,0.1);
      padding: 10px 15px;
      border-radius: 5px;
    }

    .bank-label {
      font-size: 0.9rem;
      opacity: 0.8;
      margin-bottom: 5px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .bank-value {
      font-weight: 600;
      font-size: 1.1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      letter-spacing: 0.5px;
    }

    .submit-button {
      background: linear-gradient(135deg, #27ae60, #229954);
      color: white;
      padding: 15px 40px;
      border: none;
      border-radius: 25px;
      font-size: 1.2rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      width: 100%;
      margin-top: 20px;
    }

    .submit-button:hover {
      background: linear-gradient(135deg, #229954, #1e8449);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(39,174,96,0.4);
    }

    @media (max-width: 768px) {
      .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
      }
      
      .modal-header {
        padding: 20px 25px;
      }
      
      .modal-header h2 {
        font-size: 2rem;
      }
      
      .modal-body {
        padding: 25px 20px;
      }
      
      .form-section {
        padding: 20px;
      }
      
      .form-row {
        flex-direction: column;
        gap: 15px;
      }
      
      .form-group {
        min-width: auto;
      }
      
      .bank-info {
        grid-template-columns: 1fr;
      }

      .airport-pricing {
        flex-direction: column;
        align-items: center;
        gap: 30px;
      }
      
      .pricing-card {
        min-width: auto;
        width: 100%;
        max-width: 350px;
      }
      
      .pricing-amount {
        font-size: 3.5rem;
      }
      
      .transfers-airport h3 {
        font-size: 2.5rem;
        letter-spacing: 3px;
      }
      
      .contacts-section {
        padding: 30px 20px;
      }
      
      .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
      }
    }

    /* Registration Section */
    .registration {
      padding: 110px 20px;
      background: linear-gradient(180deg, #f8f9fc 0%, #f5f8ff 48%, #ffffff 100%);
      position: relative;
      overflow: hidden;
    }

    .registration::before,
    .registration::after {
      display: none;
    }

    .registration .container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .registration .section-title {
      font-family: 'Alexandria', sans-serif;
      font-size: 3.15rem;
      font-weight: 700;
      background: linear-gradient(90deg, #10214a 0%, #2250e3 55%, #ff8c3a 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 40px;
      letter-spacing: 6px;
      text-transform: uppercase;
      text-align: center;
    }

    .registration-content.reg-redesign {
      max-width: 1120px;
      margin: 0 auto;
    }

    .reg-layout {
      display: grid;
      grid-template-columns: minmax(280px, 360px) 1fr;
      gap: 28px;
      align-items: start;
    }

    .reg-hero-card {
      background: linear-gradient(155deg, #0e1f48 0%, #162f73 62%, #2049ad 100%);
      color: #ffffff;
      border-radius: 26px;
      padding: 34px 30px;
      box-shadow: 0 30px 55px rgba(14, 31, 72, 0.28);
      position: sticky;
      top: 96px;
    }

    .reg-hero-badge {
      display: inline-block;
      font-size: 0.78rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.28);
      margin-bottom: 18px;
    }

    .reg-hero-title {
      font-size: 2rem;
      line-height: 1.12;
      margin-bottom: 8px;
      font-weight: 700;
    }

    .reg-hero-subtitle {
      font-size: 1rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.84);
      margin: 0 0 22px;
    }

    .reg-price-pill {
      display: inline-flex;
      align-items: baseline;
      gap: 10px;
      background: linear-gradient(120deg, #ffd581 0%, #ffb14e 100%);
      color: #10214a;
      border-radius: 18px;
      padding: 10px 16px;
      margin-bottom: 20px;
      box-shadow: 0 12px 20px rgba(255, 177, 78, 0.35);
    }

    .reg-price-currency {
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .reg-price-value {
      font-size: 2.8rem;
      font-weight: 800;
      line-height: 1;
    }

    .reg-hero-note {
      font-size: 1rem;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.9);
      margin: 0 0 22px;
    }

    .reg-quick-facts {
      display: grid;
      gap: 12px;
    }

    .reg-fact {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.95rem;
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.9);
      padding-top: 2px;
    }

    .reg-fact i {
      color: #ffc56e;
      margin-top: 2px;
      font-size: 1rem;
    }

    .reg-details {
      display: grid;
      gap: 20px;
    }

    .reg-panel {
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(16, 33, 74, 0.12);
      box-shadow: 0 18px 32px rgba(18, 27, 56, 0.08);
    }

    .reg-panel-bank {
      padding: 30px;
      background: linear-gradient(145deg, #ffffff 0%, #f6f8ff 100%);
    }

    .reg-panel-title {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #0f265a;
      font-size: 1.35rem;
      margin: 0 0 20px;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    .reg-panel-title i {
      color: #2250e3;
      font-size: 1.3rem;
    }

    .reg-bank-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .reg-bank-item {
      background: #ffffff;
      border: 1px solid #dbe4ff;
      border-radius: 14px;
      padding: 14px 15px;
    }

    .reg-bank-label {
      font-size: 0.76rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #5f6f9a;
      margin-bottom: 7px;
      font-weight: 600;
    }

    .reg-bank-value {
      font-size: 1rem;
      font-weight: 600;
      color: #10214a;
      font-family: 'Courier New', monospace;
      word-break: break-all;
    }

    .reg-panel-notes {
      padding: 22px;
      display: grid;
      gap: 12px;
      background: linear-gradient(145deg, #ffffff 0%, #f6f8fc 100%);
    }

    .reg-note {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      border-radius: 14px;
      padding: 14px 15px;
      border: 1px solid;
    }

    .reg-note i {
      font-size: 1.1rem;
      margin-top: 4px;
      flex-shrink: 0;
    }

    .reg-note p {
      margin: 0;
      font-size: 0.98rem;
      line-height: 1.55;
      color: #1f2f55;
    }

    .reg-note a {
      color: inherit;
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .reg-note-email {
      border-color: #bdd7ff;
      background: #edf4ff;
    }

    .reg-note-email i {
      color: #2250e3;
    }

    .reg-note-warning {
      border-color: #ffccb6;
      background: #fff1ea;
    }

    .reg-note-warning i {
      color: #d9480f;
    }

    .reg-note-info {
      border-color: #c6ece4;
      background: #ecfaf6;
    }

    .reg-note-info i {
      color: #0f8a73;
    }

    @media (max-width: 980px) {
      .reg-layout {
        grid-template-columns: 1fr;
      }

      .reg-hero-card {
        position: static;
        top: auto;
      }

      .reg-bank-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .registration {
        padding: 80px 16px;
      }

      .registration .section-title {
        font-size: 2.2rem;
        letter-spacing: 3px;
        margin-bottom: 26px;
      }

      .reg-hero-card {
        border-radius: 22px;
        padding: 26px 22px;
      }

      .reg-hero-title {
        font-size: 1.7rem;
      }

      .reg-price-value {
        font-size: 2.25rem;
      }

      .reg-panel-bank,
      .reg-panel-notes {
        padding: 20px;
      }

      .reg-note {
        padding: 13px;
      }
    }

    @media (max-width: 480px) {
      .registration .section-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
      }

      .reg-hero-card {
        padding: 22px 18px;
      }

      .reg-hero-title {
        font-size: 1.45rem;
      }

      .reg-hero-note,
      .reg-fact,
      .reg-note p {
        font-size: 0.93rem;
      }

      .reg-panel-title {
        font-size: 1.1rem;
      }

      .reg-price-value {
        font-size: 2.05rem;
      }

      .reg-bank-value {
        font-size: 0.93rem;
      }
    }

    /* Swimming Pool Section */
    .swimming-pool {
      padding: 80px 20px;
      background: #f5f7fb;
      position: relative;
      overflow: hidden;
    }

    .swimming-pool::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: #2250e3;
    }

    .swimming-pool .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .swimming-pool .section-title {
      font-family: 'Alexandria', sans-serif;
      font-size: 3rem;
      font-weight: 600;
      /* font-style: italic; */
      background: linear-gradient(180deg, #23272e 0%, #1a1a1a 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 28px;
      letter-spacing: 5px;
      text-transform: uppercase;
      /*text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
      filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));*/
      text-align: center;
    }

    .swimming-pool .section-subtitle {
      font-size: 1.15rem;
      font-weight: 500;
      text-align: center;
      margin-bottom: 30px;
      color: #4c5a74;
    }

    .pool-content {
      background: white;
      border-radius: 14px;
      padding: 34px;
      border: 1px solid #dce4f2;
      box-shadow: 0 6px 20px rgba(16, 33, 74, 0.07);
    }

    .pool-intro {
      margin-bottom: 30px;
      background: #f8fbff;
      border: 1px solid #dde8fb;
      border-radius: 10px;
      padding: 14px 16px;
    }

    .pool-intro p {
      font-size: 1rem;
      line-height: 1.65;
      color: #2a3a5e;
      margin-bottom: 0;
      text-align: left;
    }

    .schedule-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }

    .schedule-card {
      background: #ffffff;
      border-radius: 12px;
      padding: 25px;
      border: 1px solid #d5deee;
      transition: all 0.3s ease;
    }

    .schedule-card.pool-25-card {
      border-top: 3px solid #0f8f8f;
    }

    .schedule-card.pool-50-card {
      border-top: 3px solid #2250e3;
    }

    .schedule-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 18px rgba(34, 80, 227, 0.12);
    }

    .schedule-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: #1c2e57;
      margin-bottom: 16px;
      text-align: center;
      padding-bottom: 10px;
      border-bottom: 1px solid #dce3f2;
    }

    .schedule-table {
      width: 100%;
    }

    .schedule-day-group {
      margin-bottom: 12px;
      border: 1px solid #dfe7f4;
      border-radius: 10px;
      overflow: hidden;
      background: #fbfcff;
    }

    .schedule-day-date {
      padding: 10px 14px;
      font-size: 0.95rem;
      font-weight: 700;
      color: #1b2f5e;
      background: #ecf2ff;
      border-bottom: 1px solid #d8e2f5;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .schedule-slot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 14px;
      border-top: 1px solid #edf1f8;
      gap: 16px;
    }

    .schedule-slot:first-of-type {
      border-top: 0;
    }

    .slot-time {
      color: #253a67;
      font-weight: 600;
      font-size: 0.97rem;
    }

    .slot-lanes {
      color: #4c5f86;
      font-weight: 600;
      font-size: 0.9rem;
      background: #f0f5ff;
      border: 1px solid #d6e2fb;
      border-radius: 999px;
      padding: 4px 10px;
      white-space: nowrap;
    }

    .schedule-day-group-empty .slot-time {
      color: #6f7b94;
      font-style: italic;
    }

    .schedule-header {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 15px;
      padding: 12px;
      background: #1f3c90;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .schedule-header .schedule-col {
      font-weight: 700;
      color: white;
      text-align: center;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .schedule-row {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 15px;
      padding: 12px;
      background: #f7f9fd;
      border-radius: 8px;
      margin-bottom: 8px;
      transition: all 0.3s ease;
      border: 1px solid #e1e7f4;
    }

    .schedule-row:hover {
      background: #edf3ff;
      transform: none;
    }

    .schedule-row .schedule-col {
      text-align: center;
      color: #1f2f55;
      font-size: 1rem;
      font-weight: 500;
    }

    .schedule-row-empty {
      background: #f2f4f8;
      color: #7a859d;
    }

    .pool-notice {
      background: #fff7de;
      border-left: 4px solid #ffc107;
      padding: 18px 20px;
      border-radius: 10px;
      margin-bottom: 18px;
      margin-left: 0 !important;
    }

    .pool-notice p {
      font-size: 1rem;
      line-height: 1.65;
      color: #856404;
      margin: 0;
      font-weight: 500;
      text-align: left;
    }

    .additional-info {
      background: #e9f6fb;
      border-left: 4px solid #17a2b8;
      padding: 18px 20px;
      border-radius: 10px;
      margin-left: 0 !important;
    }

    .info-title {
      font-size: 1.15rem;
      font-weight: 600;
      color: #0c5460;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .additional-info p {
      font-size: 1rem;
      line-height: 1.65;
      color: #0c5460;
      margin: 0;
      text-align: left;
    }

    @media (max-width: 768px) {
      .swimming-pool {
        padding: 60px 15px;
      }

      .swimming-pool .section-title {
        font-size: 2rem;
      }

      .swimming-pool .section-subtitle {
        font-size: 1.2rem;
      }

      .pool-content {
        padding: 25px 20px;
      }

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

      .schedule-card {
        padding: 20px;
      }

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

      .schedule-day-date {
        font-size: 0.88rem;
      }

      .schedule-slot {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }

      .slot-lanes {
        font-size: 0.85rem;
      }

      .schedule-header,
      .schedule-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px;
      }

      .schedule-header .schedule-col,
      .schedule-row .schedule-col {
        font-size: 0.9rem;
      }

      .schedule-row {
        text-align: left;
      }

      .schedule-row .schedule-col::before {
        content: attr(data-label);
        font-weight: 700;
        margin-right: 10px;
      }

      .pool-intro p,
      .pool-notice p,
      .additional-info p {
        font-size: 1rem;
        text-align: left;
      }

      .info-title {
        font-size: 1.2rem;
      }
    }

    @media (max-width: 480px) {
      .swimming-pool .section-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
      }

      .swimming-pool .section-subtitle {
        font-size: 1rem;
      }

      .pool-content {
        padding: 20px 15px;
      }

      .schedule-header .schedule-col,
      .schedule-row .schedule-col {
        font-size: 0.85rem;
      }
    }
    