
    :root {
      --page-c54-primary-color: #e44d26; /* A vibrant red/orange */
      --page-c54-secondary-color: #333;
      --page-c54-text-color: #444;
      --page-c54-light-bg: #f9f9f9;
      --page-c54-dark-bg: #222;
      --page-c54-white: #fff;
    }

    .page-c54 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-c54-text-color);
      background-color: var(--page-c54-white);
    }

    .page-c54__hero-section {
      position: relative;
      width: 100%;
      height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--page-c54-white);
      overflow: hidden;
      padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    }

    .page-c54__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .page-c54__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: -1;
    }

    .page-c54__hero-content {
      max-width: 900px;
      padding: 20px;
      z-index: 1;
    }

    .page-c54__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--page-c54-white);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-c54__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-c54-white);
    }

    .page-c54__cta-button {
      display: inline-block;
      background-color: var(--page-c54-primary-color);
      color: var(--page-c54-white);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-c54__cta-button:hover {
      background-color: #d13a17;
    }

    .page-c54__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

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

    .page-c54__section-dark {
      background-color: var(--page-c54-secondary-color);
      color: var(--page-c54-white);
    }

    .page-c54__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: var(--page-c54-secondary-color);
      position: relative;
      padding-bottom: 10px;
    }

    .page-c54__section-title--dark {
      color: var(--page-c54-white);
    }

    .page-c54__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-c54-primary-color);
      border-radius: 2px;
    }

    .page-c54__text-content {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: var(--page-c54-text-color);
    }

    .page-c54__text-content--dark {
      color: #ccc;
    }

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

    .page-c54__card {
      background-color: var(--page-c54-white);
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      height: 100%;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-c54__card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-c54__card-image-container {
      width: 100%;
      max-width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    .page-c54__card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
      max-width: 100%; /* Image responsive */
      height: auto; /* Image responsive */
    }

    .page-c54__card-title {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: var(--page-c54-primary-color);
    }

    .page-c54__card-description {
      font-size: 1em;
      color: var(--page-c54-text-color);
    }

    .page-c54__promo-item {
      display: flex;
      align-items: center;
      background-color: var(--page-c54-white);
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin-bottom: 25px;
      padding: 20px;
      text-align: left;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-c54__promo-item-image-container {
      flex-shrink: 0;
      width: 250px;
      height: 150px;
      margin-right: 25px;
      overflow: hidden;
      border-radius: 8px;
      box-sizing: border-box;
    }

    .page-c54__promo-item-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
      max-width: 100%; /* Image responsive */
      height: auto; /* Image responsive */
    }

    .page-c54__promo-item-content {
      flex-grow: 1;
    }

    .page-c54__promo-item-title {
      font-size: 1.4em;
      color: var(--page-c54-primary-color);
      margin-bottom: 10px;
    }

    .page-c54__promo-item-description {
      font-size: 1em;
      color: var(--page-c54-text-color);
    }

    .page-c54__provider-logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-c54__provider-logo-container {
      width: 150px; /* Adjust size as needed */
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--page-c54-white);
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      padding: 10px;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-c54__provider-logo {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      max-width: 100% !important; /* Image responsive */
      height: auto !important; /* Image responsive */
    }

    .page-c54__faq-section {
      background-color: var(--page-c54-light-bg);
    }

    .page-c54__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-c54__faq-item {
      background-color: var(--page-c54-white);
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-c54__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--page-c54-white);
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-c54-secondary-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-c54__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-c54__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-c54-secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-c54__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      color: var(--page-c54-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

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

    .page-c54__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-c54-text-color);
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-c54__hero-section {
        height: 450px;
      }

      .page-c54__hero-title {
        font-size: 2.5em;
      }

      .page-c54__hero-description {
        font-size: 1.1em;
      }

      .page-c54__section {
        padding: 40px 15px;
      }

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

      .page-c54__text-content {
        font-size: 1em;
      }

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

      /* List item specific responsive styles */
      .page-c54__card,
      .page-c54__promo-item,
      .page-c54__provider-logo-container,
      .page-c54__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-c54__promo-item {
        flex-direction: column;
        text-align: center;
      }

      .page-c54__promo-item-image-container {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
        height: 180px;
      }

      .page-c54__faq-question,
      .page-c54__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }
      .page-c54__faq-question h3 {
        font-size: 1.1em;
      }
      .page-c54__faq-item.active .page-c54__faq-answer {
        padding: 15px !important;
      }

      .page-c54__provider-logo-grid {
        gap: 15px;
      }

      .page-c54__provider-logo-container {
        width: 120px;
        height: 80px;
      }
    }

    @media (max-width: 480px) {
      .page-c54__hero-title {
        font-size: 2em;
      }
      .page-c54__hero-description {
        font-size: 1em;
      }
      .page-c54__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  