    /* Polvo Octávio na section location */
    .octavio-polvo {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 140px;
      height: auto;
      z-index: 10;
      transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
      transform: translateY(40px) scale(0.8);
    }

    .location:hover .octavio-polvo {
      transform: translateY(0) scale(1);
    }

    .location {
      position: relative;
    }
    * { 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: #0098ce;
      transform: translateY(-2px);
    }

    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 50%;
      background-color: #00416a;
      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 {
      background: rgba(0, 65, 106, 0.1);
      color: #0098ce;
      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(0, 65, 106, 0.1);
      color: #0098ce;
      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: #0098ce;
      }

      /* 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 #0098ce;
        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: #0098ce;
      }

      /* 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 */
    .hero {
      position: relative;
      height: 100vh;
      background: url('../images/background-image.jpg') center/cover no-repeat;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: flex-start;
      color: #fff;
      padding: 80px 40px 180px 40px;
    }

    .hero-content {
      z-index: 10;
      position: relative;
      max-width: 650px;
      text-align: left;
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(10px);
      padding: 30px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
      animation: fadeInUp 1s ease-out;
    }

    .hero-countdown {
      margin-bottom: 1.5rem;
      animation: fadeInUp 1s ease-out 0.2s both;
    }

    .hero-countdown .countdown-timer {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .hero-countdown .countdown-item {
      text-align: center;
      background: rgba(255, 255, 255, 0.1);
      padding: 12px 16px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      min-width: 70px;
    }

    .hero-countdown .countdown-number {
      display: block;
      font-size: 3rem;
      font-weight: 700;
      color: #fff;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .hero-countdown .countdown-label {
      display: block;
      font-size: 0.8rem;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 4px;
    }

    .hero-buttons {
      display: none;
      gap: 15px;
      flex-wrap: wrap;
      animation: fadeInUp 1s ease-out 0.4s both;
    }

    .hero-buttons.show {
      display: flex;
    }

    .hero-btn {
      display: inline-block;
      padding: 15px 30px;
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      border: 2px solid transparent;
    }

    .hero-btn.primary {
      background: linear-gradient(135deg, #951c7e, #951c7e);
      color: #fff;
      box-shadow: 0 4px 15px rgba(149, 28, 126, 0.3);
    }

    .hero-btn.primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(170, 32, 145, 0.4);
      background: linear-gradient(135deg, #70155f, #70155f);
    }

    .hero-btn.secondary {
      background: transparent;
      color: #fff;
      border: 2px solid #fff;
    }

    .hero-btn.secondary:hover {
      background: #fff;
      color: #333;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    }

    /* Hero Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @media (max-width: 768px) {
      .hero {
        padding: 80px 20px 160px 20px;
        align-items: center;
        text-align: center;
      }
      
      .hero-content {
        text-align: center;
        max-width: 100%;
        background: rgba(0, 0, 0, 0.4);
        padding: 25px;
      }
      
      .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
      }
      
      .hero-countdown .countdown-timer {
        justify-content: center;
        gap: 15px;
      }
      
      .hero-countdown .countdown-item {
        min-width: 60px;
        padding: 10px 12px;
      }
      
      .hero-countdown .countdown-number {
        font-size: 1.6rem;
      }
      
      .hero-buttons {
        justify-content: center;
        gap: 15px;
      }
      
      .hero-btn {
        padding: 12px 25px;
        font-size: 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .hero {
        padding: 80px 15px 140px 15px;
      }
      
      .hero-content {
        padding: 20px;
        border-radius: 15px;
      }
      
      .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
      }
      
      .hero-countdown .countdown-timer {
        gap: 10px;
      }
      
      .hero-countdown .countdown-item {
        min-width: 55px;
        padding: 8px 10px;
      }
      
      .hero-countdown .countdown-number {
        font-size: 1.4rem;
      }
      
      .hero-countdown .countdown-label {
        font-size: 0.7rem;
      }
      
      .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }
      
      .hero-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
        width: 200px;
        text-align: center;
      }
    }

    /* 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: flex;
      gap: 20px;
      padding: 20px 40px; /* padding igual dos dois lados */
      align-items: center;
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-behavior: smooth;
      position: relative;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none; /* IE 10+ */
    }
    
    /* Para telas muito grandes (4K+), centralizar os sponsors */
    @media (min-width: 2560px) {
      .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-slider::-webkit-scrollbar {
      display: none;
    }

    .sponsor-logo {
      flex: 0 0 340px;
      max-width: 340px;
      height: 240px;
      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 */
    .olympians-teaser {
      background: linear-gradient(135deg, #23272e 0%, #1a1d23 50%, #23272e 100%);
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
    }

    /* Light beam at the top */
    .olympians-teaser .light-beam {
      position: absolute;
      top: 0;
      left: -100%;
      width: 80%;
      height: 3px;
      background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 65, 106, 0) 20%,
        rgba(0, 65, 106, 0.9) 50%,
        rgba(0, 152, 206, 0.7) 55%,
        rgba(0, 65, 106, 0) 80%,
        transparent 100%
      );
      box-shadow: 
        0 0 25px rgba(0, 65, 106, 0.8),
        0 0 50px rgba(0, 65, 106, 0.4),
        0 0 75px rgba(0, 65, 106, 0.2);
      animation: beam-sweep 6s ease-in-out infinite;
      z-index: 10;
    }

    @keyframes beam-sweep {
      0% {
        left: -100%;
        opacity: 0;
      }
      10% {
        opacity: 1;
      }
      45% {
        left: 110%;
        opacity: 1;
      }
      50%, 100% {
        left: 110%;
        opacity: 0;
      }
    }

    /* Light beam at the bottom (reverse direction) */
    .olympians-teaser .light-beam-bottom {
      position: absolute;
      bottom: 0.2%;
      right: -100%;
      width: 80%;
      height: 3px;
      background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 65, 106, 0) 20%,
        rgba(0, 65, 106, 0.9) 50%,
        rgba(0, 152, 206, 0.7) 55%,
        rgba(0, 65, 106, 0) 80%,
        transparent 100%
      );
      box-shadow: 
        0 0 25px rgba(0, 65, 106, 0.8),
        0 0 50px rgba(0, 65, 106, 0.4),
        0 0 75px rgba(0, 65, 106, 0.2);
      animation: beam-sweep-reverse 6s ease-in-out infinite;
      z-index: 10;
    }

    @keyframes beam-sweep-reverse {
      0% {
        right: -100%;
        opacity: 0;
      }
      10% {
        opacity: 1;
      }
      45% {
        right: 110%;
        opacity: 1;
      }
      50%, 100% {
        right: 110%;
        opacity: 0;
      }
    }

    .olympians-teaser::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 50% 50%, rgba(0, 152, 206, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .teaser-content {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
      animation: fadeInUp 1s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .teaser-question {
      color: #ffffff;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 25px;
      line-height: 1.4;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
      animation: fadeInUp 1s ease-out 0.2s both;
    }

    .teaser-answer {
      color: #0098ce;
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 40px;
      font-style: italic;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
      animation: fadeInUp 1s ease-out 0.4s both;
    }

    .teaser-button {
      background: linear-gradient(135deg, #0098ce 0%, #00416a 100%);
      color: #ffffff;
      padding: 18px 45px;
      font-size: 1.2rem;
      font-weight: 600;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.4s ease;
      box-shadow: 0 8px 20px rgba(0, 152, 206, 0.1);
      text-transform: uppercase;
      letter-spacing: 1px;
      animation: fadeInUp 1s ease-out 0.6s both, bounce 2s ease-in-out 1.6s infinite;
      position: relative;
      overflow: hidden;
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-15px);
      }
      60% {
        transform: translateY(-8px);
      }
    }

    .teaser-button::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;
    }

    .teaser-button:hover::before {
      width: 300px;
      height: 300px;
    }

    .teaser-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(0, 152, 206, 0.5);
      animation: fadeInUp 1s ease-out 0.6s both, bounceHover 0.6s ease-in-out infinite;
    }

    @keyframes bounceHover {
      0%, 100% {
        transform: translateY(-3px);
      }
      50% {
        transform: translateY(-8px);
      }
    }

    .teaser-button:active {
      transform: translateY(-1px);
      box-shadow: 0 6px 15px rgba(197, 35, 167, 0.4);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .olympians-teaser {
        padding: 60px 20px;
      }

      .teaser-question {
        font-size: 1.8rem;
        margin-bottom: 20px;
      }

      .teaser-answer {
        font-size: 1.2rem;
        margin-bottom: 30px;
      }

      .teaser-button {
        padding: 15px 35px;
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .olympians-teaser {
        padding: 50px 15px;
      }

      .teaser-question {
        font-size: 1.5rem;
        line-height: 1.3;
      }

      .teaser-answer {
        font-size: 1.1rem;
      }

      .teaser-button {
        padding: 14px 30px;
        font-size: 0.95rem;
      }
    }

    /* Events Section */
    .events {
      background: #f8f9fa;
      color: #333;
      padding: 80px 20px;
      text-align: center;
    }
    
    .events 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: 30px;
      letter-spacing: 10px;
      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));*/
    }
    
    @media (max-width: 1024px) {
      .events {
        padding: 60px 15px;
      }
      
      .events h2 {
        font-size: 2.5rem;
        letter-spacing: 8px;
      }
    }
    
    @media (max-width: 768px) {
      .events {
        padding: 40px 10px;
      }
      
      .events h2 {
        font-size: 2rem;
        letter-spacing: 6px;
      }
    }
    
    @media (max-width: 480px) {
      .events h2 {
        font-size: 1.5rem;
        letter-spacing: 4px;
      }
    }
    
    .events-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      gap: 40px;
      flex-wrap: wrap;
    }
    
    @media (max-width: 1024px) {
      .events-content {
        gap: 30px;
        max-width: 1000px;
      }
    }
    
    @media (max-width: 768px) {
      .events-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        max-width: 600px;
      }
    }
    
    @media (max-width: 480px) {
      .events-content {
        gap: 15px;
        max-width: 100%;
      }
    }
    
    .events-image {
      flex: 1;
      min-width: 300px;
    }
    
    .events-image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      transition: all 0.2s ease;
    }

    .events-image img:hover{
      transform: scale(1.05);
    }
    
    @media (max-width: 768px) {
      .events-image {
        min-width: auto;
        width: 100%;
      }
    }
    
    @media (max-width: 480px) {
      .events-image img {
        border-radius: 8px;
      }
    }
    
    .events-info {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }
    
    .events-subtitle {
      font-size: 2rem;
      font-weight: bold;
      color: #34495e;
      margin-bottom: 20px;
      line-height: 1.3;
      text-transform: uppercase;
    }
    
    @media (max-width: 1024px) {
      .events-subtitle {
        font-size: 1.8rem;
      }
    }
    
    @media (max-width: 768px) {
      .events-info {
        min-width: auto;
        width: 100%;
        text-align: center;
      }
      
      .events-subtitle {
        font-size: 1.6rem;
      }
    }
    
    @media (max-width: 480px) {
      .events-subtitle {
        font-size: 1.4rem;
      }
    }
    
    .countdown {
      background: #ecf0f1;
      padding: 20px;
      border-radius: 10px;
      margin: 20px 0;
    }
    
    .countdown-timer {
      display: flex;
      justify-content: space-around;
      margin-bottom: 15px;
    }
    
    .countdown-item {
      text-align: center;
    }
    
    .countdown-number {
      font-size: 2.5rem;
      font-weight: bold;
      color: #2c3e50;
      display: block;
    }
    
    .countdown-label {
      font-size: 0.9rem;
      color: #7f8c8d;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    @media (max-width: 768px) {
      .countdown-timer {
        flex-wrap: wrap;
        gap: 10px;
      }
      
      .countdown-number {
        font-size: 2rem;
      }
      
      .countdown-label {
        font-size: 0.8rem;
      }
    }
    
    @media (max-width: 480px) {
      .countdown-number {
        font-size: 1.5rem;
      }
      
      .countdown-label {
        font-size: 0.7rem;
      }
    }
    
    .events-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;
      margin: 5px;
    }
    
    .events-button:hover {
      background: linear-gradient(135deg, #1f5fa6, #1a527a);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(31,95,166,0.5);
    }
    
    @media (max-width: 768px) {
      .events-button {
        padding: 12px 25px;
        font-size: 1rem;
        margin: 8px;
      }
    }
    
    @media (max-width: 480px) {
      .events-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        width: 100%;
        max-width: 300px;
      }
    }
    
    @media (max-width: 768px) {
      .events-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        max-width: 600px;
      }
      .events-info {
        min-width: auto;
        width: 100%;
        text-align: center;
      }
    }
    
    @media (max-width: 480px) {
      .events {
        padding: 40px 10px;
      }
    }

    /* Events Timeline Styles */
    .events-timeline {
      max-width: 1400px;
      margin: 50px auto 0;
      padding: 0 20px;
    }

    .event-day-section {
      margin-bottom: 60px;
    }

    .event-day-header {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 40px;
      padding-bottom: 20px;
      border-bottom: 3px solid #e0e0e0;
    }

    .event-day-circle {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #2980b9, #1f5fa6);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(41, 128, 185, 0.3);
    }

    .event-day-circle i {
      color: white;
      font-size: 24px;
    }

    .event-day-title {
      font-family: 'Alexandria', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: #23272e;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .event-card {
      display: flex;
      gap: 30px;
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .event-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
      border-color: #c523a7be;
    }

    .event-image {
      flex: 0 0 400px;
      position: relative;
      overflow: hidden;
    }

    .event-image img {
      width: 100%;
      height: 100%;
      transition: transform 0.5s ease;
    }

    .event-card:hover .event-image img {
      transform: scale(1.1);
    }

    .event-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      background: linear-gradient(135deg, #c523a7, #8e1a7e);
      color: white;
      padding: 8px 20px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .event-badge.elite {
      background: linear-gradient(135deg, #c523a7, #8e1a7e);
    }

    .event-details {
      flex: 1;
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .event-time {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #c523a7;
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .event-time i {
      font-size: 1.5rem;
    }

    .event-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: #23272e;
      margin-bottom: 15px;
      line-height: 1.3;
    }

    .event-description {
      font-size: 1.1rem;
      color: #666;
      margin-bottom: 25px;
      line-height: 1.6;
    }

    .event-actions {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .event-button {
      background: linear-gradient(135deg, #9e1d8d, #5a0f4b);
      color: white;
      padding: 12px 25px;
      border: none;
      border-radius: 25px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .event-button:hover {
      background: linear-gradient(135deg, #9e1d8d, #500d43);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(194, 36, 173, 0.4);
    }

    .event-button i {
      font-size: 1rem;
    }

    /* Responsive Events Timeline */
    @media (max-width: 1200px) {
      .event-image {
        flex: 0 0 350px;
      }
      
      .event-title {
        font-size: 1.6rem;
      }
    }

    @media (max-width: 1024px) {
      .event-day-title {
        font-size: 1.7rem;
      }
      
      .event-image {
        flex: 0 0 300px;
      }
      
      .event-details {
        padding: 25px;
      }
      
      .event-title {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 768px) {
      .events-timeline {
        padding: 0 15px;
      }
      
      .event-day-header {
        gap: 15px;
        margin-bottom: 30px;
      }
      
      .event-day-circle {
        width: 50px;
        height: 50px;
      }
      
      .event-day-circle i {
        font-size: 20px;
      }
      
      .event-day-title {
        font-size: 1.4rem;
      }
      
      .event-card {
        flex-direction: column;
        gap: 0;
      }
      
      .event-image {
        flex: none;
        height: 250px;
      }
      
      .event-details {
        padding: 20px;
      }
      
      .event-time {
        font-size: 1.1rem;
      }
      
      .event-title {
        font-size: 1.3rem;
      }
      
      .event-description {
        font-size: 1rem;
      }
      
      .event-actions {
        gap: 10px;
      }
      
      .event-button {
        padding: 10px 20px;
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .event-day-section {
        margin-bottom: 40px;
      }
      
      .event-day-header {
        gap: 10px;
        margin-bottom: 20px;
        padding-bottom: 15px;
      }
      
      .event-day-circle {
        width: 40px;
        height: 40px;
      }
      
      .event-day-circle i {
        font-size: 16px;
      }
      
      .event-day-title {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
      }
      
      .event-card {
        margin-bottom: 20px;
      }
      
      .event-image {
        height: 200px;
      }
      
      .event-badge {
        top: 10px;
        left: 10px;
        padding: 6px 15px;
        font-size: 0.8rem;
      }
      
      .event-details {
        padding: 15px;
      }
      
      .event-time {
        font-size: 1rem;
        margin-bottom: 10px;
      }
      
      .event-time i {
        font-size: 1.2rem;
      }
      
      .event-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
      }
      
      .event-description {
        font-size: 0.95rem;
        margin-bottom: 15px;
      }
      
      .event-actions {
        flex-direction: column;
        gap: 8px;
      }
      
      .event-button {
        width: 100%;
        justify-content: center;
        padding: 10px 15px;
      }
    }

    /* Wave transition between events and location */
    .wave-transition {
      position: relative;
      width: 100%;
      height: 80px;
      background: #f8f9fa;
      overflow: hidden;
    }

    .wave-transition svg {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    
    @media (max-width: 768px) {
      .wave-transition {
        height: 60px;
      }
    }
    
    @media (max-width: 480px) {
      .wave-transition {
        height: 40px;
      }
    }

    /* 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;
      }
    }


    /* Location Section */
    .location {
      background: linear-gradient(182deg, #00416a 10%, #0098ce 100%);
      color: #fff;
      padding: 80px 20px;
      text-align: center;
      position: relative;
    }
    
    .location h2 {
      font-family: 'Alexandria', sans-serif;
      font-size: 3rem;
      font-weight: 600;
      font-style: italic;
      color: #fff;
      margin-bottom: 30px;
      letter-spacing: 8px;
      text-transform: uppercase;
      /*text-shadow: 0 0 20px rgba(255,255,255,0.3);*/
    }
    
    @media (max-width: 1024px) {
      .location {
        padding: 60px 15px;
      }
      
      .location h2 {
        font-size: 2.5rem;
        letter-spacing: 6px;
      }
    }
    
    @media (max-width: 768px) {
      .location {
        padding: 40px 10px;
      }
      
      .location h2 {
        font-size: 2rem;
        letter-spacing: 4px;
      }
    }
    
    @media (max-width: 480px) {
      .location h2 {
        font-size: 1.5rem;
        letter-spacing: 2px;
      }
    }
    
    .location-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .location-main {
      display: flex;
      align-items: center;
      gap: 40px;
      margin-bottom: 40px;
    }
    
    @media (max-width: 1024px) {
      .location-content {
        max-width: 1000px;
        padding: 0 15px;
      }
      
      .location-main {
        gap: 30px;
      }
    }
    
    @media (max-width: 768px) {
      .location-content {
        max-width: 600px;
        padding: 0 10px;
      }
      
      .location-main {
        flex-direction: column;
        gap: 20px;
      }
    }
    
    @media (max-width: 480px) {
      .location-content {
        padding: 0 5px;
      }
    }
    
    .location-description {
      flex: 1;
      text-align: left;
      padding-right: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .location-text {
      font-size: 1.2rem;
      line-height: 1.6;
      color: #e8f4fd;
      margin-bottom: 30px;
    }
    
    @media (max-width: 1024px) {
      .location-text {
        font-size: 1.1rem;
      }
    }
    
    @media (max-width: 768px) {
      .location-description {
        text-align: center;
        padding-right: 0;
        align-items: center;
      }
      
      .location-text {
        font-size: 1rem;
        margin-bottom: 20px;
      }
    }
    
    @media (max-width: 480px) {
      .location-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
      }
    }
    
    .location-button {
      background: linear-gradient(135deg, #9e1d8d, #5a0f4b);
      color: white;
      padding: 18px 40px;
      border: none;
      border-radius: 30px;
      font-size: 1.2rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 5px 15px rgba(35,39,46,0.3);
      align-self: center;
    }
    
    .location-button:hover {
      background: linear-gradient(135deg, #751669, #500d43);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(197, 35, 167, 0.4);
    }
    
    @media (max-width: 768px) {
      .location-button {
        padding: 15px 30px;
        font-size: 1.1rem;
        letter-spacing: 1px;
      }
    }
    
    @media (max-width: 480px) {
      .location-button {
        padding: 12px 25px;
        font-size: 1rem;
        letter-spacing: 0.5px;
        width: 100%;
        max-width: 300px;
      }
    }
    
    .location-gallery {
      flex: 1;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    
    @media (max-width: 1024px) {
      .location-gallery {
        gap: 15px;
      }
    }
    
    @media (max-width: 768px) {
      .location-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
      }
    }
    
    @media (max-width: 480px) {
      .location-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
      }
    }
    
    .location-image {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.3);
      transition: all 0.3s ease;
      background: #000;
    }
    
    .location-image:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    }
    
    .location-image img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.3s ease;
    }
    
    .location-image:hover img {
      transform: scale(1.05);
    }
    
    @media (max-width: 768px) {
      .location-image img {
        height: 200px;
      }
    }
    
    @media (max-width: 480px) {
      .location-image img {
        height: 180px;
      }
    }
    
    .location-image-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.8));
      color: white;
      padding: 30px 20px 20px;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }
    
    .location-image:hover .location-image-overlay {
      transform: translateY(0);
    }
    
    .location-image-caption {
      font-size: 1.1rem;
      font-weight: 600;
      text-align: center;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    }
    
    .location-button-container {
      text-align: center;
      margin-top: 40px;
      display: none; /* Hide the old button container */
    }
    
    @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, #00416a, #0098ce);
      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 10px rgba(0, 65, 106, 0.3);
    }
    
    .contact-icon-circle:hover {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 12px 30px rgba(0, 65, 106,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));*/
    }
    
    @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: #0098ce;
      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;
    }

    .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: #0098ce;
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0, 65, 106, 0.2);
    }

    .card-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #00416a, #0098ce);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 4px 15px rgba(0, 65, 106, 0.3);
    }

    .card-icon i {
      font-size: 1.8rem;
      color: white;
    }

    .bike-icon {
      background: linear-gradient(135deg, #27ae60, #229954);
    }

    .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: #0098ce;
      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: #0098ce;
      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, #00416a, #0098ce);
      color: white;
      box-shadow: 0 5px 20px rgba(0, 65, 106, 0.4);
    }

    .primary-hotel-btn:hover {
      background: linear-gradient(135deg, #00416a, #0098ce);
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(0, 65, 106, 0.5);
    }

    .secondary-hotel-btn {
      background: white;
      color: #0098ce;
      border-color: #0098ce;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .secondary-hotel-btn:hover {
      background: #0098ce;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(0, 65, 106, 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 #9e1d8d;
    }
    
    .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);
    }
    
    .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, #9e1d8d, #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(197, 35, 167,0.3);
    }
    
    .transfer-form-button:hover {
      background: linear-gradient(135deg, #751669, #500d43);
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(197, 35, 167, 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, #9e1d8d, #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, #9e1d8d, #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: 100px 20px;
      background: #ffffff;
      position: relative;
      overflow: hidden;
    }

    .registration::before {
      display: none;
    }

    .registration .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .registration .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: 30px;
      letter-spacing: 10px;
      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;
    }

    .registration .section-subtitle {
      font-size: 1.3rem;
      font-weight: 500;
      text-align: center;
      margin-bottom: 60px;
      color: #666;
      line-height: 1.6;
    }

    .registration-content {
      background: #f8f9fa;
      border-radius: 0;
      padding: 60px 50px;
      box-shadow: none;
      border: 1px solid #e0e0e0;
    }

    .registration-intro {
      text-align: center;
      margin-bottom: 40px;
    }

    .intro-text {
      font-size: 1.3rem;
      line-height: 1.8;
      color: #23272e;
      font-weight: 500;
    }

    .registration-pricing {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-bottom: 50px;
      flex-wrap: wrap;
    }

    .price-card {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      border-radius: 20px;
      padding: 40px;
      min-width: 250px;
      text-align: center;
      transition: all 0.3s ease;
      border: 3px solid transparent;
      position: relative;
      overflow: hidden;
    }

    .price-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      transition: height 0.3s ease;
    }

    .price-card:hover::before {
      height: 100%;
      opacity: 0.1;
    }

    .price-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(197, 35, 167, 0.3);
      border-color: #c523a7;
    }

    .price-icon {
      font-size: 3rem;
      color: #c523a7;
      margin-bottom: 20px;
    }

    .price-label {
      font-size: 1.5rem;
      font-weight: 600;
      color: #23272e;
      margin-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .price-amount {
      font-size: 3.5rem;
      font-weight: 700;
      color: #c523a7;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .registration-info-box {
      background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
      border-left: 5px solid #ffc107;
      padding: 25px;
      border-radius: 15px;
      margin-bottom: 35px;
      margin-left: -3% !important;
    }

    .info-box-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: #856404;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .info-box-title i {
      font-size: 1.8rem;
    }

    .registration-info-box p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #856404;
      margin: 0;
    }

    .registration-info-box strong {
      font-weight: 700;
      text-decoration: underline;
    }

    .bank-details-section {
      background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
      border-radius: 15px;
      padding: 30px;
      margin-bottom: 35px;
      border: 2px solid #4caf50;
      margin-left: -3% !important;
    }

    .bank-section-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: #2e7d32;
      margin-bottom: 25px;
      display: flex;
      align-items: center;
      gap: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .bank-section-title i {
      font-size: 1.8rem;
    }

    .bank-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .bank-detail-item {
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .bank-detail-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    }

    .bank-detail-label {
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 8px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .bank-detail-value {
      font-size: 1.2rem;
      font-weight: 700;
      color: #2e7d32;
      font-family: 'Courier New', monospace;
      word-break: break-all;
    }

    .registration-notice {
      padding: 25px;
      border-radius: 15px;
      margin-bottom: 20px;
      display: flex;
      align-items: flex-start;
      gap: 15px;
      border-left: 5px solid;
      margin-left: -3% !important;
    }

    .registration-notice i {
      font-size: 1.8rem;
      margin-top: 3px;
      flex-shrink: 0;
    }

    .registration-notice p {
      font-size: 1.1rem;
      line-height: 1.8;
      margin: 0;
    }

    .registration-notice a {
      color: inherit;
      font-weight: 700;
      text-decoration: underline;
      transition: opacity 0.3s ease;
    }

    .registration-notice a:hover {
      opacity: 0.8;
    }

    .registration-notice.important {
      background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
      border-left-color: #2196f3;
      color: #0d47a1;
    }

    .registration-notice.warning {
      background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
      border-left-color: #f44336;
      color: #b71c1c;
    }

    .registration-notice.info {
      background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
      border-left-color: #009688;
      color: #004d40;
    }

    @media (max-width: 768px) {
      .registration {
        padding: 60px 15px;
      }

      .registration .section-title {
        font-size: 2rem;
      }

      .registration .section-subtitle {
        font-size: 1.2rem;
      }

      .registration-content {
        padding: 30px 20px;
      }

      .intro-text {
        font-size: 1.1rem;
      }

      .registration-pricing {
        flex-direction: column;
        align-items: center;
        gap: 25px;
      }

      .price-card {
        width: 100%;
        max-width: 350px;
      }

      .bank-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .bank-detail-value {
        font-size: 1rem;
      }

      .registration-notice {
        padding: 20px;
        flex-direction: column;
        text-align: center;
      }

      .registration-notice i {
        margin-top: 0;
      }

      .registration-notice p {
        font-size: 1rem;
      }

      .info-box-title,
      .bank-section-title {
        font-size: 1.2rem;
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .registration .section-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
      }

      .registration .section-subtitle {
        font-size: 1rem;
      }

      .registration-content {
        padding: 25px 15px;
      }

      .price-amount {
        font-size: 2.5rem;
      }

      .price-label {
        font-size: 1.2rem;
      }

      .price-icon {
        font-size: 2.5rem;
      }
    }

    /* Swimming Pool Section */
    .swimming-pool {
      padding: 80px 20px;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      position: relative;
      overflow: hidden;
    }

    .swimming-pool::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, #0098ce, #00416a, #0098ce);
    }

    .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: 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));*/
      text-align: center;
    }

    .swimming-pool .section-subtitle {
      font-size: 1.5rem;
      font-weight: 500;
      text-align: center;
      margin-bottom: 40px;
      color: #0098ce;
    }

    .pool-content {
      background: white;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }

    .pool-intro {
      margin-bottom: 40px;
    }

    .pool-intro p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #333;
      margin-bottom: 20px;
      text-align: justify;
    }

    .schedule-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }

    .schedule-card {
      background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
      border-radius: 15px;
      padding: 25px;
      border: 2px solid #0098ce;
      transition: all 0.3s ease;
    }

    .schedule-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 65, 106, 0.2);
    }

    .schedule-title {
      font-size: 1.4rem;
      font-weight: 600;
      color: #23272e;
      margin-bottom: 20px;
      text-align: center;
      padding-bottom: 15px;
      border-bottom: 2px solid #00416a;
    }

    .schedule-table {
      width: 100%;
    }

    .schedule-header {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 15px;
      padding: 15px;
      background: linear-gradient(135deg, #0098ce, #00416a);
      border-radius: 10px;
      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: 15px;
      background: #f8f9fa;
      border-radius: 10px;
      margin-bottom: 10px;
      transition: all 0.3s ease;
    }

    .schedule-row:hover {
      background: #e9ecef;
      transform: translateX(5px);
    }

    .schedule-row .schedule-col {
      text-align: center;
      color: #23272e;
      font-size: 1rem;
      font-weight: 500;
    }

    .pool-notice {
      background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
      border-left: 5px solid #ffc107;
      padding: 25px;
      border-radius: 10px;
      margin-bottom: 30px;
      margin-left: -2% !important;
    }

    .pool-notice p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #856404;
      margin: 0;
      font-weight: 500;
      text-align: justify;
    }

    .additional-info {
      background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
      border-left: 5px solid #17a2b8;
      padding: 25px;
      border-radius: 10px;
      margin-left: -2% !important;
    }

    .info-title {
      font-size: 1.4rem;
      font-weight: 600;
      color: #0c5460;
      margin-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .additional-info p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #0c5460;
      margin: 0;
      text-align: justify;
    }

    @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-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;
      }
    }
    