  :root {
      --navy: #0B1D3A;
      --navy-light: #152E52;
      --green: #118C4F;
      --green-hover: #0E7341;
      --gold: #FFC629;
      --gold-hover: #E5B225;
      --white: #FFFFFF;
      --light-gray: #F4F6F8;
      --text-dark: #333333;
      --text-light: #666666;
      --transition: all 0.3s ease;
      --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.15);
  }


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

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Open Sans', sans-serif;
      color: var(--text-dark);
      line-height: 1.6;
      background-color: var(--light-gray);
      overflow-x: hidden;
  }

  body.no-scroll {
      overflow: hidden;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-family: 'Montserrat', sans-serif;
      color: var(--navy);
      margin-bottom: 1rem;
  }

  a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
  }

  img {
      max-width: 100%;
      display: block;
  }

  ul {
      list-style: none;
  }

  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .section-title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      position: relative;
      padding-bottom: 15px;
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--gold);
      border-radius: 2px;
  }


  .btn {
      display: inline-block;
      padding: 12px 24px;
      border-radius: 30px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      cursor: pointer;
      border: none;
      text-align: center;
      transition: var(--transition);
      font-size: 1rem;
  }

  .btn-primary {
      background-color: var(--green);
      color: var(--white);
  }

  .btn-primary:hover {
      background-color: var(--green-hover);
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(17, 140, 79, 0.3);
  }

  .btn-secondary {
      background-color: var(--gold);
      color: var(--navy);
  }

  .btn-secondary:hover {
      background-color: var(--gold-hover);
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(255, 198, 41, 0.3);
  }

  .btn-outline {
      background-color: transparent;
      border: 2px solid var(--white);
      color: var(--white);
  }

  .btn-outline:hover {
      background-color: var(--white);
      color: var(--navy);
  }


  header {
      background-color: var(--navy);
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

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

  .logo {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--gold);
  }

  .logo span {
      color: var(--white);
  }

  .nav-links {
      display: flex;
      align-items: center;
      gap: 25px;
  }

  .nav-links a {
      color: var(--white);
      font-weight: 600;
      font-size: 0.95rem;
  }

  .nav-links a:hover {
      color: var(--gold);
  }

  .auth-buttons {
      display: flex;
      gap: 15px;
  }

  .mobile-menu-btn {
      display: none;
      color: var(--white);
      font-size: 1.5rem;
      cursor: pointer;
      background: none;
      border: none;
  }


  .hero {
      height: 100vh;
      min-height: 600px;
      background: linear-gradient(rgba(11, 29, 58, 0.8), rgba(11, 29, 58, 0.8)), url('../img/hero.jpeg') center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 20px;
      margin-top: 70px;
  }

  .hero-content {
      max-width: 800px;
  }

  .hero h1 {
      color: var(--white);
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .hero p {
      color: var(--white);
      font-size: 1.25rem;
      margin-bottom: 2.5rem;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }

  .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 2rem;
  }

  .rg-note {
      color: var(--gold);
      font-size: 0.9rem;
      font-weight: 600;
      background: rgba(0, 0, 0, 0.4);
      display: inline-block;
      padding: 8px 16px;
      border-radius: 20px;
  }


  .services {
      padding: 80px 0;
      background-color: var(--white);
  }

  .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .service-card {
      background-color: var(--light-gray);
      padding: 40px 30px;
      border-radius: 12px;
      text-align: center;
      transition: var(--transition);
      border-bottom: 4px solid transparent;
  }

  .service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
      border-bottom: 4px solid var(--green);
  }

  .service-card i {
      font-size: 3rem;
      color: var(--navy);
      margin-bottom: 20px;
      transition: var(--transition);
  }

  .service-card:hover i {
      color: var(--green);
      transform: scale(1.1);
  }

  .service-card h3 {
      font-size: 1.25rem;
      margin-bottom: 15px;
  }

  .service-card p {
      color: var(--text-light);
      font-size: 0.95rem;
  }


  .about {
      padding: 80px 0;
  }

  .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
  }

  .about-card {
      background-color: var(--white);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
  }

  .about-card:hover {
      box-shadow: var(--shadow-hover);
  }

  .about-img {
      height: 200px;
      width: 100%;
      object-fit: cover;
  }

  .about-content {
      padding: 25px;
  }

  .about-content h3 {
      font-size: 1.25rem;
      margin-bottom: 15px;
  }

  .about-content p {
      color: var(--text-light);
      font-size: 0.95rem;
  }


  .top-sports {
      padding: 80px 0;
      background-color: var(--navy);
      color: var(--white);
  }

  .top-sports .section-title {
      color: var(--white);
  }

  .sports-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
  }

  .sport-card {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      height: 250px;
      cursor: pointer;
  }

  .sport-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
  }

  .sport-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(11, 29, 58, 0.9), rgba(11, 29, 58, 0.2));
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px;
      transition: var(--transition);
  }

  .sport-card:hover img {
      transform: scale(1.1);
  }

  .sport-card:hover .sport-overlay {
      background: linear-gradient(to top, rgba(17, 140, 79, 0.9), rgba(11, 29, 58, 0.3));
  }

  .sport-overlay h3 {
      color: var(--white);
      margin-bottom: 5px;
      font-size: 1.25rem;
  }

  .sport-overlay p {
      color: #ddd;
      font-size: 0.85rem;
      opacity: 0.9;
  }


  .testimonials {
      padding: 80px 0;
      background-color: var(--white);
  }

  .test-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
  }

  .test-card {
      background: var(--light-gray);
      padding: 30px;
      border-radius: 12px;
      position: relative;
      box-shadow: var(--shadow);
  }

  .test-card::before {
      content: '\f10d';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 2rem;
      color: rgba(11, 29, 58, 0.1);
  }

  .stars {
      color: var(--gold);
      margin-bottom: 15px;
  }

  .test-text {
      font-style: italic;
      color: var(--text-light);
      margin-bottom: 20px;
      font-size: 0.95rem;
  }

  .test-user {
      display: flex;
      align-items: center;
      gap: 15px;
  }

  .user-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: var(--navy-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: bold;
  }

  .user-info h4 {
      margin: 0;
      font-size: 1rem;
  }


  .faq {
      padding: 80px 0;
  }

  .faq-container {
      max-width: 800px;
      margin: 0 auto;
  }

  .faq-item {
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      background: var(--white);
  }

  .faq-question {
      width: 100%;
      text-align: left;
      padding: 20px;
      background: var(--white);
      border: none;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--navy);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: var(--transition);
  }

  .faq-question:hover {
      color: var(--green);
  }

  .faq-question i {
      color: var(--gold);
      transition: transform 0.3s ease;
  }

  .faq-question.active i {
      transform: rotate(180deg);
  }

  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      background: #FAFAFA;
  }

  .faq-answer p {
      padding: 0 20px 20px;
      color: var(--text-light);
  }



  .compliance-box {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(0, 0, 0, 0.2);
      padding: 10px 15px;
      border-radius: 8px;
      margin-top: 15px;
      display: inline-flex;
  }

  .eighteen-plus {
      background-color: #E02020;
      color: white;
      font-weight: bold;
      padding: 3px 8px;
      border-radius: 4px;
      font-size: 0.8rem;
  }


  .modal,
  .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(11, 29, 58, 0.85);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      opacity: 0;
      pointer-events: none;
      transition: var(--transition);
  }

  .modal.active,
  .overlay.active {
      opacity: 1;
      pointer-events: auto;
  }

  .modal-content,
  .overlay-content {
      background: var(--white);
      width: 100%;
      max-width: 450px;
      border-radius: 12px;
      padding: 40px;
      position: relative;
      transform: translateY(-20px);
      transition: var(--transition);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }

  .modal.active .modal-content,
  .overlay.active .overlay-content {
      transform: translateY(0);
  }

  .close-modal {
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 1.5rem;
      color: var(--text-light);
      cursor: pointer;
      background: none;
      border: none;
  }

  .close-modal:hover {
      color: var(--navy);
  }

  .modal-header {
      text-align: center;
      margin-bottom: 25px;
  }

  .form-group {
      margin-bottom: 20px;
  }

  .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--navy);
  }

  .form-control {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-family: inherit;
      font-size: 1rem;
      transition: var(--transition);
  }

  .form-control:focus {
      outline: none;
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(17, 140, 79, 0.1);
  }

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

  .checkbox-group input {
      margin-top: 5px;
  }

  .checkbox-group label {
      font-size: 0.85rem;
      color: var(--text-light);
      line-height: 1.4;
  }

  .btn-block {
      width: 100%;
  }


  .age-overlay-content {
      text-align: center;
      max-width: 500px;
  }

  .age-icon {
      font-size: 4rem;
      color: #E02020;
      margin-bottom: 20px;
  }

  .age-buttons {
      display: flex;
      gap: 15px;
      margin-top: 30px;
      justify-content: center;
  }


  .cookie-banner {
      position: fixed;
      bottom: -100%;
      left: 0;
      width: 100%;
      background-color: var(--navy);
      color: var(--white);
      padding: 20px;
      z-index: 1000;
      box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
      transition: bottom 0.5s ease;
  }

  .cookie-banner.active {
      bottom: 0;
  }

  .cookie-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
  }

  .cookie-text p {
      font-size: 0.9rem;
      margin: 0;
  }

  .cookie-buttons {
      display: flex;
      gap: 15px;
  }


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

  @media (max-width: 768px) {

      .nav-links,
      .auth-buttons {
          display: none;
      }

      .mobile-menu-btn {
          display: block;
      }


      .nav-active .nav-links {
          display: flex;
          flex-direction: column;
          position: absolute;
          top: 70px;
          left: 0;
          width: 100%;
          background: var(--navy);
          padding: 20px 0;
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
      }

      .nav-active .auth-buttons {
          display: flex;
          flex-direction: column;
          position: absolute;
          top: 280px;
          left: 0;
          width: 100%;
          background: var(--navy);
          padding: 0 20px 20px;
      }

      .hero h1 {
          font-size: 2.2rem;
      }

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

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

      .cookie-content {
          flex-direction: column;
          text-align: center;
      }

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

  footer {
      width: 100%;
  }

  .bg-dark {
      background: #111827;
  }

  .text-white {
      color: #fff;
  }

  .text-muted {
      color: rgba(255, 255, 255, 0.65);
  }

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

  .py-5 {
      padding-top: 3rem;
      padding-bottom: 3rem;
  }

  .container {
      width: 100%;
      max-width: 1140px;
      margin: 0 auto;
      padding-left: 15px;
      padding-right: 15px;
      box-sizing: border-box;
  }


  h3,
  p,
  a,
  span,
  address {
      margin-top: 0;
  }

  h3 {
      font-size: 1.75rem;
      line-height: 1.3;
      font-weight: 700;
  }

  p {
      font-size: 1rem;
      line-height: 1.7;
  }

  .small {
      font-size: 0.875rem;
      line-height: 1.6;
  }


  .mb-2 {
      margin-bottom: 0.5rem;
  }

  .mb-3 {
      margin-bottom: 1rem;
  }

  .mb-4 {
      margin-bottom: 1.5rem;
  }

  .me-3 {
      margin-right: 1rem;
  }

  .m-1 {
      margin: 0.25rem;
  }


  .badge {
      display: inline-block;
      padding: 0.55rem 0.9rem;
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 600;
      line-height: 1;
      letter-spacing: 0.03em;
      text-transform: uppercase;
  }

  .bg-secondary {
      background: #4b5563;
      color: #fff;
  }


  .d-flex {
      display: flex;
  }

  .flex-wrap {
      flex-wrap: wrap;
  }

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

  .align-items-center {
      align-items: center;
  }

  .gap-4 {
      gap: 1.5rem;
  }


  a {
      color: inherit;
      text-decoration: none;
      transition: opacity 0.25s ease, color 0.25s ease;
      cursor: pointer;
  }

  a:hover {
      opacity: 0.85;
  }

  .text-decoration-underline {
      text-decoration: underline;
  }


  .img-blog a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.4rem 0.7rem;
      background: rgba(255, 255, 255, 0.04);
      border-radius: 10px;
  }

  .img-blog img {
      display: block;
      max-height: 40px;
      width: auto;
      object-fit: contain;
  }


  nav a {
      display: inline-block;
      margin-bottom: 0.5rem;
      font-weight: 500;
  }


  address {
      font-style: normal;
      line-height: 1.7;
  }

  address a {
      text-decoration: underline;
  }


  @media (max-width: 768px) {
      .container {
          padding-left: 20px;
          padding-right: 20px;
      }

      h3 {
          font-size: 1.4rem;
      }

      p {
          font-size: 0.95rem;
      }

      .gap-4 {
          gap: 1rem;
      }

      nav a,
      .mb-3.small a {
          display: inline-block;
          margin-right: 0.75rem;
          margin-bottom: 0.5rem;
      }
  }

  .page-banner {
      background: linear-gradient(rgba(11, 29, 58, 0.8), rgba(11, 29, 58, 0.9)), url('../img/hero.jpeg') center/cover;
      padding: 80px 20px;
      text-align: center;
      color: var(--white);
  }

  .page-banner h1 {
      color: var(--white);
      font-size: 3rem;
      margin-bottom: 10px;
  }

  .page-banner p {
      font-size: 1.1rem;
      opacity: 0.9;
  }

  .privacy-container {
      max-width: 900px;
      margin: 60px auto;
      background: var(--white);
      padding: 50px;
      border-radius: 12px;
      box-shadow: var(--shadow);
  }

  .privacy-container h2 {
      font-size: 1.8rem;
      margin-top: 40px;
      margin-bottom: 20px;
      border-bottom: 2px solid var(--light-gray);
      padding-bottom: 10px;
  }

  .privacy-container h2:first-of-type {
      margin-top: 0;
  }

  .privacy-container h3 {
      font-size: 1.3rem;
      margin-top: 30px;
      margin-bottom: 15px;
      color: var(--navy-light);
  }

  .privacy-container p {
      margin-bottom: 15px;
      color: var(--text-light);
      line-height: 1.8;
  }

  .privacy-container ul {
      margin-bottom: 20px;
      padding-left: 20px;
  }

  .privacy-container ul li {
      margin-bottom: 10px;
      color: var(--text-light);
      position: relative;
      padding-left: 15px;
  }

  .privacy-container ul li::before {
      content: '\f111';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      font-size: 0.4rem;
      color: var(--gold);
      position: absolute;
      left: 0;
      top: 10px;
  }

  .last-updated {
      font-style: italic;
      color: var(--text-light);
      margin-bottom: 30px !important;
      display: block;
  }

  .compliance-box {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(0, 0, 0, 0.2);
      padding: 10px 15px;
      border-radius: 8px;
      margin-top: 15px;
      display: inline-flex;
  }

  .eighteen-plus {
      background-color: #E02020;
      color: white;
      font-weight: bold;
      padding: 3px 8px;
      border-radius: 4px;
      font-size: 0.8rem;
  }

  @media (max-width: 992px) {
      .privacy-container {
          padding: 40px 30px;
          margin: 40px 20px;
      }
  }

  @media (max-width: 768px) {

      .page-banner h1 {
          font-size: 2.2rem;
      }

      .privacy-container {
          padding: 30px 20px;
          margin: 30px 15px;
      }
  }

  .legal-container {
      max-width: 900px;
      margin: 60px auto;
      background: var(--white);
      padding: 50px;
      border-radius: 12px;
      box-shadow: var(--shadow);
  }

  .legal-container h2 {
      font-size: 1.8rem;
      margin-top: 40px;
      margin-bottom: 20px;
      border-bottom: 2px solid var(--light-gray);
      padding-bottom: 10px;
  }

  .legal-container h2:first-of-type {
      margin-top: 0;
  }

  .legal-container h3 {
      font-size: 1.3rem;
      margin-top: 30px;
      margin-bottom: 15px;
      color: var(--navy-light);
  }

  .legal-container p {
      margin-bottom: 15px;
      color: var(--text-light);
      line-height: 1.8;
  }

  .legal-container ul,
  .legal-container ol {
      margin-bottom: 20px;
      padding-left: 20px;
  }

  .legal-container ul li {
      margin-bottom: 10px;
      color: var(--text-light);
      position: relative;
      padding-left: 15px;
  }

  .legal-container ul li::before {
      content: '\f111';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      font-size: 0.4rem;
      color: var(--gold);
      position: absolute;
      left: 0;
      top: 10px;
  }

  .legal-container ol li {
      margin-bottom: 10px;
      color: var(--text-light);
      padding-left: 5px;
  }

  .legal-container ol li::marker {
      color: var(--navy);
      font-weight: bold;
  }

  .last-updated {
      font-style: italic;
      color: var(--text-light);
      margin-bottom: 30px !important;
      display: block;
  }

  .important-box {
      background-color: rgba(255, 198, 41, 0.1);
      border-left: 4px solid var(--gold);
      padding: 20px;
      margin: 25px 0;
      border-radius: 0 8px 8px 0;
  }

  .important-box p {
      margin: 0;
      color: var(--navy);
      font-weight: 600;
  }

  .cookie-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
      margin-bottom: 30px;
  }

  .cookie-table th,
  .cookie-table td {
      border: 1px solid #ddd;
      padding: 12px 15px;
      text-align: left;
      font-size: 0.95rem;
  }

  .cookie-table th {
      background-color: var(--navy-light);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
  }

  .cookie-table tr:nth-child(even) {
      background-color: var(--light-gray);
  }

  .thanks-banner {
      background: linear-gradient(rgba(11, 29, 58, 0.85), rgba(11, 29, 58, 0.95)), url('../img/hero.jpeg') center/cover;
      padding: 100px 20px;
      text-align: center;
      color: var(--white);
  }

  .thanks-icon {
      font-size: 4.5rem;
      color: var(--green);
      margin-bottom: 20px;
      animation: scaleUp 0.5s ease-out;
  }

  @keyframes scaleUp {
      0% {
          transform: scale(0);
          opacity: 0;
      }

      100% {
          transform: scale(1);
          opacity: 1;
      }
  }

  .thanks-banner h1 {
      color: var(--white);
      font-size: 3.5rem;
      margin-bottom: 15px;
  }

  .thanks-banner p {
      font-size: 1.25rem;
      max-width: 700px;
      margin: 0 auto 30px;
      opacity: 0.9;
  }

  .thanks-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 40px;
      margin: 60px auto;
  }

  .main-info-box {
      background: var(--white);
      padding: 40px;
      border-radius: 12px;
      box-shadow: var(--shadow);
  }

  .main-info-box h2 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      border-bottom: 2px solid var(--light-gray);
      padding-bottom: 10px;
  }

  .main-info-box h3 {
      font-size: 1.3rem;
      margin-top: 30px;
      margin-bottom: 15px;
      color: var(--navy-light);
  }

  .main-info-box p {
      color: var(--text-light);
      margin-bottom: 15px;
      line-height: 1.7;
  }

  .step-list {
      margin: 20px 0;
  }

  .step-list li {
      position: relative;
      padding-left: 45px;
      margin-bottom: 25px;
  }

  .step-number {
      position: absolute;
      left: 0;
      top: 0;
      width: 32px;
      height: 32px;
      background-color: var(--navy);
      color: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 0.9rem;
  }

  .step-text h4 {
      margin-bottom: 5px;
      font-size: 1.1rem;
  }

  .sidebar-box {
      background: var(--navy-light);
      color: var(--white);
      padding: 30px;
      border-radius: 12px;
      box-shadow: var(--shadow);
      height: fit-content;
  }

  .sidebar-box h3 {
      color: var(--gold);
      font-size: 1.4rem;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .sidebar-box p {
      font-size: 0.95rem;
      color: #ddd;
      margin-bottom: 20px;
      line-height: 1.6;
  }

  .help-line {
      background: rgba(0, 0, 0, 0.2);
      padding: 15px;
      border-radius: 8px;
      border-left: 4px solid var(--gold);
      font-weight: bold;
      font-size: 1rem;
      color: var(--white);
      text-align: center;
  }