
    .page-g-3888 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f5f5f5;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-g-3888__hero-section {
      position: relative;
      background-color: #0d47a1;
      color: #fff;
      text-align: center;
      padding: 10px 20px 60px; /* Adjusted padding-top as per instruction */
      overflow: hidden;
    }

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

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

    .page-g-3888__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #ffeb3b;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-g-3888__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e3f2fd;
    }

    .page-g-3888__button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-g-3888__button:hover {
      background-color: #ffeb3b;
    }

    .page-g-3888__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .page-g-3888__section-title {
      font-size: 2em;
      color: #0d47a1;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-g-3888__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #ffc107;
      border-radius: 2px;
    }

    .page-g-3888__text-content p {
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-g-3888__highlight {
      color: #0d47a1;
      font-weight: bold;
    }

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

    .page-g-3888__feature-item {
      background-color: #e3f2fd;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .page-g-3888__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-g-3888__feature-icon {
      width: 200px; /* Min size */
      height: auto;
      margin-bottom: 15px;
      border-radius: 5px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-g-3888__feature-title {
      font-size: 1.3em;
      color: #0d47a1;
      margin-bottom: 10px;
    }

    .page-g-3888__product-display {
      text-align: center;
      margin-top: 30px;
    }

    .page-g-3888__product-image {
      width: 100%;
      max-width: 800px;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.15);
      object-fit: cover;
      box-sizing: border-box;
    }

    .page-g-3888__cta-section {
      text-align: center;
      background-color: #0d47a1;
      color: #fff;
      padding: 50px 20px;
      border-radius: 8px;
      margin-top: 20px;
    }

    .page-g-3888__cta-title {
      font-size: 2em;
      margin-bottom: 20px;
      color: #ffeb3b;
    }

    .page-g-3888__cta-text {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-g-3888__faq-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

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

    .page-g-3888__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      box-sizing: border-box;
    }

    .page-g-3888__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-g-3888__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      font-weight: bold;
      color: #0d47a1;
      user-select: none;
      transition: color 0.3s ease;
    }

    .page-g-3888__faq-question:hover {
      color: #ffc107;
    }

    .page-g-3888__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

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

    .page-g-3888__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
    }

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

    .page-g-3888__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-g-3888__floating-button-register,
    .page-g-3888__floating-button-login {
      flex: 1;
      text-align: center;
      background-color: #ffc107;
      color: #333;
      padding: 12px 0;
      margin: 0 5px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      font-size: 1.1em;
      box-sizing: border-box;
      border: none;
      cursor: pointer;
    }

    .page-g-3888__floating-button-register:hover,
    .page-g-3888__floating-button-login:hover {
      background-color: #ffeb3b;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-g-3888__hero-title {
        font-size: 2em;
      }

      .page-g-3888__hero-subtitle {
        font-size: 1em;
      }

      .page-g-3888__section-title {
        font-size: 1.8em;
      }

      .page-g-3888__section,
      .page-g-3888__faq-section {
        padding: 20px 15px;
        margin: 0 10px 15px;
      }

      .page-g-3888__features-grid {
        grid-template-columns: 1fr;
      }

      .page-g-3888__feature-item {
        padding: 20px;
      }

      .page-g-3888__feature-icon {
        width: 250px; /* Ensure min 200px and responsive */
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-g-3888__product-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-g-3888__cta-title {
        font-size: 1.8em;
      }

      .page-g-3888__cta-text {
        font-size: 1em;
      }

      /* List item responsiveness for FAQ */
      .page-g-3888__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-g-3888__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

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

      .page-g-3888__faq-answer {
        padding: 15px 10px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-g-3888__floating-button-register,
      .page-g-3888__floating-button-login {
        font-size: 1em;
        padding: 10px 0;
      }
    }

    @media (max-width: 480px) {
      .page-g-3888__hero-section {
        padding-bottom: 40px;
      }
      .page-g-3888__hero-title {
        font-size: 1.8em;
      }
      .page-g-3888__hero-subtitle {
        font-size: 0.9em;
      }
      .page-g-3888__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-g-3888__section-title {
        font-size: 1.6em;
      }
    }
  