
    :root {
      --page-primary-color: #0056b3; /* Blue */
      --page-secondary-color: #007bff; /* Lighter Blue */
      --page-accent-color: #28a745; /* Green */
      --page-text-color: #333;
      --page-heading-color: #1a1a1a;
      --page-background-color: #f8f9fa;
      --page-border-color: #e0e0e0;
      --page-white: #ffffff;
      --page-light-grey: #f0f0f0;
      --page-dark-grey: #6c757d;
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-text-color);
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 15px 40px; /* Adjusted padding-top for fixed header */
      box-sizing: border-box;
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__container {
      background-color: var(--page-white);
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      padding: 30px;
      margin-bottom: 20px;
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__header {
      text-align: center;
      margin-bottom: 30px;
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__title {
      color: var(--page-heading-color);
      font-size: 2.5em;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__intro-paragraph {
      font-size: 1.1em;
      color: var(--page-dark-grey);
      margin-bottom: 25px;
      text-align: center;
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__section-heading {
      color: var(--page-primary-color);
      font-size: 1.8em;
      margin-top: 35px;
      margin-bottom: 20px;
      border-bottom: 2px solid var(--page-light-grey);
      padding-bottom: 10px;
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__sub-section-heading {
      color: var(--page-heading-color);
      font-size: 1.4em;
      margin-top: 25px;
      margin-bottom: 15px;
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__paragraph {
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__list {
      list-style-type: disc;
      margin-left: 25px;
      margin-bottom: 15px;
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__list-item {
      margin-bottom: 8px;
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__image-wrapper {
      text-align: center;
      margin: 30px 0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: cover;
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__cta-button {
      display: inline-block;
      background-color: var(--page-accent-color);
      color: var(--page-white);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin-top: 20px;
      cursor: pointer;
      border: none;
      font-size: 1em;
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__cta-button:hover {
      background-color: #218838;
      transform: translateY(-2px);
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__note {
      font-style: italic;
      color: var(--page-dark-grey);
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px dashed var(--page-light-grey);
      text-align: center;
    }

    /* FAQ Section Styles */
    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__faq-section {
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid var(--page-light-grey);
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__faq-item {
      border: 1px solid var(--page-border-color);
      border-radius: 6px;
      margin-bottom: 10px;
      overflow: hidden;
      background-color: var(--page-white);
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-light-grey);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__faq-question:hover {
      background-color: #e9ecef;
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-heading-color);
      pointer-events: none; /* Prevents text selection interfering with click */
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon interfering with click */
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__faq-item.active .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an 'x' or minus */
      color: var(--page-accent-color);
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__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.3s ease;
      color: var(--page-text-color);
    }

    .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__faq-item.active .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners {
        padding: 10px 10px 30px; /* Adjusted padding-top for fixed header on mobile */
      }

      .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__container {
        padding: 20px;
      }

      .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__title {
        font-size: 1.8em;
      }

      .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__intro-paragraph {
        font-size: 1em;
      }

      .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__section-heading {
        font-size: 1.5em;
      }

      .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__sub-section-heading {
        font-size: 1.2em;
      }

      .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__list {
        margin-left: 20px;
      }

      .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__faq-question {
        padding: 12px 15px;
      }

      .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__faq-question h3 {
        font-size: 1em;
      }

      .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__faq-answer {
        padding: 0 10px;
      }

      .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__faq-item.active .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__faq-answer {
        padding: 15px 10px !important;
      }

      .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-resources-what-services-does-one88-provide-a-quick-guide-for-beginners__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  