.page-poppy-playtime-plush-mommy {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-poppy-playtime-plush-mommy__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-poppy-playtime-plush-mommy__section {
      background-color: #ffffff;
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-poppy-playtime-plush-mommy__section-title {
      font-size: 2.5em;
      color: #a00;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-poppy-playtime-plush-mommy__section-subtitle {
      font-size: 1.8em;
      color: #333;
      text-align: center;
      margin-bottom: 20px;
    }

    .page-poppy-playtime-plush-mommy__text-content {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #555;
    }

    .page-poppy-playtime-plush-mommy__text-content strong {
      color: #a00;
    }

    .page-poppy-playtime-plush-mommy__button {
      display: inline-block;
      background-color: #a00;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      font-size: 1.1em;
      text-align: center;
    }

    .page-poppy-playtime-plush-mommy__button:hover {
      background-color: #c00;
    }

    /* Hero Section */
    .page-poppy-playtime-plush-mommy__hero-section {
      padding-top: 10px; /* Small top padding to respect body padding-top */
      background-color: #1a1a1a;
      color: #ffffff;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding-bottom: 60px;
    }

    .page-poppy-playtime-plush-mommy__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-poppy-playtime-plush-mommy__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 60px 20px;
    }

    .page-poppy-playtime-plush-mommy__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-poppy-playtime-plush-mommy__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      color: #eee;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-poppy-playtime-plush-mommy__hero-cta {
      padding: 15px 35px;
      font-size: 1.3em;
      background-color: #007bff;
      color: #fff;
      border-radius: 50px;
    }

    .page-poppy-playtime-plush-mommy__hero-cta:hover {
      background-color: #0056b3;
    }

    /* Payment Providers */
    .page-poppy-playtime-plush-mommy__payment-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 30px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 30px 20px;
      background-color: #f0f0f0;
      border-bottom: 1px solid #e0e0e0;
    }
    .page-poppy-playtime-plush-mommy__payment-logo {
      flex: 0 0 auto;
      width: 80px;
      height: 80px;
      max-width: 80px;
      max-height: 80px;
      box-sizing: border-box;
    }
    .page-poppy-playtime-plush-mommy__payment-logo img {
      display: block;
      width: 80px !important;
      height: 80px !important;
      max-width: 80px !important;
      max-height: 80px !important;
      object-fit: contain;
    }

    /* Quick Access */
    .page-poppy-playtime-plush-mommy__quick-access-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-poppy-playtime-plush-mommy__access-card {
      text-align: center;
      padding: 25px;
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-poppy-playtime-plush-mommy__access-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

    .page-poppy-playtime-plush-mommy__access-card-title {
      font-size: 1.4em;
      color: #a00;
      margin-bottom: 15px;
    }

    /* Core Services */
    .page-poppy-playtime-plush-mommy__service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-poppy-playtime-plush-mommy__service-card {
      background-color: #fefefe;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-poppy-playtime-plush-mommy__service-card:hover {
      transform: translateY(-8px);
    }

    .page-poppy-playtime-plush-mommy__service-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

    .page-poppy-playtime-plush-mommy__service-content {
      padding: 25px;
    }

    .page-poppy-playtime-plush-mommy__service-title {
      font-size: 1.5em;
      color: #a00;
      margin-bottom: 10px;
    }

    .page-poppy-playtime-plush-mommy__service-description {
      font-size: 1em;
      color: #666;
      margin-bottom: 20px;
    }

    /* Promotions */
    .page-poppy-playtime-plush-mommy__promo-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-poppy-playtime-plush-mommy__promo-item {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
      background-color: #fcfcfc;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    }

    .page-poppy-playtime-plush-mommy__promo-icon {
      flex-shrink: 0;
      width: 80px;
      height: 80px;
      margin-right: 20px;
      object-fit: contain;
    }

    .page-poppy-playtime-plush-mommy__promo-details {
      flex-grow: 1;
    }

    .page-poppy-playtime-plush-mommy__promo-title {
      font-size: 1.4em;
      color: #a00;
      margin-bottom: 8px;
    }

    .page-poppy-playtime-plush-mommy__promo-description {
      font-size: 1em;
      color: #666;
    }

    /* FAQ Section */
    .page-poppy-playtime-plush-mommy__faq-list {
      margin-top: 30px;
    }

    .page-poppy-playtime-plush-mommy__faq-item {
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-poppy-playtime-plush-mommy__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      background-color: #f5f5f5;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      color: #333;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-poppy-playtime-plush-mommy__faq-question:hover {
      background-color: #ebebeb;
    }

    .page-poppy-playtime-plush-mommy__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
      text-align: left;
    }

    .page-poppy-playtime-plush-mommy__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click */
      color: #a00;
    }

    .page-poppy-playtime-plush-mommy__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #ffffff;
      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-poppy-playtime-plush-mommy__faq-item.active .page-poppy-playtime-plush-mommy__faq-answer {
      max-height: 2000px !important;
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Blog Section */
    .page-poppy-playtime-plush-mommy__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-poppy-playtime-plush-mommy__blog-card {
      background-color: #ffffff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .page-poppy-playtime-plush-mommy__blog-card:hover {
      transform: translateY(-10px);
    }

    .page-poppy-playtime-plush-mommy__blog-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .page-poppy-playtime-plush-mommy__blog-content {
      padding: 25px;
    }

    .page-poppy-playtime-plush-mommy__blog-title {
      font-size: 1.6em;
      color: #a00;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .page-poppy-playtime-plush-mommy__blog-excerpt {
      font-size: 1em;
      color: #666;
      margin-bottom: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* General Image Styling */
    .page-poppy-playtime-plush-mommy img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-poppy-playtime-plush-mommy__hero-title {
        font-size: 3em;
      }
      .page-poppy-playtime-plush-mommy__hero-description {
        font-size: 1.2em;
      }
      .page-poppy-playtime-plush-mommy__section-title {
        font-size: 2em;
      }
      .page-poppy-playtime-plush-mommy__section-subtitle {
        font-size: 1.6em;
      }
    }

    @media (max-width: 768px) {
      .page-poppy-playtime-plush-mommy__container {
        padding: 15px;
      }
      .page-poppy-playtime-plush-mommy__hero-content {
        padding: 40px 15px;
      }
      .page-poppy-playtime-plush-mommy__hero-title {
        font-size: 2.5em;
      }
      .page-poppy-playtime-plush-mommy__hero-description {
        font-size: 1em;
      }
      .page-poppy-playtime-plush-mommy__hero-cta {
        padding: 10px 20px;
        font-size: 1.1em;
      }
      .page-poppy-playtime-plush-mommy__section {
        padding: 30px 15px;
      }
      .page-poppy-playtime-plush-mommy__section-title {
        font-size: 1.8em;
      }
      .page-poppy-playtime-plush-mommy__section-subtitle {
        font-size: 1.4em;
      }
      .page-poppy-playtime-plush-mommy__text-content {
        font-size: 1em;
      }

      .page-poppy-playtime-plush-mommy__quick-access-grid,
      .page-poppy-playtime-plush-mommy__service-grid,
      .page-poppy-playtime-plush-mommy__blog-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-poppy-playtime-plush-mommy__promo-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
      }
      .page-poppy-playtime-plush-mommy__promo-icon {
        margin: 0 auto 15px auto;
      }

      .page-poppy-playtime-plush-mommy__faq-question {
        padding: 15px 18px;
        font-size: 1.1em;
      }
      .page-poppy-playtime-plush-mommy__faq-answer {
        padding: 0 18px;
      }
      .page-poppy-playtime-plush-mommy__faq-item.active .page-poppy-playtime-plush-mommy__faq-answer {
        padding: 15px 18px !important;
      }
      .page-poppy-playtime-plush-mommy__blog-title {
        font-size: 1.4em;
      }

      .page-poppy-playtime-plush-mommy__payment-providers {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
      }
      .page-poppy-playtime-plush-mommy__payment-logo,
      .page-poppy-playtime-plush-mommy__payment-logo img {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
      }

      /* List items mobile responsive */
      .page-poppy-playtime-plush-mommy ul,
      .page-poppy-playtime-plush-mommy ol {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 20px !important; /* Adjust as needed */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-poppy-playtime-plush-mommy li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }