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

    .page-zo123__section {
      padding: 40px 15px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 20px;
    }

    .page-zo123__hero-section {
      background: linear-gradient(135deg, #4CAF50 0%, #2196F3 100%);
      color: #fff;
      text-align: center;
      padding: 60px 15px;
      padding-top: 10px; /* Small top padding as body handles header offset */
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 0;
    }

    .page-zo123__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      color: #fff;
    }

    .page-zo123__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-zo123__button {
      background-color: #FFC107;
      color: #333;
      border: none;
      padding: 12px 25px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: inline-block;
      margin: 5px;
      text-decoration: none;
      text-align: center;
      box-sizing: border-box;
      min-width: 120px;
    }

    .page-zo123__button:hover {
      background-color: #FFA000;
    }

    .page-zo123__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 20px auto;
      text-align: center;
    }

    .page-zo123__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 0 auto;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

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

    .page-zo123__grid-item {
      background-color: #f9f9f9;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-zo123__grid-item-title {
      font-size: 1.3em;
      margin-top: 15px;
      margin-bottom: 10px;
      color: #2196F3;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-zo123__text-center {
      text-align: center;
    }

    .page-zo123__title {
      font-size: 2em;
      color: #2196F3;
      margin-bottom: 25px;
      text-align: center;
      font-weight: bold;
    }

    .page-zo123__subtitle {
      font-size: 1.2em;
      color: #555;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-zo123__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    .page-zo123__list-item {
      background-color: #e3f2fd;
      padding: 15px 20px;
      border-radius: 5px;
      font-weight: bold;
      color: #1976D2;
      box-sizing: border-box;
      flex-basis: calc(33.333% - 10px);
      text-align: center;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

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

    .page-zo123__floating-buttons .page-zo123__button {
      flex: 1;
      margin: 0 5px;
      background-color: #FFC107;
      color: #333;
      font-size: 1.1em;
      padding: 10px 0;
    }

    .page-zo123__floating-buttons .page-zo123__button:hover {
      background-color: #FFA000;
    }

    /* FAQ Styles */
    .page-zo123__faq-section {
      padding: 40px 15px;
      max-width: 900px;
      margin: 0 auto 20px auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-zo123__faq-item {
      margin-bottom: 10px;
      border: 1px solid #eee;
      border-radius: 5px;
      overflow: hidden;
    }

    .page-zo123__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      background-color: #f5f5f5;
      cursor: pointer;
      font-weight: bold;
      color: #333;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-zo123__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-zo123__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #2196F3;
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-zo123__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      color: #2196F3;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-zo123__faq-item.active .page-zo123__faq-answer {
      max-height: 2000px !important;
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-zo123__faq-item.active .page-zo123__faq-toggle {
      content: '−';
    }

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

      .page-zo123__hero-subtitle {
        font-size: 1em;
      }

      .page-zo123__title {
        font-size: 1.6em;
      }

      .page-zo123__section {
        padding: 20px 10px;
        margin-bottom: 15px;
      }

      .page-zo123__grid {
        grid-template-columns: 1fr;
      }

      .page-zo123__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-zo123__list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-zo123__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-zo123__image-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

      .page-zo123__faq-question h3 {
        font-size: 1em;
      }

      .page-zo123__floating-buttons .page-zo123__button {
        font-size: 1em;
        padding: 8px 0;
      }
    }
  