
    :root {
      --primary-color: #007bff;
      --secondary-color: #6c757d;
      --accent-color: #ffc107;
      --background-light: #f8f9fa;
      --background-dark: #343a40;
      --text-dark: #212529;
      --text-light: #ffffff;
      --border-color: #dee2e6;
      --header-offset: 122px; /* Default value, shared.css might override */
    }

    .page-90ok-com {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      background-color: var(--background-light);
      padding-top: var(--header-offset, 122px); /* Fallback for body padding */
    }
    
    @media (max-width: 768px) {
      .page-90ok-com {
        padding-top: var(--header-offset, 100px); /* Adjust for smaller header on mobile */
      }
    }

    .page-90ok-com__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-90ok-com__hero-section {
      background: linear-gradient(135deg, var(--primary-color), #0056b3);
      color: var(--text-light);
      padding: 60px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 40px;
      padding-top: 80px; /* Small decorative top padding, main offset from body */
    }

    .page-90ok-com__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-90ok-com__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-90ok-com__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: var(--text-light);
      font-weight: bold;
    }

    .page-90ok-com__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: rgba(255, 255, 255, 0.9);
    }

    .page-90ok-com__button {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--text-dark);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-90ok-com__button:hover {
      background-color: #e0a800;
    }

    .page-90ok-com__section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: var(--text-light);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-90ok-com__section--grey {
      background-color: var(--background-light);
    }

    .page-90ok-com__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
    }

    .page-90ok-com__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }

    .page-90ok-com__card {
      background-color: var(--text-light);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-90ok-com__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }

    .page-90ok-com__card-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-90ok-com__card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      max-width: 100%; /* Ensure image is responsive */
      height: auto; /* Maintain aspect ratio */
    }

    .page-90ok-com__card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%; /* Ensure content takes full width */
      box-sizing: border-box;
    }

    .page-90ok-com__card-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-90ok-com__card-description {
      font-size: 0.95em;
      color: var(--secondary-color);
      margin-bottom: 15px;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-90ok-com__text-content {
      padding: 0 20px;
      text-align: left;
    }

    .page-90ok-com__text-content p {
      margin-bottom: 15px;
      font-size: 1.05em;
      color: var(--text-dark);
    }

    .page-90ok-com__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .page-90ok-com__list-item {
      background-color: var(--background-light);
      border: 1px solid var(--border-color);
      border-radius: 5px;
      padding: 15px 20px;
      flex: 1 1 calc(33% - 20px); /* Three items per row, adjust for gap */
      box-sizing: border-box;
      text-align: center;
      font-weight: 600;
      color: var(--primary-color);
      transition: background-color 0.3s ease;
    }

    .page-90ok-com__list-item:hover {
      background-color: #e9ecef;
    }

    .page-90ok-com__faq-section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: var(--text-light);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-90ok-com__faq-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
    }

    .page-90ok-com__faq-list {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-90ok-com__faq-item {
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: var(--background-light);
      transition: all 0.3s ease;
    }

    .page-90ok-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--primary-color);
      color: var(--text-light);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-90ok-com__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--text-light);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-90ok-com__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-90ok-com__faq-item.active .page-90ok-com__faq-question {
      background-color: #0056b3;
    }

    .page-90ok-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: var(--text-light);
      color: var(--text-dark);
    }

    .page-90ok-com__faq-item.active .page-90ok-com__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important; /* Final padding */
      opacity: 1;
    }

    /* Toggle icon change is handled by JS */

    .page-90ok-com__cta-section {
      background-color: var(--primary-color);
      color: var(--text-light);
      text-align: center;
      padding: 50px 20px;
      border-radius: 8px;
      margin-bottom: 40px;
    }

    .page-90ok-com__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      color: var(--text-light);
    }

    .page-90ok-com__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: rgba(255, 255, 255, 0.9);
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-90ok-com__hero-title {
        font-size: 2.2em;
      }

      .page-90ok-com__hero-subtitle {
        font-size: 1.1em;
      }

      .page-90ok-com__section-title,
      .page-90ok-com__faq-title,
      .page-90ok-com__cta-title {
        font-size: 1.8em;
      }

      .page-90ok-com__grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
      }

      .page-90ok-com__card-content {
        padding: 15px;
      }

      .page-90ok-com__card-title {
        font-size: 1.3em;
      }

      .page-90ok-com__card-description {
        font-size: 0.9em;
      }

      .page-90ok-com__text-content {
        padding: 0 15px;
      }

      .page-90ok-com__list {
        flex-direction: column;
        gap: 15px;
        padding: 0 !important; /* Reset padding for list container */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-90ok-com__list-item {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-90ok-com__faq-list {
        padding: 0 15px;
      }

      .page-90ok-com__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-90ok-com__faq-question h3 {
        font-size: 1em;
      }

      .page-90ok-com__faq-answer {
        padding: 0 15px;
      }
      .page-90ok-com__faq-item.active .page-90ok-com__faq-answer {
        padding: 15px !important;
      }
      .page-90ok-com__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-90ok-com__card-image-wrapper {
        height: 150px; /* Adjust image height for smaller screens */
      }
      .page-90ok-com__card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  