  :root {
      --primary: #0f172a;
      --secondary: #cca43b;
      --secondary-hover: #b08d2f;
      --text-dark: #1e293b;
      --text-light: #64748b;
      --white: #ffffff;
      --bg-light: #f8fafc;
      --border-radius: 16px;
      --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --container-width: 1200px;
      --font-main: 'Inter', sans-serif;
      --header-height: 80px;
  }

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

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: var(--font-main);
      color: var(--text-dark);
      background-color: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
  }

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

  ul {
      list-style: none;
  }

  img {
      max-width: 100%;
      height: auto;
  }


  .container {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 20px;
  }

  .section {
      padding: 80px 0;
  }

  .bg-light {
      background-color: var(--bg-light);
  }

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

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

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

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

  .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 10px;
  }

  .section-subtext {
      color: var(--text-light);
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto 50px auto;
  }

  .btn {
      display: inline-block;
      padding: 12px 32px;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all 0.3s ease;
      text-align: center;
  }

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

  .btn-primary:hover {
      background-color: var(--secondary-hover);
      transform: translateY(-2px);
  }

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

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


  header {
      background-color: var(--white);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: var(--header-height);
      z-index: 1000;
      display: flex;
      align-items: center;
  }

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

  .logo {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .logo i {
      color: var(--secondary);
  }

  .nav-links {
      display: flex;
      gap: 30px;
  }

  .nav-links a {
      font-weight: 500;
      color: var(--text-dark);
      font-size: 0.95rem;
  }

  .nav-links a:hover,
  .nav-links a.active {
      color: var(--secondary);
  }

  .hamburger {
      display: none;
      cursor: pointer;
      font-size: 1.5rem;
      color: var(--primary);
  }


  .hero {
      padding-top: calc(var(--header-height) + 60px);
      padding-bottom: 100px;

      background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%),
          url('../img/hero.png') center center/cover no-repeat;
      color: var(--white);
      text-align: center;
      position: relative;
  }

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

  .hero p {
      font-size: 1.25rem;
      color: #cbd5e1;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
  }


  .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
  }

  .about-content h2 {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 15px;
  }

  .about-content .subtext {
      color: var(--secondary);
      font-weight: 600;
      margin-bottom: 20px;
      display: block;
  }

  .about-text {
      text-align: justify;
      color: var(--text-dark);
      margin-bottom: 20px;
  }

  .about-image {
      background: var(--bg-light);
      height: 400px;
      border-radius: var(--border-radius);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      color: var(--secondary);
      box-shadow: var(--shadow);
  }


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

  .service-card {
      background: var(--white);
      padding: 30px;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
      transition: 0.3s;
      border-top: 4px solid transparent;
  }

  .service-card:hover {
      transform: translateY(-5px);
      border-top: 4px solid var(--secondary);
  }

  .service-icon {
      font-size: 2rem;
      color: var(--secondary);
      margin-bottom: 20px;
  }

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

  .service-sub {
      font-size: 0.85rem;
      color: var(--secondary);
      font-weight: 600;
      margin-bottom: 15px;
      display: block;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

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


  .steps-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
  }

  .step-card {
      background: var(--white);
      padding: 30px;
      border-radius: var(--border-radius);
      border-left: 5px solid var(--secondary);
  }

  .step-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
  }

  .step-number {
      background: var(--primary);
      color: var(--white);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      margin-right: 15px;
  }

  .step-card h3 {
      font-size: 1.3rem;
      color: var(--primary);
  }

  .step-sub {
      font-size: 0.9rem;
      color: var(--text-light);
      font-style: italic;
      margin-bottom: 15px;
      display: block;
  }

  .step-text {
      font-size: 0.95rem;
      color: var(--text-dark);
      text-align: justify;
  }


  .top-operators {
      display: flex;
      flex-direction: column;
      gap: 30px;
  }

  .operator-card {
      background: var(--white);
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
      padding: 30px;
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: center;
      border: 1px solid #e2e8f0;
      position: relative;
      overflow: hidden;
  }

  .operator-badge {
      position: absolute;
      top: 20px;
      right: -30px;
      background: var(--secondary);
      color: var(--primary);
      padding: 5px 40px;
      transform: rotate(45deg);
      font-weight: bold;
      font-size: 0.8rem;
  }

  .op-logo-col {
      flex: 1;
      min-width: 200px;
      text-align: center;
  }

  .op-info-col {
      flex: 2;
      min-width: 300px;
  }

  .op-contact-col {
      flex: 1.5;
      min-width: 250px;
      background: var(--bg-light);
      padding: 20px;
      border-radius: 12px;
      font-size: 0.9rem;
  }

  .op-rating {
      color: #f59e0b;
      margin: 10px 0;
      font-size: 1.2rem;
  }

  .op-subtext {
      color: var(--text-light);
      font-size: 0.9rem;
      margin-bottom: 15px;
  }

  .bonus-list li {
      margin-bottom: 8px;
      padding-left: 25px;
      position: relative;
      font-weight: 500;
  }

  .bonus-list li::before {
      content: '\f00c';
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      color: var(--secondary);
  }

  .contact-item {
      margin-bottom: 8px;
      display: flex;
      gap: 10px;
  }

  .contact-item i {
      color: var(--primary);
      margin-top: 4px;
  }


  .guides-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
  }

  .guide-card {
      background: var(--white);
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow);
  }

  .guide-img {
      height: 180px;
      background: #cbd5e1;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #64748b;
  }

  .guide-body {
      padding: 20px;
  }

  .guide-body h4 {
      margin-bottom: 10px;
      color: var(--primary);
  }

  .guide-body p {
      font-size: 0.9rem;
      color: var(--text-light);
      margin-bottom: 15px;
  }

  .read-more {
      color: var(--secondary);
      font-weight: 700;
      font-size: 0.9rem;
  }


  .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
  }

  .testi-card {
      background: var(--white);
      padding: 25px;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
      text-align: center;
  }

  .testi-card i {
      font-size: 2rem;
      color: #e2e8f0;
      margin-bottom: 15px;
  }

  .testi-text {
      font-style: italic;
      color: var(--text-dark);
      margin-bottom: 15px;
  }

  .testi-author {
      font-weight: bold;
      color: var(--primary);
  }


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

  .faq-question {
      padding: 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: var(--primary);
  }

  .faq-question:hover {
      background: #f1f5f9;
  }

  .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      background: #fff;
      color: var(--text-light);
  }

  .faq-answer p {
      padding-bottom: 20px;
  }

  .faq-toggle {
      transition: transform 0.3s;
  }

  .faq-item.active .faq-toggle {
      transform: rotate(180deg);
  }

  .faq-item.active .faq-answer {
      max-height: 200px;
  }


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

  .contact-info-box h3 {
      margin-bottom: 20px;
  }

  .contact-details p {
      margin-bottom: 15px;
      font-size: 1.1rem;
  }

  .contact-details i {
      width: 25px;
      color: var(--secondary);
  }

  .contact-form {
      background: var(--white);
      padding: 30px;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
  }

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

  .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
  }

  .form-control {
      width: 100%;
      padding: 12px;
      border: 1px solid #cbd5e1;
      border-radius: 8px;
      font-family: inherit;
  }

  .warning-18 {
      text-align: center;
      padding: 20px;
      background: #334155;
      color: var(--white);
      margin-bottom: 20px;
      border-radius: 8px;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
  }

  .warning-badge {
      background: #ef4444;
      color: white;
      padding: 5px 10px;
      border-radius: 50%;
      font-size: 1.2rem;
  }


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

      .about-grid,
      .contact-section {
          grid-template-columns: 1fr;
      }

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

      .steps-container {
          grid-template-columns: 1fr;
      }

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

      .hamburger {
          display: block;
      }

      .nav-links {
          position: absolute;
          top: var(--header-height);
          left: 0;
          width: 100%;
          background: var(--white);
          flex-direction: column;
          padding: 20px;
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
          display: none;
      }

      .nav-links.active {
          display: flex;
      }
  }

  @media (max-width: 768px) {

      .services-grid,
      .guides-grid,
      .testimonials-grid {
          grid-template-columns: 1fr;
      }

      .operator-card {
          flex-direction: column;
          text-align: center;
      }

      .bonus-list li {
          text-align: left;
      }

      .op-contact-col {
          text-align: left;
          width: 100%;
      }

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

  .sr-footer {
      background: #0b1017;
      color: #f4f4f4;
      font-size: 14px;
      line-height: 1.6;
      padding: 40px 20px 24px;
  }

  .sr-footer a {
      color: #f3cf55;
      text-decoration: none;
  }

  .sr-footer a:hover {
      text-decoration: underline;
  }

  .sr-footer-inner {
      max-width: 1200px;
      margin: 0 auto;
  }

  .sr-footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 32px;
  }

  .sr-footer-brand {
      max-width: 520px;
  }

  .sr-footer-logo {
      display: inline-block;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 8px;
  }

  .sr-footer-brand-text {
      margin: 0;
      opacity: 0.9;
  }

  .sr-footer-badges {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
  }

  .sr-badge {
      min-height: 52px;
      border-radius: 999px;
      border: 1px solid rgba(243, 207, 85, 0.4);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(5, 8, 15, 0.7);
  }

  .sr-badge img {
      height: 60px;
      display: block;
  }

  .sr-badge-18 {
      background: #c0392b;
      border-color: #c0392b;
      color: #ffffff;
      font-weight: 700;
      font-size: 18px;
  }



  .sr-footer-columns {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px;
      padding-top: 12px;
      padding-bottom: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .sr-footer-col h4 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 8px;
  }

  .sr-footer-col p {
      margin: 0 0 8px;
      opacity: 0.9;
  }

  .sr-footer-nav {
      list-style: none;
      margin: 0;
      padding: 0;
  }

  .sr-footer-nav li {
      margin-bottom: 6px;
  }

  .sr-footer-nav a {
      font-size: 14px;
  }



  .sr-footer-bottom {
      margin-top: 18px;
  }

  .sr-footer-disclaimer {
      margin: 0 0 10px;
      font-size: 13px;
      opacity: 0.9;
  }

  .sr-footer-copy {
      margin: 0 0 6px;
      font-size: 13px;
      opacity: 0.85;
  }

  .sr-footer-en {
      margin: 0;
      font-size: 12px;
      opacity: 0.75;
  }



  @media (max-width: 992px) {
      .sr-footer-columns {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
  }

  @media (max-width: 640px) {
      .sr-footer-top {
          flex-direction: column;
      }

      .sr-footer-columns {
          grid-template-columns: 1fr;
      }

      .sr-footer {
          padding: 28px 16px 20px;
      }
  }

  .page {
      padding: 120px 0 80px 0;
  }

  .page .container {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 40px 20px;
      background: var(--white);
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      margin-top: -30px;
      border-radius: 8px;
      position: relative;
  }

  .page h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      color: var(--primary);
  }

  .page .date {
      color: var(--text-light);
      font-size: 0.9rem;
      margin-bottom: 40px;
      display: block;
      border-bottom: 1px solid #e2e8f0;
      padding-bottom: 20px;
  }

  .page h2 {
      font-size: 1.5rem;
      margin-top: 40px;
      margin-bottom: 20px;
      color: var(--primary);
      border-left: 4px solid var(--secondary);
      padding-left: 15px;
  }

  .page h3 {
      font-size: 1.2rem;
      margin-top: 25px;
      margin-bottom: 15px;
      color: var(--text-dark);
  }

  .page p {
      margin-bottom: 20px;
      color: var(--text-light);
      text-align: justify;
  }

  .page ul {
      margin-bottom: 20px;
      padding-left: 20px;
      color: var(--text-light);
  }

  .page li {
      margin-bottom: 10px;
  }

  .page .highlight-box {
      background-color: #f1f5f9;
      padding: 20px;
      border-radius: 8px;
      border: 1px solid #cbd5e1;
      margin: 30px 0;
  }

  .warning-box {
      background-color: #fff1f2;
      color: #be123c;
      padding: 20px;
      border-radius: 8px;
      border: 1px solid #fecdd3;
      margin: 30px 0;
      font-weight: 500;
  }

  .info-box {
      background-color: #f0f9ff;
      color: #0369a1;
      padding: 20px;
      border-radius: 8px;
      border: 1px solid #bae6fd;
      margin: 30px 0;
  }

  .cookie-table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
      font-size: 0.95rem;
  }

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

  .cookie-table th {
      background-color: #f1f5f9;
      color: var(--primary);
      font-weight: 700;
  }

  .cookie-table tr:nth-child(even) {
      background-color: #fafafa;
  }

  .cookie-badge {
      display: inline-block;
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 600;
  }

  .badge-necessary {
      background: #dcfce7;
      color: #166534;
  }

  .badge-analytics {
      background: #dbeafe;
      color: #1e40af;
  }

  .badge-marketing {
      background: #ffedd5;
      color: #9a3412;
  }

  .settings-box {
      background-color: #f8fafc;
      border: 1px solid var(--border-color);
      padding: 25px;
      border-radius: 8px;
      margin-top: 30px;
  }

  .alert-box {
      padding: 20px;
      border-radius: var(--border-radius);
      margin: 30px 0;
      border-left: 5px solid;
  }

  .alert-danger {
      background-color: #fef2f2;
      color: #991b1b;
      border-color: var(--danger);
  }

  .alert-info {
      background-color: #eff6ff;
      color: #1e40af;
      border-color: var(--secondary);
  }

  .check-list {
      list-style: none;
      padding: 0;
  }

  .check-list li {
      position: relative;
      padding-left: 30px;
      margin-bottom: 15px;
  }

  .check-list li::before {
      content: '\f00c';
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 2px;
      color: var(--success);
  }

  .warning-list li::before {
      content: '\f071';
      color: var(--danger);
  }

  .help-card {
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      padding: 25px;
      border-radius: var(--border-radius);
      margin-top: 20px;
      transition: 0.3s;
  }

  .help-card:hover {
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      border-color: var(--secondary);
  }

  .help-card h4 {
      color: var(--primary);
      font-size: 1.2rem;
      margin-bottom: 10px;
  }

  .help-card a {
      color: var(--secondary);
      font-weight: bold;
      text-decoration: none;
  }

  .myth-fact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 30px;
  }

  .myth-box {
      background: #fef2f2;
      padding: 15px;
      border-radius: 8px;
  }

  .fact-box {
      background: #ecfdf5;
      padding: 15px;
      border-radius: 8px;
  }

  .mf-label {
      display: block;
      font-weight: bold;
      font-size: 0.8rem;
      text-transform: uppercase;
      margin-bottom: 5px;
  }

  @media (max-width: 768px) {
      .myth-fact-grid {
          grid-template-columns: 1fr;
      }
  }

  .age-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(15, 23, 42, 0.95);
      backdrop-filter: blur(10px);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 1;
      transition: opacity 0.5s ease;
  }

  .age-modal {
      background: white;
      padding: 40px;
      border-radius: 16px;
      text-align: center;
      max-width: 500px;
      width: 90%;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      border: 1px solid #334155;
  }

  .age-icon {
      margin-bottom: 20px;
  }

  .age-badge {
      background: #ef4444;
      color: white;
      font-size: 1.5rem;
      font-weight: 800;
      padding: 10px 15px;
      border-radius: 50%;
      border: 4px solid #fecaca;
  }

  .age-modal h2 {
      color: #0f172a;
      margin-bottom: 15px;
      font-size: 1.5rem;
  }

  .age-modal p {
      color: #475569;
      margin-bottom: 30px;
  }

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

  .age-exit {
      color: #64748b !important;
      border-color: #cbd5e1 !important;
  }

  .age-exit:hover {
      background: #f1f5f9 !important;
      color: #0f172a !important;
  }

  .age-warning {
      font-size: 0.8rem !important;
      color: #94a3b8 !important;
      margin-bottom: 0 !important;
  }


  .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #ffffff;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
      z-index: 9990;
      padding: 20px 0;
      display: none;
      border-top: 4px solid var(--secondary);
  }

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

  .cookie-text h3 {
      font-size: 1.1rem;
      margin-bottom: 5px;
      color: var(--primary);
  }

  .cookie-text p {
      font-size: 0.9rem;
      color: var(--text-light);
      margin: 0;
  }

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

  .cookie-btn-small {
      padding: 8px 20px;
      font-size: 0.9rem;
      white-space: nowrap;
  }


  .cookie-modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 9995;
      display: none;
      align-items: center;
      justify-content: center;
  }

  .cookie-modal {
      background: white;
      width: 500px;
      max-width: 90%;
      border-radius: 12px;
      overflow: hidden;
  }

  .cookie-modal-header {
      padding: 20px;
      border-bottom: 1px solid #e2e8f0;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .cookie-modal-header h3 {
      margin: 0;
      color: var(--primary);
  }

  .close-modal {
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #64748b;
  }

  .cookie-modal-body {
      padding: 20px;
      max-height: 60vh;
      overflow-y: auto;
  }

  .cookie-option {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid #f1f5f9;
  }

  .cookie-option:last-child {
      border-bottom: none;
      margin-bottom: 0;
  }

  .cookie-info strong {
      display: block;
      color: var(--text-dark);
      margin-bottom: 5px;
  }

  .cookie-info span {
      font-size: 0.85rem;
      color: var(--text-light);
  }

  .cookie-modal-footer {
      padding: 20px;
      background: #f8fafc;
      text-align: right;
      border-top: 1px solid #e2e8f0;
  }


  .switch {
      position: relative;
      display: inline-block;
      width: 50px;
      height: 26px;
      flex-shrink: 0;
      margin-left: 15px;
  }

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

  .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #cbd5e1;
      transition: .4s;
  }

  .slider:before {
      position: absolute;
      content: "";
      height: 20px;
      width: 20px;
      left: 3px;
      bottom: 3px;
      background-color: white;
      transition: .4s;
  }

  input:checked+.slider {
      background-color: var(--secondary);
  }

  input:focus+.slider {
      box-shadow: 0 0 1px var(--secondary);
  }

  input:checked+.slider:before {
      transform: translateX(24px);
  }

  .slider.round {
      border-radius: 34px;
  }

  .slider.round:before {
      border-radius: 50%;
  }

  .slider.disabled {
      background-color: #94a3b8;
      cursor: not-allowed;
  }


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

      .cookie-buttons {
          width: 100%;
          justify-content: center;
      }
  }