
    /* CSS Styles for the 90ok page */
    .page-90ok-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
    }

    .page-90ok-hero {
      background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 100%);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      border-radius: 10px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }

    .page-90ok-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: rgba(255, 255, 255, 0.05);
      transform: rotate(45deg);
      z-index: 0;
    }

    .page-90ok-hero h1 {
      font-size: 2.8em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      position: relative;
      z-index: 1;
    }

    .page-90ok-hero p {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 1;
    }

    .page-90ok-button {
      display: inline-block;
      background-color: #ffc107;
      color: #1a2a6c;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      position: relative;
      z-index: 1;
    }

    .page-90ok-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    .page-90ok-section {
      background-color: #f9f9f9;
      padding: 30px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-90ok-section h2 {
      color: #1a2a6c;
      font-size: 2em;
      margin-bottom: 20px;
      border-bottom: 3px solid #b21f1f;
      padding-bottom: 10px;
    }

    .page-90ok-section h3 {
      color: #b21f1f;
      font-size: 1.5em;
      margin-top: 25px;
      margin-bottom: 15px;
    }

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

    .page-90ok-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-90ok-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-90ok-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid #eee;
    }

    .page-90ok-card h4 {
      font-size: 1.3em;
      color: #1a2a6c;
      margin: 15px 10px 10px;
    }

    .page-90ok-card p {
      font-size: 0.95em;
      color: #555;
      padding: 0 15px;
      margin-bottom: 15px;
    }

    .page-90ok-card .page-90ok-button-small {
      display: inline-block;
      background-color: #1a2a6c;
      color: #fff;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .page-90ok-card .page-90ok-button-small:hover {
      background-color: #b21f1f;
    }

    .page-90ok-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-90ok-list li {
      background-color: #fff;
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 5px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
      display: flex;
      align-items: center;
    }

    .page-90ok-list li::before {
      content: '✔';
      color: #b21f1f;
      font-weight: bold;
      margin-right: 10px;
    }

    .page-90ok-steps {
      counter-reset: step-counter;
    }

    .page-90ok-steps .page-90ok-step-item {
      background-color: #fff;
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      position: relative;
      padding-left: 60px;
    }

    .page-90ok-steps .page-90ok-step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #1a2a6c;
      color: #fff;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.1em;
    }

    .page-90ok-steps .page-90ok-step-item h4 {
      color: #1a2a6c;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-90ok-faq-item {
      margin-bottom: 15px;
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-90ok-faq-question {
      background-color: #eef;
      padding: 15px 20px;
      cursor: pointer;
      font-weight: bold;
      color: #1a2a6c;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s ease;
    }

    .page-90ok-faq-question:hover {
      background-color: #e0e0f0;
    }

    .page-90ok-faq-question .page-90ok-toggle-icon {
      font-size: 1.2em;
      transition: transform 0.3s ease;
    }

    .page-90ok-faq-answer {
      padding: 15px 20px;
      background-color: #fff;
      border-top: 1px solid #eee;
      display: none;
    }

    .page-90ok-faq-item.page-90ok-active .page-90ok-faq-answer {
      display: block;
    }

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

    /* Floating Ad */
    .page-90ok-floating-ad {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: linear-gradient(45deg, #b21f1f 0%, #1a2a6c 100%);
      color: #fff;
      padding: 15px 20px;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 15px;
      animation: page-90ok-pulse 2s infinite;
    }

    .page-90ok-floating-ad p {
      margin: 0;
      font-size: 1.1em;
      font-weight: bold;
    }

    .page-90ok-floating-ad .page-90ok-button {
      padding: 10px 20px;
      font-size: 1em;
      background-color: #ffc107;
      color: #1a2a6c;
    }

    @keyframes page-90ok-pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.03); }
      100% { transform: scale(1); }
    }


    @media (max-width: 768px) {
      .page-90ok-hero h1 {
        font-size: 2em;
      }
      .page-90ok-hero p {
        font-size: 1em;
      }
      .page-90ok-section h2 {
        font-size: 1.8em;
      }
      .page-90ok-grid {
        grid-template-columns: 1fr;
      }
      .page-90ok-floating-ad {
        flex-direction: column;
        text-align: center;
        right: 10px;
        left: 10px;
        bottom: 10px;
        padding: 15px;
      }
      .page-90ok-floating-ad p {
        font-size: 1em;
      }
      .page-90ok-floating-ad .page-90ok-button {
        width: 100%;
        text-align: center;
      }
    }
  