.page-the-happos-family-playtime {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Small top padding, assuming body has header offset */
    }

    .page-the-happos-family-playtime__section-title {
      font-size: 2.5em;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 40px;
      padding: 0 15px;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .page-the-happos-family-playtime__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
      }
    }

    /* Hero Section */
    .page-the-happos-family-playtime__hero-section {
      position: relative;
      width: 100%;
      height: 600px; /* Adjust height as needed */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      margin-bottom: 50px;
      box-sizing: border-box;
    }

    .page-the-happos-family-playtime__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2; /* Image behind overlay */
      max-width: 100%; /* Responsive image */
    }

    .page-the-happos-family-playtime__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
      z-index: -1; /* Overlay between image and content */
    }

    .page-the-happos-family-playtime__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      padding: 20px;
      border-radius: 10px;
    }

    .page-the-happos-family-playtime__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: bold;
      line-height: 1.2;
      color: #fff;
    }

    .page-the-happos-family-playtime__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-the-happos-family-playtime__cta-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-the-happos-family-playtime__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .page-the-happos-family-playtime__hero-section {
        height: 450px;
        margin-bottom: 30px;
      }

      .page-the-happos-family-playtime__hero-title {
        font-size: 2em;
      }

      .page-the-happos-family-playtime__hero-description {
        font-size: 1em;
      }

      .page-the-happos-family-playtime__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }

    /* Intro Section */
    .page-the-happos-family-playtime__intro-section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto 50px auto;
      text-align: center;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-the-happos-family-playtime__intro-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-the-happos-family-playtime__intro-item {
      background-color: #f0f0f0;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: center;
      box-sizing: border-box;
    }

    .page-the-happos-family-playtime__intro-icon {
      width: 100%;
      max-width: 100px;
      height: auto;
      margin-bottom: 20px;
      max-height: 100px; /* Ensure images are not too large */
      object-fit: contain;
    }

    .page-the-happos-family-playtime__intro-heading {
      font-size: 1.5em;
      color: #333;
      margin-bottom: 15px;
    }

    .page-the-happos-family-playtime__intro-text {
      font-size: 1em;
      color: #555;
    }

    @media (max-width: 768px) {
      .page-the-happos-family-playtime__intro-section {
        padding: 30px 15px;
        margin-bottom: 30px;
      }
      .page-the-happos-family-playtime__intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-the-happos-family-playtime__intro-item {
        padding: 20px;
      }
      .page-the-happos-family-playtime__intro-item img {
        max-width: 80px !important;
        height: auto !important;
      }
    }

    /* Quick Access Section */
    .page-the-happos-family-playtime__quick-access-section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto 50px auto;
      text-align: center;
      background-color: #e0f7fa;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-the-happos-family-playtime__access-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-the-happos-family-playtime__access-button {
      background-color: #007bff;
      color: #fff;
      padding: 15px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
      flex-grow: 1;
      max-width: 250px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-the-happos-family-playtime__access-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .page-the-happos-family-playtime__quick-access-section {
        padding: 30px 15px;
        margin-bottom: 30px;
      }
      .page-the-happos-family-playtime__access-buttons {
        flex-direction: column;
        align-items: center;
      }
      .page-the-happos-family-playtime__access-button {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding: 12px 20px !important;
      }
    }

    /* Games Section */
    .page-the-happos-family-playtime__games-section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto 50px auto;
      text-align: center;
    }

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

    .page-the-happos-family-playtime__game-card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-the-happos-family-playtime__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-the-happos-family-playtime__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; /* Responsive image */
    }

    .page-the-happos-family-playtime__game-title {
      font-size: 1.6em;
      color: #333;
      margin: 20px 15px 10px 15px;
    }

    .page-the-happos-family-playtime__game-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
      flex-grow: 1;
      margin-bottom: 20px;
    }

    .page-the-happos-family-playtime__game-button {
      display: inline-block;
      background-color: #ff5722;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1em;
      font-weight: bold;
      margin: 0 15px 20px 15px;
      transition: background-color 0.3s ease;
    }

    .page-the-happos-family-playtime__game-button:hover {
      background-color: #e64a19;
    }

    @media (max-width: 768px) {
      .page-the-happos-family-playtime__games-section {
        padding: 30px 15px;
        margin-bottom: 30px;
      }
      .page-the-happos-family-playtime__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-the-happos-family-playtime__game-image {
        height: 180px !important;
        max-width: 100% !important;
      }
      .page-the-happos-family-playtime__game-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
    }

    /* Promotions Section */
    .page-the-happos-family-playtime__promo-section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto 50px auto;
      text-align: center;
      background-color: #fff3e0;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-the-happos-family-playtime__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-the-happos-family-playtime__promo-card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-the-happos-family-playtime__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-the-happos-family-playtime__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%; /* Responsive image */
    }

    .page-the-happos-family-playtime__promo-title {
      font-size: 1.6em;
      color: #333;
      margin: 20px 15px 10px 15px;
    }

    .page-the-happos-family-playtime__promo-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
      flex-grow: 1;
      margin-bottom: 20px;
    }

    .page-the-happos-family-playtime__promo-button {
      display: inline-block;
      background-color: #ff9800;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1em;
      font-weight: bold;
      margin: 0 15px 20px 15px;
      transition: background-color 0.3s ease;
    }

    .page-the-happos-family-playtime__promo-button:hover {
      background-color: #fb8c00;
    }

    @media (max-width: 768px) {
      .page-the-happos-family-playtime__promo-section {
        padding: 30px 15px;
        margin-bottom: 30px;
      }
      .page-the-happos-family-playtime__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-the-happos-family-playtime__promo-image {
        height: 180px !important;
        max-width: 100% !important;
      }
      .page-the-happos-family-playtime__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
    }

    /* Security & Support Section */
    .page-the-happos-family-playtime__security-support-section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto 50px auto;
      text-align: center;
      background-color: #e8f5e9;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-the-happos-family-playtime__security-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-the-happos-family-playtime__security-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: center;
      box-sizing: border-box;
    }

    .page-the-happos-family-playtime__security-icon {
      width: 100%;
      max-width: 100px;
      height: auto;
      margin-bottom: 20px;
      max-height: 100px; /* Ensure images are not too large */
      object-fit: contain;
    }

    .page-the-happos-family-playtime__security-heading {
      font-size: 1.5em;
      color: #333;
      margin-bottom: 15px;
    }

    .page-the-happos-family-playtime__security-text {
      font-size: 1em;
      color: #555;
    }

    @media (max-width: 768px) {
      .page-the-happos-family-playtime__security-support-section {
        padding: 30px 15px;
        margin-bottom: 30px;
      }
      .page-the-happos-family-playtime__security-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-the-happos-family-playtime__security-item {
        padding: 20px;
      }
      .page-the-happos-family-playtime__security-item img {
        max-width: 80px !important;
        height: auto !important;
      }
    }

    /* FAQ Section */
    .page-the-happos-family-playtime__faq-section {
      padding: 50px 20px;
      max-width: 1000px;
      margin: 0 auto 50px auto;
      text-align: center;
    }

    .page-the-happos-family-playtime__faq-container {
      margin-top: 30px;
      text-align: left;
    }

    .page-the-happos-family-playtime__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-the-happos-family-playtime__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #f0f4f8;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-the-happos-family-playtime__faq-question:hover {
      background-color: #e0eaf3;
    }

    .page-the-happos-family-playtime__faq-heading {
      font-size: 1.2em;
      color: #333;
      margin: 0;
      pointer-events: none; /* Prevent text selection interference */
      flex-grow: 1;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-the-happos-family-playtime__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      margin-left: 15px;
      pointer-events: none; /* Prevent icon from capturing clicks */
      transition: transform 0.3s ease;
    }

    .page-the-happos-family-playtime__faq-item.active .page-the-happos-family-playtime__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
      color: #dc3545;
    }

    .page-the-happos-family-playtime__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      opacity: 0;
      color: #555;
      font-size: 0.95em;
      background-color: #fff;
    }

    .page-the-happos-family-playtime__faq-item.active .page-the-happos-family-playtime__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-the-happos-family-playtime__faq-answer p {
      margin: 0;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    @media (max-width: 768px) {
      .page-the-happos-family-playtime__faq-section {
        padding: 30px 15px;
        margin-bottom: 30px;
      }
      .page-the-happos-family-playtime__faq-question {
        padding: 15px 20px;
      }
      .page-the-happos-family-playtime__faq-heading {
        font-size: 1.1em;
      }
      .page-the-happos-family-playtime__faq-toggle {
        font-size: 1.5em;
        margin-left: 10px;
      }
      .page-the-happos-family-playtime__faq-answer {
        padding: 0 20px;
      }
      .page-the-happos-family-playtime__faq-item.active .page-the-happos-family-playtime__faq-answer {
        padding: 15px 20px !important;
      }
      .page-the-happos-family-playtime__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
    }

    /* Blog Section */
    .page-the-happos-family-playtime__blog-section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto 50px auto;
      text-align: center;
    }

    .page-the-happos-family-playtime__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-the-happos-family-playtime__blog-card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-the-happos-family-playtime__blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-the-happos-family-playtime__blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; /* Responsive image */
    }

    .page-the-happos-family-playtime__blog-card-title {
      font-size: 1.4em;
      color: #333;
      margin: 20px 15px 10px 15px;
      line-height: 1.3;
    }

    .page-the-happos-family-playtime__blog-excerpt {
      font-size: 0.9em;
      color: #666;
      padding: 0 15px;
      flex-grow: 1;
      margin-bottom: 15px;
    }

    .page-the-happos-family-playtime__blog-date {
      display: block;
      font-size: 0.8em;
      color: #999;
      margin-top: 10px;
    }

    .page-the-happos-family-playtime__blog-link {
      display: inline-block;
      background-color: #17a2b8;
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 0.9em;
      font-weight: bold;
      margin: 0 15px 20px 15px;
      transition: background-color 0.3s ease;
    }

    .page-the-happos-family-playtime__blog-link:hover {
      background-color: #138496;
    }

    @media (max-width: 768px) {
      .page-the-happos-family-playtime__blog-section {
        padding: 30px 15px;
        margin-bottom: 30px;
      }
      .page-the-happos-family-playtime__blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-the-happos-family-playtime__blog-image {
        height: 180px !important;
        max-width: 100% !important;
      }
      .page-the-happos-family-playtime__blog-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
    }