
    .page-web-c-b-ng {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f5f5f5;
      padding-top: 10px; /* Small padding for the first section, relying on body padding for header offset */
    }

    /* Floating Register/Login buttons */
    .page-web-c-b-ng__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-web-c-b-ng__floating-button {
      background-color: #ff4500; /* OrangeRed */
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
      text-align: center;
      text-decoration: none; /* For potential future links */
      display: block; /* Ensure it takes full width of its container */
    }

    .page-web-c-b-ng__floating-button--login {
      background-color: #007bff; /* Blue */
    }

    .page-web-c-b-ng__floating-button:hover {
      filter: brightness(1.1);
    }

    /* General Section Styling */
    .page-web-c-b-ng__section-title {
      text-align: center;
      font-size: 2.2em;
      margin-bottom: 20px;
      color: #333;
      padding: 0 15px;
    }

    .page-web-c-b-ng__section-description {
      text-align: center;
      font-size: 1.1em;
      margin-bottom: 40px;
      color: #555;
      padding: 0 15px;
    }

    /* Hero Section */
    .page-web-c-b-ng__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Adjust height for mobile-first */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      overflow: hidden;
      margin-bottom: 40px;
    }

    .page-web-c-b-ng__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-web-c-b-ng__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 2;
    }

    .page-web-c-b-ng__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
    }

    .page-web-c-b-ng__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-web-c-b-ng__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
    }

    .page-web-c-b-ng__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .page-web-c-b-ng__button {
      padding: 12px 25px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-weight: bold;
    }

    .page-web-c-b-ng__button--primary {
      background-color: #ff4500; /* OrangeRed */
      color: white;
    }

    .page-web-c-b-ng__button--primary:hover {
      background-color: #e03e00;
      transform: translateY(-2px);
    }

    .page-web-c-b-ng__button--secondary {
      background-color: #007bff; /* Blue */
      color: white;
    }

    .page-web-c-b-ng__button--secondary:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-web-c-b-ng__button--details {
      background-color: #28a745; /* Green */
      color: white;
      text-decoration: none;
      display: inline-block;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 1em;
      margin-top: 15px;
    }

    .page-web-c-b-ng__button--details:hover {
      background-color: #218838;
    }

    .page-web-c-b-ng__button--cta {
      background-color: #ff4500; /* OrangeRed */
      color: white;
      padding: 15px 30px;
      font-size: 1.2em;
      border-radius: 50px;
      text-decoration: none;
      display: inline-block;
      margin-top: 20px;
    }

    .page-web-c-b-ng__button--cta:hover {
      background-color: #e03e00;
      transform: translateY(-2px);
    }


    /* About Section */
    .page-web-c-b-ng__about-section {
      padding: 60px 20px;
      background-color: #ffffff;
      margin-bottom: 40px;
    }

    .page-web-c-b-ng__about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-web-c-b-ng__about-item {
      text-align: center;
      padding: 30px;
      background-color: #f9f9f9;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-web-c-b-ng__about-item:hover {
      transform: translateY(-10px);
    }

    .page-web-c-b-ng__about-icon {
      width: 100%; /* Ensure responsiveness */
      max-width: 250px; /* Placeholder is 400x300, so this makes it responsive but not too large */
      height: auto;
      margin-bottom: 20px;
      display: block; /* Center image */
      margin-left: auto;
      margin-right: auto;
    }

    .page-web-c-b-ng__about-item-title {
      font-size: 1.5em;
      color: #ff4500;
      margin-bottom: 10px;
    }

    .page-web-c-b-ng__about-item-description {
      font-size: 1em;
      color: #666;
    }

    /* Products Section */
    .page-web-c-b-ng__products-section {
      padding: 60px 20px;
      background-color: #f0f0f0;
      margin-bottom: 40px;
    }

    .page-web-c-b-ng__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-web-c-b-ng__product-card {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-web-c-b-ng__product-card:hover {
      transform: translateY(-10px);
    }

    .page-web-c-b-ng__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
    }

    .page-web-c-b-ng__product-title {
      font-size: 1.4em;
      color: #ff4500;
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-web-c-b-ng__product-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px 20px;
    }

    /* Promotions Section */
    .page-web-c-b-ng__promo-section {
      padding: 60px 20px;
      background-color: #ffffff;
      margin-bottom: 40px;
    }

    .page-web-c-b-ng__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-web-c-b-ng__promo-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-web-c-b-ng__promo-card:hover {
      transform: translateY(-10px);
    }

    .page-web-c-b-ng__promo-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      max-width: 100%;
    }

    .page-web-c-b-ng__promo-title {
      font-size: 1.5em;
      color: #ff4500;
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-web-c-b-ng__promo-description {
      font-size: 1em;
      color: #666;
      padding: 0 15px;
    }

    /* How It Works Section */
    .page-web-c-b-ng__how-it-works-section {
      padding: 60px 20px;
      background-color: #f0f0f0;
      margin-bottom: 40px;
    }

    .page-web-c-b-ng__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-web-c-b-ng__step-item {
      text-align: center;
      padding: 30px;
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-web-c-b-ng__step-number {
      font-size: 2.5em;
      color: #ff4500;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-web-c-b-ng__step-title {
      font-size: 1.5em;
      color: #333;
      margin-bottom: 10px;
    }

    .page-web-c-b-ng__step-description {
      font-size: 1em;
      color: #666;
    }

    /* FAQ Section */
    .page-web-c-b-ng__faq-section {
      padding: 60px 20px;
      background-color: #ffffff;
      margin-bottom: 40px;
    }

    .page-web-c-b-ng__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-web-c-b-ng__faq-item {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
    }

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

    .page-web-c-b-ng__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-web-c-b-ng__faq-question-text {
      margin: 0;
      color: #333; /* Ensure contrast */
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-web-c-b-ng__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event on parent */
      color: #ff4500;
    }

    .page-web-c-b-ng__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: #ffffff;
      color: #555;
    }

    .page-web-c-b-ng__faq-answer p {
      margin: 0;
      padding-bottom: 10px; /* Add bottom padding to paragraph inside answer */
    }

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

    .page-web-c-b-ng__faq-item.active .page-web-c-b-ng__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - visual effect */
    }

    /* CTA Section */
    .page-web-c-b-ng__cta-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #333; /* Dark background */
      color: white;
    }

    .page-web-c-b-ng__cta-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: white;
    }

    .page-web-c-b-ng__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #ccc;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-web-c-b-ng__hero-section {
        height: 50vh;
      }

      .page-web-c-b-ng__hero-title {
        font-size: 2em;
      }

      .page-web-c-b-ng__hero-description {
        font-size: 1em;
      }

      .page-web-c-b-ng__hero-buttons {
        flex-direction: column;
        gap: 10px;
      }

      .page-web-c-b-ng__button {
        width: 80%;
        margin: 0 auto;
      }

      .page-web-c-b-ng__section-title {
        font-size: 1.8em;
      }

      .page-web-c-b-ng__section-description {
        font-size: 1em;
      }

      .page-web-c-b-ng__about-grid,
      .page-web-c-b-ng__product-grid,
      .page-web-c-b-ng__promo-grid,
      .page-web-c-b-ng__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px; /* Added padding to grids for mobile */
      }

      .page-web-c-b-ng__about-item,
      .page-web-c-b-ng__product-card,
      .page-web-c-b-ng__promo-card,
      .page-web-c-b-ng__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjusted padding */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      
      .page-web-c-b-ng__about-icon,
      .page-web-c-b-ng__product-image,
      .page-web-c-b-ng__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-web-c-b-ng__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-web-c-b-ng__faq-answer {
        padding: 0 15px;
      }

      .page-web-c-b-ng__faq-item.active .page-web-c-b-ng__faq-answer {
        padding: 15px !important;
      }

      .page-web-c-b-ng__cta-title {
        font-size: 2em;
      }

      .page-web-c-b-ng__cta-description {
        font-size: 1em;
      }
      
      .page-web-c-b-ng__floating-buttons {
        bottom: 10px;
        right: 10px;
      }
      .page-web-c-b-ng__floating-button {
        padding: 10px 15px;
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      .page-web-c-b-ng__hero-title {
        font-size: 1.8em;
      }
      .page-web-c-b-ng__hero-description {
        font-size: 0.9em;
      }
    }
  