
    :root {
      --page-por__primary-color: #FFD700; /* Yellow */
      --page-por__secondary-color: #FFFFFF; /* White */
      --page-por__background-color: #000000; /* Black */
      --page-por__text-color: #FFFFFF; /* White */
      --page-por__accent-color: #FF4500; /* OrangeRed for highlights */
    }

    .page-por {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-por__background-color);
      color: var(--page-por__text-color);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating button */
    }

    .page-por__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-por__hero-section {
      text-align: center;
      padding-top: 10px; /* Safe area for fixed header */
      padding-bottom: 40px;
      background-color: #1a1a1a;
    }

    .page-por__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .page-por__hero-content {
      padding: 20px;
      margin-top: -60px; /* Overlap with image for better visual flow */
      position: relative;
      z-index: 1;
      background: linear-gradient(to top, var(--page-por__background-color) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0) 100%);
      padding-top: 80px;
      padding-bottom: 20px;
      border-radius: 0 0 8px 8px;
    }

    .page-por__hero-title {
      font-size: 2.8em;
      color: var(--page-por__primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-por__hero-description {
      font-size: 1.2em;
      color: var(--page-por__secondary-color);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-por__button {
      display: inline-block;
      background-color: var(--page-por__accent-color);
      color: var(--page-por__secondary-color);
      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;
      border: none;
      cursor: pointer;
    }

    .page-por__button:hover {
      background-color: #FF6347; /* Slightly lighter red */
      transform: translateY(-3px);
    }

    .page-por__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-por__section--dark {
      background-color: #1a1a1a;
    }

    .page-por__section-title {
      font-size: 2.2em;
      color: var(--page-por__primary-color);
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-por__text-block {
      max-width: 900px;
      margin: 0 auto 40px auto;
      font-size: 1.1em;
      color: var(--page-por__text-color);
    }

    .page-por__text-block p {
      margin-bottom: 20px;
    }

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

    .page-por__card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-por__card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-por__card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-por__card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      border-radius: 8px;
    }

    .page-por__card-title {
      font-size: 1.5em;
      color: var(--page-por__primary-color);
      margin-bottom: 10px;
    }

    .page-por__card-description {
      font-size: 0.95em;
      color: var(--page-por__text-color);
      flex-grow: 1;
    }

    .page-por__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 120px; /* Consistent height for logos */
    }

    .page-por__provider-logo {
      width: auto;
      height: 100px; /* Max height for logos */
      max-width: 100%;
      object-fit: contain;
      border-radius: 5px;
      background-color: #333; /* Slight background for contrast */
      padding: 10px;
      box-sizing: border-box;
    }

    .page-por__list {
      list-style: none;
      padding: 0;
      max-width: 800px;
      margin: 0 auto 40px auto;
      text-align: left;
    }

    .page-por__list-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      padding: 20px 25px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      color: var(--page-por__secondary-color);
      font-size: 1.05em;
    }

    .page-por__list-item strong {
      color: var(--page-por__primary-color);
      margin-right: 10px;
    }

    .page-por__faq-section {
      text-align: left;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-por__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

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

    .page-por__faq-question:hover {
      background-color: #444;
    }

    .page-por__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-por__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
    }

    .page-por__faq-item.active .page-por__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-por__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--page-por__text-color);
      font-size: 1.05em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-por__faq-item.active .page-por__faq-answer {
      max-height: 2000px !important; /* Use !important as required */
      padding: 20px 25px !important; /* Use !important as required */
      opacity: 1;
    }

    .page-por__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-por__accent-color);
      color: var(--page-por__secondary-color);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap; /* Prevent text wrapping */
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .page-por__floating-button:hover {
      background-color: #FF6347;
      transform: translateX(-50%) translateY(-5px);
    }

    .page-por__floating-button span {
      font-size: 1.5em;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-por__hero-section {
        padding-top: 10px; /* Safe area for fixed header on mobile */
      }
      .page-por__hero-title {
        font-size: 2em;
      }
      .page-por__hero-description {
        font-size: 1em;
      }
      .page-por__section {
        padding: 40px 0;
      }
      .page-por__section-title {
        font-size: 1.8em;
      }
      .page-por__text-block,
      .page-por__list-item,
      .page-por__faq-question,
      .page-por__faq-answer {
        font-size: 0.95em;
      }
      .page-por__card {
        padding: 20px;
      }
      .page-por__card-title {
        font-size: 1.3em;
      }
      .page-por__card-image {
        height: 180px;
      }
      .page-por__provider-logo {
        height: 80px;
      }
      .page-por__grid {
        grid-template-columns: 1fr;
      }
      .page-por__floating-button {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        left: 10px;
        right: 10px;
        transform: none;
        width: calc(100% - 20px);
        box-sizing: border-box;
        justify-content: center;
      }
      .page-por__floating-button:hover {
        transform: none;
      }

      /* Image responsive optimization for mobile */
      .page-por__hero-image,
      .page-por__card-image,
      .page-por__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-por__card-image-wrapper,
      .page-por__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  