
    .page-alo789cam {
      font-family: 'Arial', sans-serif;
      color: #E0E0E0; /* Light gray text for contrast */
      background-color: #1A1A1A; /* Dark background */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

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

    .page-alo789cam__section-title {
      font-size: 2.5em;
      color: #FFD700; /* Gold color for titles */
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-alo789cam__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #FFD700;
    }

    .page-alo789cam__text-content {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-alo789cam__hero-section {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 60vh; /* Responsive height */
      min-height: 400px;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* As per fixed nav bar requirement */
      box-sizing: border-box;
    }

    .page-alo789cam__hero-section img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.5); /* Darken image for text readability, not changing color */
      max-width: 100%; /* Responsive image */
    }

    .page-alo789cam__hero-content {
      position: relative;
      z-index: 2;
      color: #FFFFFF;
      padding: 20px;
    }

    .page-alo789cam__main-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #FFD700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-alo789cam__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-alo789cam__hero-button,
    .page-alo789cam__promo-cta-button,
    .page-alo789cam__cta-button {
      display: inline-block;
      background-color: #28A745; /* Green for CTA */
      color: #FFFFFF;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-alo789cam__hero-button:hover,
    .page-alo789cam__promo-cta-button:hover,
    .page-alo789cam__cta-button:hover {
      background-color: #218838;
      transform: translateY(-3px);
    }

    /* About Section */
    .page-alo789cam__about-section {
      padding: 60px 0;
      background-color: #222222;
    }

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

    .page-alo789cam__feature-item {
      background-color: #333333;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-alo789cam__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-alo789cam__feature-icon {
      width: 100px;
      height: auto;
      margin-bottom: 20px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-alo789cam__feature-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 15px;
    }

    .page-alo789cam__feature-description {
      font-size: 1em;
      color: #B0B0B0;
    }

    /* Products Section */
    .page-alo789cam__products-section {
      padding: 60px 0;
      background-color: #1A1A1A;
    }

    .page-alo789cam__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
      justify-items: center; /* Centered product display */
    }

    .page-alo789cam__product-item {
      background-color: #333333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      width: 100%; /* Ensure it takes full grid column width */
      max-width: 350px; /* Max width for individual product item */
      box-sizing: border-box;
    }

    .page-alo789cam__product-item:hover {
      transform: translateY(-5px);
    }

    .page-alo789cam__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-alo789cam__product-title {
      font-size: 1.4em;
      color: #FFD700;
      margin: 20px 0 10px;
    }

    .page-alo789cam__product-description {
      font-size: 0.95em;
      color: #B0B0B0;
      padding: 0 20px 20px;
    }

    /* Promo Section */
    .page-alo789cam__promo-section {
      padding: 60px 0;
      background-color: #222222;
    }

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

    .page-alo789cam__promo-item {
      background-color: #333333;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-alo789cam__promo-item:hover {
      transform: translateY(-5px);
    }

    .page-alo789cam__promo-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-alo789cam__promo-title {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-alo789cam__promo-description {
      font-size: 0.95em;
      color: #B0B0B0;
    }

    .page-alo789cam__center-button {
      text-align: center;
      margin-top: 40px;
    }

    /* Providers Section */
    .page-alo789cam__providers-section {
      padding: 60px 0;
      background-color: #1A1A1A;
    }

    .page-alo789cam__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Min size 150px for logos */
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
      align-items: center;
    }

    .page-alo789cam__provider-logo {
      width: 100%;
      max-width: 180px; /* Max width for individual logo */
      height: auto;
      object-fit: contain;
      filter: grayscale(100%) brightness(150%); /* Make logos visible on dark background, not changing original color */
      transition: filter 0.3s ease;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-alo789cam__provider-logo:hover {
      filter: grayscale(0%) brightness(100%); /* Original color on hover */
    }

    /* FAQ Section */
    .page-alo789cam__faq-section {
      padding: 60px 0;
      background-color: #222222;
    }

    .page-alo789cam__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
    }

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

    .page-alo789cam__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #444444;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      color: #FFD700;
    }

    .page-alo789cam__faq-question:hover {
      background-color: #555555;
    }

    .page-alo789cam__faq-q-text {
      font-size: 1.2em;
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent text from blocking click event */
      color: #FFD700; /* Ensure good contrast */
    }

    .page-alo789cam__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      color: #FFD700; /* Ensure good contrast */
    }

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

    .page-alo789cam__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #E0E0E0; /* Ensure good contrast */
    }

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

    .page-alo789cam__faq-answer p {
      margin: 0;
      padding-bottom: 10px; /* Add some padding to the bottom of the paragraph */
    }

    /* Call to Action Section */
    .page-alo789cam__cta-section {
      padding: 60px 0;
      text-align: center;
      background-color: #1A1A1A;
    }

    /* Floating Buttons */
    .page-alo789cam__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: #000000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
    }

    .page-alo789cam__floating-btn {
      flex: 1;
      text-align: center;
      padding: 12px 10px;
      margin: 0 5px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      color: #FFFFFF;
    }

    .page-alo789cam__register-btn {
      background-color: #28A745; /* Green for register */
    }

    .page-alo789cam__register-btn:hover {
      background-color: #218838;
      transform: translateY(-2px);
    }

    .page-alo789cam__login-btn {
      background-color: #007BFF; /* Blue for login */
    }

    .page-alo789cam__login-btn:hover {
      background-color: #0069D9;
      transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-alo789cam__main-title {
        font-size: 3em;
      }
      .page-alo789cam__hero-subtitle {
        font-size: 1.3em;
      }
    }

    @media (max-width: 768px) {
      .page-alo789cam__container {
        padding: 15px 10px;
      }
      .page-alo789cam__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }
      .page-alo789cam__main-title {
        font-size: 2.5em;
      }
      .page-alo789cam__hero-subtitle {
        font-size: 1.1em;
      }
      .page-alo789cam__hero-button,
      .page-alo789cam__promo-cta-button,
      .page-alo789cam__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      /* List item responsive requirements */
      .page-alo789cam__feature-grid,
      .page-alo789cam__product-grid,
      .page-alo789cam__promo-grid,
      .page-alo789cam__provider-grid {
        grid-template-columns: 1fr; /* Single column layout */
      }

      .page-alo789cam__feature-item,
      .page-alo789cam__product-item,
      .page-alo789cam__promo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px; /* Adjust padding for mobile */
        padding-right: 15px; /* Adjust padding for mobile */
      }

      .page-alo789cam__product-image,
      .page-alo789cam__promo-image,
      .page-alo789cam__feature-icon,
      .page-alo789cam__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* Ensure text wraps */
      .page-alo789cam__text-content,
      .page-alo789cam__feature-description,
      .page-alo789cam__product-description,
      .page-alo789cam__promo-description,
      .page-alo789cam__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-alo789cam__faq-question {
        padding: 15px 20px;
      }
      .page-alo789cam__faq-q-text {
        font-size: 1.1em;
      }
      .page-alo789cam__faq-toggle {
        font-size: 1.5em;
      }
      .page-alo789cam__faq-answer {
        padding: 0 20px;
      }
      .page-alo789cam__faq-item.active .page-alo789cam__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-alo789cam__main-title {
        font-size: 2em;
      }
      .page-alo789cam__hero-subtitle {
        font-size: 1em;
      }
      .page-alo789cam__hero-button,
      .page-alo789cam__promo-cta-button,
      .page-alo789cam__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-alo789cam__floating-btn {
        font-size: 1em;
        padding: 10px 5px;
      }
    }
  