  :root {
      --bg-primary: #020617;
      --bg-secondary: #0f172a;
      --bg-card: #1e293b;
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --accent: #38bdf8;
      --accent-hover: #0ea5e9;
      --border: #334155;
      --success: #10b981;
      --warning: #f59e0b;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  body {
      background-color: var(--bg-primary);
      color: var(--text-main);
      line-height: 1.6;
      overflow-x: hidden;
  }

  a {
      text-decoration: none;
      color: inherit;
      transition: 0.3s;
  }

  ul {
      list-style: none;
  }

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

  section {
      padding: 80px 0;
      border-bottom: 1px solid var(--border);
  }

  .section-header {
      text-align: center;
      margin-bottom: 60px;
  }

  .section-header h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: var(--text-main);
  }

  .section-header p {
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.1rem;
  }

  header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: rgba(2, 6, 23, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      border-bottom: 1px solid var(--border);
      padding: 15px 0;
  }

  .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-main);
      letter-spacing: 1px;
  }

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

  nav ul {
      display: flex;
      gap: 20px;
  }

  nav ul li a {
      font-size: 0.95rem;
      color: var(--text-muted);
  }

  nav ul li a:hover {
      color: var(--accent);
  }

  .hero {
      padding: 160px 0 100px;
      background: linear-gradient(135deg, #020617 0%, #1e293b 100%);
      position: relative;
      overflow: hidden;
  }

  .hero-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
  }

  .hero-text {
      flex: 1;
  }

  .hero-text h1 {
      font-size: 3.5rem;
      line-height: 1.2;
      margin-bottom: 20px;
  }

  .hero-text h1 span {
      color: var(--accent);
  }

  .hero-text p {
      font-size: 1.2rem;
      color: var(--text-muted);
      margin-bottom: 30px;
      max-width: 600px;
  }

  .btn {
      display: inline-block;
      padding: 12px 30px;
      background-color: var(--accent);
      color: #fff;
      border-radius: 5px;
      font-weight: 600;
      border: none;
      cursor: pointer;
  }

  .btn:hover {
      background-color: var(--accent-hover);
  }

  .btn-outline {
      background-color: transparent;
      border: 2px solid var(--accent);
      color: var(--accent);
      margin-left: 15px;
  }

  .btn-outline:hover {
      background-color: var(--accent);
      color: #fff;
  }

  .hero-stats {
      background-color: var(--bg-card);
      padding: 30px;
      border-radius: 10px;
      border: 1px solid var(--border);
      min-width: 300px;
  }

  .stat-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
  }

  .stat-item:last-child {
      margin-bottom: 0;
  }

  .stat-item i {
      font-size: 1.5rem;
      color: var(--accent);
      margin-right: 15px;
      width: 30px;
      text-align: center;
  }

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

  .stat-text p {
      font-size: 0.9rem;
      color: var(--text-muted);
  }

  .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .about-principles {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 30px;
  }

  .principle-card {
      background-color: var(--bg-secondary);
      padding: 20px;
      border-radius: 8px;
      text-align: center;
  }

  .principle-card i {
      font-size: 2rem;
      color: var(--accent);
      margin-bottom: 15px;
  }

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

  .service-card,
  .feature-card {
      background-color: var(--bg-card);
      padding: 30px;
      border-radius: 10px;
      border: 1px solid var(--border);
      transition: transform 0.3s;
  }

  .service-card:hover,
  .feature-card:hover {
      transform: translateY(-5px);
      border-color: var(--accent);
  }

  .service-card i,
  .feature-card i {
      font-size: 2rem;
      color: var(--accent);
      margin-bottom: 20px;
  }

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

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

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

  .bookmaker-card {
      background-color: var(--bg-card);
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--border);
  }

  .bm-header {
      padding: 20px;
      background-color: var(--bg-secondary);
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .bm-logo {
      background-color: #cbd5e1;
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #334155;
      font-weight: bold;
  }

  .bm-logo img {
      height: 80px;
  }

  .bm-rating {
      background-color: var(--warning);
      color: #fff;
      padding: 5px 10px;
      border-radius: 20px;
      font-weight: bold;
      font-size: 0.9rem;
  }

  .bm-body {
      padding: 25px;
  }

  .bm-status {
      color: var(--success);
      font-size: 0.85rem;
      margin-bottom: 15px;
      display: block;
  }

  .bm-offer {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 20px;
      border-bottom: 1px solid var(--border);
      padding-bottom: 15px;
  }

  .bm-features {
      margin-bottom: 25px;
  }

  .bm-features li {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 8px;
  }

  .bm-features li i {
      color: var(--accent);
      margin-right: 10px;
  }

  .bm-btn {
      display: block;
      width: 100%;
      text-align: center;
      background-color: var(--accent);
      color: #fff;
      padding: 12px;
      border-radius: 5px;
      font-weight: 600;
  }

  .bm-btn:hover {
      background-color: var(--accent-hover);
  }

  .timeline {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
  }

  .timeline-item {
      display: flex;
      gap: 20px;
      margin-bottom: 40px;
  }

  .timeline-icon {
      flex-shrink: 0;
      width: 60px;
      height: 60px;
      background-color: var(--bg-card);
      border: 2px solid var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--accent);
  }

  .timeline-content h3 {
      margin-bottom: 10px;
  }

  .timeline-content p {
      color: var(--text-muted);
  }

  .faq-grid {
      display: grid;
      gap: 20px;
      max-width: 800px;
      margin: 0 auto;
  }

  .faq-item {
      background-color: var(--bg-card);
      padding: 25px;
      border-radius: 8px;
      border: 1px solid var(--border);
  }

  .faq-item h4 {
      margin-bottom: 10px;
      color: var(--text-main);
  }

  .faq-item p {
      color: var(--text-muted);
      font-size: 0.95rem;
  }

  .responsible-box {
      background-color: rgba(245, 158, 11, 0.1);
      border: 1px solid var(--warning);
      padding: 40px;
      border-radius: 10px;
      text-align: center;
  }

  .responsible-box h2 {
      color: var(--warning);
      margin-bottom: 20px;
  }

  .age-limit {
      display: inline-block;
      background-color: var(--bg-primary);
      border: 1px solid var(--warning);
      color: var(--warning);
      padding: 5px 15px;
      border-radius: 20px;
      font-weight: bold;
      margin-top: 20px;
  }

  .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
  }

  .contact-info h3 {
      margin-bottom: 20px;
      font-size: 1.5rem;
  }

  .contact-details p {
      margin-bottom: 15px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
  }

  .contact-details p i {
      width: 25px;
      color: var(--accent);
      margin-right: 10px;
  }

  .map-placeholder {
      width: 100%;
      height: 200px;
      background-color: var(--bg-card);
      border: 1px dashed var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 30px;
      color: var(--text-muted);
  }

  .contact-form {
      background-color: var(--bg-card);
      padding: 40px;
      border-radius: 10px;
  }

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

  .form-group label {
      display: block;
      margin-bottom: 8px;
      font-size: 0.9rem;
  }

  .form-control {
      width: 100%;
      padding: 12px;
      background-color: var(--bg-primary);
      border: 1px solid var(--border);
      border-radius: 5px;
      color: var(--text-main);
      outline: none;
  }

  .form-control:focus {
      border-color: var(--accent);
  }


  .copyright {
      text-align: center;
      font-size: 0.8rem;
      color: #64748b;
      padding-top: 20px;
      border-top: 1px solid var(--border);
  }

  .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background-color: var(--accent);
      color: #fff;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      z-index: 900;
      transition: 0.3s;
  }

  .back-to-top:hover {
      transform: translateY(-5px);
  }

  .fade-in-section {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  .fade-in-section.is-visible {
      opacity: 1;
      transform: none;
  }

  @media (max-width: 992px) {
      .hero-content {
          flex-direction: column;
          text-align: center;
      }

      .hero-text p {
          margin: 0 auto 30px;
      }

      .contact-wrapper {
          grid-template-columns: 1fr;
      }
  }

  @media (max-width: 768px) {
      .nav-container {
          flex-direction: column;
          gap: 15px;
      }

      nav ul {
          flex-wrap: wrap;
          justify-content: center;
          gap: 15px;
      }

      .section-header h2 {
          font-size: 2rem;
      }

      .hero-text h1 {
          font-size: 2.5rem;
      }
  }

  .ke-footer {
      background: #080808;
      color: #e5e7eb;
      padding: 32px 16px 20px;
      font-size: 0.9rem;
  }

  .ke-footer-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      align-items: flex-start;
  }

  .ke-footer-left,
  .ke-footer-center {
      flex: 1 1 260px;
  }

  .ke-footer-logo {
      font-size: 24px;
      font-weight: 700;

  }

  .ke-footer-tagline {
      max-width: 260px;
      line-height: 1.4;
      color: #9ca3af;
  }

  .ke-footer-center p {
      margin-bottom: 10px;
      line-height: 1.5;
  }

  .ke-footer-links {
      flex: 0 0 200px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-left: auto;
  }

  .ke-footer-links a {
      color: #e5e7eb;
      text-decoration: none;
      font-size: 0.9rem;
  }

  .ke-footer-links a:hover {
      color: #fbbf24;
  }


  .ke-footer-regulators {
      max-width: 1180px;
      margin: 18px auto 0;
      padding-top: 14px;
      border-top: 1px solid #1f2937;
      display: flex;
      flex-direction: column;
      gap: 8px;
  }

  .reg-label {
      font-weight: 600;
      color: #d1d5db;
  }

  .reg-logos {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
  }

  .reg-logos a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 4px 10px;
      border-radius: 10px;
      background: rgba(15, 23, 42, 0.75);
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  }

  .reg-logos a:hover {
      transform: translateY(-1px);
      background: rgba(37, 99, 235, 0.9);
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  }

  .reg-logos img {
      height: 80px;
  }


  .ke-footer-age {
      max-width: 1180px;
      margin: 10px auto 0;
      display: flex;
      justify-content: flex-end;
  }

  .age-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: 2px solid #f97316;
      font-weight: 700;
      font-size: 0.9rem;
      color: #f97316;
  }


  .ke-footer-bottom {
      max-width: 1180px;
      margin: 10px auto 0;
      text-align: center;
      color: #6b7280;
      font-size: 0.8rem;
      padding-top: 8px;
  }


  @media (max-width: 900px) {
      .ke-footer-inner {
          flex-direction: column;
          align-items: flex-start;
      }

      .ke-footer-links {
          margin-left: 0;
      }

      .ke-footer-age {
          justify-content: flex-start;
      }
  }

  @media (max-width: 600px) {
      .ke-footer-regulators {
          align-items: flex-start;
      }

      .reg-logos {
          justify-content: flex-start;
      }

      .ke-footer-bottom {
          margin-top: 14px;
      }

      .ke-footer-left,
      .ke-footer-center {
          flex: auto;
      }

      .ke-footer-links {
          flex: auto;
      }
  }

  body.no-scroll {
      overflow: hidden;
  }

  .age-gate-overlay {
      position: fixed;
      inset: 0;
      background: rgba(2, 6, 23, 0.95);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
      z-index: 9999;
  }

  .age-gate-overlay.is-visible {
      opacity: 1;
      pointer-events: auto;
  }

  .age-gate-modal {
      background: #020617;
      border-radius: 16px;
      padding: 24px 20px;
      max-width: 420px;
      width: 90%;
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
      color: #e5e7eb;
      text-align: center;
      border: 1px solid rgba(56, 189, 248, 0.35);
  }

  .age-gate-modal h2 {
      margin-bottom: 12px;
      font-size: 1.4rem;
      color: #38bdf8;
  }

  .age-gate-modal p {
      margin-bottom: 16px;
      font-size: 0.95rem;
      line-height: 1.5;
      color: #cbd5f5;
  }

  .age-gate-note {
      font-size: 0.8rem;
      color: #9ca3af;
      margin-bottom: 18px;
  }

  .age-gate-buttons {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
  }

  .btn-age-primary,
  .btn-age-secondary {
      border: none;
      border-radius: 999px;
      padding: 10px 18px;
      font-size: 0.9rem;
      cursor: pointer;
      font-weight: 600;
      letter-spacing: 0.02em;
  }

  .btn-age-primary {
      background: #38bdf8;
      color: #020617;
  }

  .btn-age-primary:hover {
      filter: brightness(1.05);
  }

  .btn-age-secondary {
      background: transparent;
      color: #e5e7eb;
      border: 1px solid rgba(148, 163, 184, 0.5);
  }

  .btn-age-secondary:hover {
      background: rgba(15, 23, 42, 0.9);
  }

  .cookie-banner {
      position: fixed;
      left: 50%;
      bottom: 16px;
      transform: translateX(-50%) translateY(20px);
      background: rgba(2, 6, 23, 0.98);
      border-radius: 16px;
      padding: 16px 18px;
      max-width: 960px;
      width: calc(100% - 24px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
      display: none;
      z-index: 9998;
      border: 1px solid rgba(56, 189, 248, 0.3);
  }

  .cookie-banner.is-visible {
      display: block;
      transform: translateX(-50%) translateY(0);
  }

  .cookie-banner-content {
      display: flex;
      gap: 16px;
      align-items: center;
      justify-content: space-between;
  }

  .cookie-text {
      flex: 1 1 auto;
      min-width: 0;
  }

  .cookie-text h3 {
      margin: 0 0 6px;
      font-size: 0.95rem;
      color: #e5e7eb;
  }

  .cookie-text p {
      margin: 0;
      font-size: 0.8rem;
      color: #9ca3af;
      line-height: 1.5;
  }

  .cookie-text a {
      color: #38bdf8;
      text-decoration: none;
  }

  .cookie-text a:hover {
      text-decoration: underline;
  }

  .cookie-actions {
      flex: 0 0 auto;
      display: flex;
      gap: 8px;
      align-items: stretch;
      justify-content: flex-end;
  }

  .cookie-btn,
  .cookie-btn-secondary {
      border-radius: 999px;
      border: none;
      padding: 8px 16px;
      font-size: 0.8rem;
      cursor: pointer;
      font-weight: 600;
      letter-spacing: 0.03em;
      white-space: nowrap;
  }

  .cookie-btn {
      background: #38bdf8;
      color: #020617;
  }

  .cookie-btn:hover {
      filter: brightness(1.05);
  }

  .cookie-btn-secondary {
      background: transparent;
      color: #e5e7eb;
      border: 1px solid rgba(148, 163, 184, 0.6);
  }

  .cookie-btn-secondary:hover {
      background: rgba(15, 23, 42, 0.9);
  }

  .cookie-settings-overlay {
      position: fixed;
      inset: 0;
      background: rgba(2, 6, 23, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
      z-index: 9999;
  }

  .cookie-settings-overlay.is-visible {
      opacity: 1;
      pointer-events: auto;
  }

  .cookie-settings-modal {
      background: #020617;
      border-radius: 16px;
      max-width: 520px;
      width: 92%;
      padding: 22px 20px;
      color: #e5e7eb;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75);
      border: 1px solid rgba(56, 189, 248, 0.35);
  }

  .cookie-settings-modal h3 {
      margin: 0 0 8px;
      font-size: 1.1rem;
      color: #38bdf8;
  }

  .cookie-settings-modal p {
      margin: 0 0 14px;
      font-size: 0.85rem;
      color: #9ca3af;
  }

  .cookie-options {
      margin-bottom: 18px;
  }

  .cookie-option {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 10px;
      font-size: 0.85rem;
      color: #e5e7eb;
  }

  .cookie-option input[type="checkbox"] {
      margin-top: 2px;
      accent-color: #38bdf8;
  }

  .cookie-option span {
      font-size: 0.78rem;
      color: #9ca3af;
      display: block;
      margin-top: 2px;
  }

  .cookie-settings-buttons {
      display: flex;
      justify-content: flex-end;
      gap: 8px;
  }

  .cookie-overlay-footer {
      font-size: 0.75rem;
      color: #6b7280;
      margin-top: 8px;
  }

  @media (max-width: 640px) {
      .cookie-banner-content {
          flex-direction: column;
          align-items: flex-start;
      }

      .cookie-actions {
          width: 100%;
          justify-content: flex-start;
          flex-wrap: wrap;
      }
  }

  .page {
      padding-top: 120px;
      padding-bottom: 80px;
  }

  .page .policy-header {
      margin-bottom: 50px;
      border-bottom: 1px solid var(--border);
      padding-bottom: 30px;
  }

  .page .policy-header h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
  }

  .page .policy-header .date {
      color: var(--text-muted);
      font-size: 0.9rem;
  }

  .page .content-section {
      margin-bottom: 40px;
  }

  .page .content-section h2 {
      font-size: 1.8rem;
      color: var(--text-main);
      margin-bottom: 20px;
      padding-left: 15px;
      border-left: 4px solid var(--accent);
  }

  .page .content-section h3 {
      font-size: 1.3rem;
      color: var(--text-main);
      margin: 25px 0 15px;
  }

  .page .content-section p {
      color: var(--text-muted);
      margin-bottom: 15px;
      text-align: justify;
  }

  .page .content-section ul {
      list-style: none;
      margin-bottom: 20px;
      padding-left: 20px;
  }

  .page .content-section ul li {
      color: var(--text-muted);
      margin-bottom: 10px;
      position: relative;
      padding-left: 25px;
  }

  .page .content-section ul li::before {
      content: "\f058";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      left: 0;
      color: var(--accent);
      top: 2px;
  }

  .page .content-section ol li {
      color: var(--text-muted);
      margin-bottom: 10px;
      padding-left: 5px;
  }

  @media (max-width: 768px) {
      .page .policy-header h1 {
          font-size: 2rem;
      }

      .page .content-section h2 {
          font-size: 1.5rem;
      }
  }

  .highlight-box {
      background-color: rgba(245, 158, 11, 0.1);
      border: 1px solid var(--warning);
      padding: 20px;
      border-radius: 8px;
      margin: 20px 0;
  }

  .highlight-box p {
      color: var(--text-main);
      margin-bottom: 0;
      font-weight: 500;
  }

  .cookie-table {
      width: 100%;
      border-collapse: collapse;
      margin: 25px 0;
      background-color: var(--bg-card);
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--border);
  }

  .cookie-table th,
  .cookie-table td {
      padding: 15px 20px;
      text-align: left;
      border-bottom: 1px solid var(--border);
  }

  .cookie-table th {
      background-color: var(--bg-secondary);
      color: var(--text-main);
      font-weight: 600;
  }

  .cookie-table td {
      color: var(--text-muted);
      font-size: 0.95rem;
      vertical-align: top;
  }

  .cookie-table tr:last-child td {
      border-bottom: none;
  }

  .badge-essential {
      display: inline-block;
      padding: 4px 8px;
      border-radius: 4px;
      background-color: rgba(56, 189, 248, 0.1);
      color: var(--accent);
      font-size: 0.8rem;
      font-weight: bold;
  }

  .badge-analytics {
      display: inline-block;
      padding: 4px 8px;
      border-radius: 4px;
      background-color: rgba(16, 185, 129, 0.1);
      color: var(--success);
      font-size: 0.8rem;
      font-weight: bold;
  }

  @media (max-width: 768px) {

      .cookie-table {
          display: block;
          overflow-x: auto;
      }
  }

  .tips-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
  }

  .tip-card {
      background-color: var(--bg-card);
      padding: 25px;
      border-radius: 8px;
      border: 1px solid var(--border);
      border-top: 3px solid var(--accent);
  }

  .tip-card h3 {
      font-size: 1.2rem;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .tip-card p {
      font-size: 0.95rem;
      margin-bottom: 0;
  }

  .warning-box {
      background-color: rgba(239, 68, 68, 0.1);
      border: 1px solid var(--danger);
      padding: 30px;
      border-radius: 8px;
      margin: 30px 0;
  }

  .warning-box h3 {
      color: var(--danger);
      margin-bottom: 20px;
      font-size: 1.4rem;
  }

  .checklist {
      list-style: none;
  }

  .checklist li {
      margin-bottom: 12px;
      position: relative;
      padding-left: 30px;
      color: #cbd5e1;
  }

  .checklist li::before {
      content: "\f071";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      left: 0;
      color: var(--danger);
  }

  .help-resources {
      background-color: var(--bg-secondary);
      padding: 30px;
      border-radius: 8px;
      margin-top: 20px;
  }

  .resource-link {
      display: block;
      margin-bottom: 10px;
      font-weight: 600;
      color: var(--accent);
  }

  .resource-link i {
      margin-right: 8px;
  }