
    :root {
      --page-s-m-88__primary-color: #ffcc00; /* Vàng rực rỡ */
      --page-s-m-88__secondary-color: #3366ff; /* Xanh dương đậm */
      --page-s-m-88__accent-color: #ff3366; /* Hồng đỏ */
      --page-s-m-88__text-color: #ffffff; /* Trắng */
      --page-s-m-88__dark-background: #1a1a2e; /* Nền tối */
      --page-s-m-88__light-background: #2e3a59; /* Nền sáng hơn */
      --page-s-m-88__border-color: #4a4a6e;
      --page-s-m-88__hover-color: #ffd700;
      --page-s-m-88__font-family: 'Arial', sans-serif;
      --page-s-m-88__padding-section: 40px 20px;
      --page-s-m-88__border-radius: 8px;
    }

    .page-s-m-88 {
      font-family: var(--page-s-m-88__font-family);
      color: var(--page-s-m-88__text-color);
      background-color: var(--page-s-m-88__dark-background);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for fixed header */
    }

    .page-s-m-88__section {
      padding: var(--page-s-m-88__padding-section);
      margin-bottom: 20px;
      background-color: var(--page-s-m-88__light-background);
      border-radius: var(--page-s-m-88__border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-s-m-88__section--hero {
      background: linear-gradient(135deg, var(--page-s-m-88__dark-background) 0%, #0f0f1a 100%);
      padding: 60px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      text-align: center;
      padding-top: 10px; /* Small decorative top padding, main offset handled by body */
      border-radius: 0;
      margin-bottom: 0;
      box-shadow: none;
    }

    .page-s-m-88__hero-image {
      width: 100%;
      max-width: 800px;
      height: auto;
      border-radius: var(--page-s-m-88__border-radius);
      margin-bottom: 25px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-s-m-88__hero-title {
      font-size: 2.8em;
      color: var(--page-s-m-88__primary-color);
      margin-bottom: 15px;
      text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
      line-height: 1.2;
    }

    .page-s-m-88__hero-subtitle {
      font-size: 1.3em;
      color: var(--page-s-m-88__text-color);
      margin-bottom: 30px;
      max-width: 800px;
    }

    .page-s-m-88__button {
      display: inline-block;
      background-color: var(--page-s-m-88__accent-color);
      color: var(--page-s-m-88__text-color);
      padding: 15px 30px;
      border-radius: var(--page-s-m-88__border-radius);
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-s-m-88__button:hover {
      background-color: var(--page-s-m-88__hover-color);
      transform: translateY(-2px);
    }

    .page-s-m-88__title {
      font-size: 2.2em;
      color: var(--page-s-m-88__primary-color);
      margin-bottom: 25px;
      text-align: center;
    }

    .page-s-m-88__subtitle {
      font-size: 1.6em;
      color: var(--page-s-m-88__secondary-color);
      margin-bottom: 20px;
      text-align: center;
    }

    .page-s-m-88__text {
      font-size: 1em;
      margin-bottom: 15px;
      text-align: justify;
      color: #e0e0e0;
    }

    .page-s-m-88__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-s-m-88__grid-item {
      background-color: var(--page-s-m-88__dark-background);
      padding: 25px;
      border-radius: var(--page-s-m-88__border-radius);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      border: 1px solid var(--page-s-m-88__border-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-s-m-88__grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-s-m-88__grid-item-image {
      width: 100%;
      max-width: 300px;
      height: auto;
      border-radius: var(--page-s-m-88__border-radius);
      margin-bottom: 15px;
    }

    .page-s-m-88__grid-item-title {
      font-size: 1.4em;
      color: var(--page-s-m-88__primary-color);
      margin-bottom: 10px;
    }

    .page-s-m-88__grid-item-description {
      font-size: 0.95em;
      color: #cccccc;
    }

    .page-s-m-88__faq-section {
      padding: var(--page-s-m-88__padding-section);
      background-color: var(--page-s-m-88__light-background);
      border-radius: var(--page-s-m-88__border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      margin-bottom: 20px;
    }

    .page-s-m-88__faq-title {
      font-size: 2.2em;
      color: var(--page-s-m-88__primary-color);
      margin-bottom: 30px;
      text-align: center;
    }

    .page-s-m-88__faq-item {
      margin-bottom: 15px;
      border: 1px solid var(--page-s-m-88__border-color);
      border-radius: var(--page-s-m-88__border-radius);
      overflow: hidden;
      background-color: var(--page-s-m-88__dark-background);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-s-m-88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-s-m-88__secondary-color);
      color: var(--page-s-m-88__text-color);
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-s-m-88__faq-question:hover {
      background-color: #4a7dff;
    }

    .page-s-m-88__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-s-m-88__text-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

    .page-s-m-88__faq-item.active .page-s-m-88__faq-toggle {
      transform: rotate(45deg);
    }

    .page-s-m-88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: var(--page-s-m-88__dark-background);
      color: #cccccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
    }

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

    .page-s-m-88__cta-section {
      padding: var(--page-s-m-88__padding-section);
      background: linear-gradient(45deg, var(--page-s-m-88__accent-color), #ff6699);
      border-radius: var(--page-s-m-88__border-radius);
      text-align: center;
      margin-bottom: 20px;
    }

    .page-s-m-88__cta-title {
      font-size: 2em;
      color: var(--page-s-m-88__text-color);
      margin-bottom: 15px;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-s-m-88__cta-description {
      font-size: 1.1em;
      color: var(--page-s-m-88__text-color);
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-s-m-88__hero-title {
        font-size: 2.2em;
      }

      .page-s-m-88__hero-subtitle {
        font-size: 1.1em;
      }

      .page-s-m-88__title {
        font-size: 1.8em;
      }

      .page-s-m-88__subtitle {
        font-size: 1.3em;
      }

      .page-s-m-88__text {
        font-size: 0.95em;
      }

      .page-s-m-88__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-s-m-88__grid {
        grid-template-columns: 1fr;
      }

      .page-s-m-88__section,
      .page-s-m-88__faq-section,
      .page-s-m-88__cta-section {
        padding: 30px 15px;
      }

      .page-s-m-88__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-s-m-88__faq-question h3 {
        font-size: 1em;
      }

      .page-s-m-88__faq-answer {
        padding: 15px 15px;
      }

      .page-s-m-88__faq-item.active .page-s-m-88__faq-answer {
        padding: 15px 15px !important;
      }

      /* List item specific responsive rules */
      .page-s-m-88__benefits-list,
      .page-s-m-88__dream-interpretations-list {
        padding: 0;
        margin: 0;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-s-m-88__benefits-list-item,
      .page-s-m-88__dream-interpretations-list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important; /* Adjust padding as needed */
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-s-m-88__benefits-list-item:not(:last-child),
      .page-s-m-88__dream-interpretations-list-item:not(:last-child) {
          margin-bottom: 10px;
      }
    }

    @media (max-width: 480px) {
      .page-s-m-88__hero-title {
        font-size: 1.8em;
      }

      .page-s-m-88__hero-subtitle {
        font-size: 0.95em;
      }

      .page-s-m-88__title {
        font-size: 1.6em;
      }

      .page-s-m-88__subtitle {
        font-size: 1.1em;
      }
    }
  