
    .page-90 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-90__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-90__hero-section {
      background-color: #004085;
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding-top: 70px; /* Adjusted for visual spacing below header, assuming body padding-top handles header offset */
    }

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

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

    .page-90__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #ffe0b2; /* Light orange for contrast */
      line-height: 1.2;
    }

    .page-90__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    .page-90__primary-button {
      display: inline-block;
      background-color: #ffc107; /* Yellow for CTA */
      color: #333;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    .page-90__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-90__section-title {
      font-size: 2em;
      color: #004085;
      margin-bottom: 30px;
      text-align: center;
    }

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

    .page-90__card {
      background-color: #f0f8ff;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-90__card:hover {
      transform: translateY(-5px);
    }

    .page-90__card-image {
      max-width: 100%;
      height: auto;
      border-radius: 4px;
      margin-bottom: 15px;
      width: 100%;
      object-fit: cover;
      min-height: 200px;
    }

    .page-90__card-title {
      font-size: 1.4em;
      color: #004085;
      margin-bottom: 10px;
      pointer-events: none; /* Prevent blocking click events if card is wrapped in a link */
    }

    .page-90__card-description {
      font-size: 0.95em;
      color: #555;
    }

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

    .page-90__list-item {
      background-color: #e6f7ff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
      flex: 1 1 calc(33% - 20px);
      box-sizing: border-box;
      min-width: 280px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .page-90__list-item-title {
      font-size: 1.2em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-90__list-item-description {
      color: #444;
      font-size: 0.9em;
    }

    .page-90__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

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

    .page-90__faq-question {
      background-color: #f0f0f0;
      padding: 15px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      color: #004085;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-90__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-90__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none;
      color: #004085;
    }

    .page-90__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

    .page-90__faq-item.active .page-90__faq-toggle {
      transform: rotate(45deg);
    }

    .page-90__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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: #fff;
      color: #444;
    }

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

    .page-90__floating-promo {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #dc3545; /* Red for urgency */
      color: #fff;
      padding: 15px 20px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      text-align: center;
      max-width: 280px;
      animation: pulse 2s infinite;
    }

    .page-90__floating-promo-text {
      font-size: 1.1em;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-90__promo-button {
      background-color: #ffc107;
      color: #333;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      display: block;
      width: 100%;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .page-90__promo-button:hover {
      background-color: #e0a800;
    }

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

    /* Responsive Styles */
    @media (max-width: 768px) {
      .page-90__hero-section {
        padding: 40px 15px;
        padding-top: 60px; /* Adjusted for mobile visual spacing */
      }

      .page-90__hero-title {
        font-size: 2em;
      }

      .page-90__hero-description {
        font-size: 1em;
      }

      .page-90__section {
        padding: 30px 15px;
      }

      .page-90__section-title {
        font-size: 1.6em;
      }

      .page-90__grid {
        grid-template-columns: 1fr;
      }

      .page-90__list {
        flex-direction: column;
        gap: 15px;
        padding: 0 !important; /* Ensure no extra padding on ul/ol */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-90__list-item {
        flex: 1 1 100%;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-90__card-image {
        height: auto;
        min-height: 150px;
      }

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

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

      .page-90__faq-answer {
        padding: 0 15px;
      }

      .page-90__faq-item.active .page-90__faq-answer {
        padding: 15px !important;
      }

      .page-90__floating-promo {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
      }

      .page-90__floating-promo-text {
        font-size: 1em;
      }

      .page-90__promo-button {
        padding: 8px 15px;
      }
    }

    @media (max-width: 480px) {
      .page-90__hero-title {
        font-size: 1.8em;
      }
      .page-90__primary-button {
        padding: 12px 20px;
        font-size: 1em;
      }
    }
  