.page-what-is-poppy-playtime-about {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a1a;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-what-is-poppy-playtime-about__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-what-is-poppy-playtime-about__hero-section {
      position: relative;
      width: 100%;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, assuming body already handles main header offset */
    }

    .page-what-is-poppy-playtime-about__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .page-what-is-poppy-playtime-about__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.5); /* Darken image for better text contrast */
    }

    .page-what-is-poppy-playtime-about__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-what-is-poppy-playtime-about__hero-content {
      position: relative;
      z-index: 2;
      color: #ffffff;
      max-width: 800px;
      padding: 20px;
    }

    .page-what-is-poppy-playtime-about__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #ffcc00;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      word-wrap: break-word;
    }

    .page-what-is-poppy-playtime-about__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
      word-wrap: break-word;
    }

    .page-what-is-poppy-playtime-about__hero-button {
      display: inline-block;
      background-color: #ff4500;
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-what-is-poppy-playtime-about__hero-button:hover {
      background-color: #e03c00;
    }

    /* General Section Styles */
    .page-what-is-poppy-playtime-about__section-title {
      font-size: 2.5em;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 40px;
      padding-top: 40px;
      word-wrap: break-word;
    }

    .page-what-is-poppy-playtime-about__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
      word-wrap: break-word;
    }

    .page-what-is-poppy-playtime-about__image-container {
      text-align: center;
      margin: 30px 0;
    }

    .page-what-is-poppy-playtime-about__content-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    /* Character Grid Section */
    .page-what-is-poppy-playtime-about__character-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin: 40px 0;
      justify-content: center;
    }

    .page-what-is-poppy-playtime-about__character-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-what-is-poppy-playtime-about__character-card:hover {
      transform: translateY(-5px);
    }

    .page-what-is-poppy-playtime-about__character-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-what-is-poppy-playtime-about__character-name {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-what-is-poppy-playtime-about__character-description {
      font-size: 0.95em;
      color: #c0c0c0;
      word-wrap: break-word;
    }

    .page-what-is-poppy-playtime-about__cta-button {
      display: block;
      width: fit-content;
      margin: 40px auto 0 auto;
      background-color: #007bff;
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-what-is-poppy-playtime-about__cta-button:hover {
      background-color: #0056b3;
    }

    /* FAQ Section */
    .page-what-is-poppy-playtime-about__faq-section {
      padding: 60px 0;
      background-color: #222222;
    }

    .page-what-is-poppy-playtime-about__faq-list {
      margin-top: 30px;
    }

    .page-what-is-poppy-playtime-about__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      overflow: hidden;
    }

    .page-what-is-poppy-playtime-about__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #333333;
      border-bottom: 1px solid #444444;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-what-is-poppy-playtime-about__faq-question:hover {
      background-color: #444444;
    }

    .page-what-is-poppy-playtime-about__faq-title {
      font-size: 1.2em;
      color: #ffcc00;
      margin: 0;
      flex-grow: 1;
      word-wrap: break-word;
    }

    .page-what-is-poppy-playtime-about__faq-toggle {
      font-size: 1.5em;
      color: #ffcc00;
      margin-left: 10px;
      transition: transform 0.3s ease;
    }

    .page-what-is-poppy-playtime-about__faq-item.active .page-what-is-poppy-playtime-about__faq-toggle {
      transform: rotate(45deg);
    }

    .page-what-is-poppy-playtime-about__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-what-is-poppy-playtime-about__faq-item.active .page-what-is-poppy-playtime-about__faq-answer {
      max-height: 2000px !important;
      padding: 20px !important;
      opacity: 1;
    }

    .page-what-is-poppy-playtime-about__faq-text {
      font-size: 1em;
      color: #c0c0c0;
      margin: 0;
      word-wrap: break-word;
    }

    /* Final CTA Section */
    .page-what-is-poppy-playtime-about__cta-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #1a1a1a;
    }

    .page-what-is-poppy-playtime-about__main-cta-button {
      display: inline-block;
      background-color: #ff4500;
      color: #ffffff;
      padding: 18px 40px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin-top: 30px;
    }

    .page-what-is-poppy-playtime-about__main-cta-button:hover {
      background-color: #e03c00;
      transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-what-is-poppy-playtime-about__hero-title {
        font-size: 2.8em;
      }
      .page-what-is-poppy-playtime-about__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-what-is-poppy-playtime-about__hero-section {
        height: 50vh;
      }
      .page-what-is-poppy-playtime-about__hero-title {
        font-size: 2.2em;
      }
      .page-what-is-poppy-playtime-about__hero-subtitle {
        font-size: 1em;
      }
      .page-what-is-poppy-playtime-about__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-what-is-poppy-playtime-about__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 30px;
      }
      .page-what-is-poppy-playtime-about__paragraph,
      .page-what-is-poppy-playtime-about__faq-text,
      .page-what-is-poppy-playtime-about__character-description {
        font-size: 0.95em;
      }

      /* Image responsiveness for small screens */
      .page-what-is-poppy-playtime-about__content-image,
      .page-what-is-poppy-playtime-about__character-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-what-is-poppy-playtime-about__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      /* Character grid - ensure items stack or fit well */
      .page-what-is-poppy-playtime-about__character-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-what-is-poppy-playtime-about__character-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px;
      }

      /* FAQ responsiveness */
      .page-what-is-poppy-playtime-about__faq-question {
        padding: 12px 15px;
      }
      .page-what-is-poppy-playtime-about__faq-title {
        font-size: 1.1em;
      }
      .page-what-is-poppy-playtime-about__faq-toggle {
        font-size: 1.3em;
      }
      .page-what-is-poppy-playtime-about__faq-answer {
        padding: 0 15px;
      }
      .page-what-is-poppy-playtime-about__faq-item.active .page-what-is-poppy-playtime-about__faq-answer {
        padding: 15px !important;
      }
      .page-what-is-poppy-playtime-about__faq-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-what-is-poppy-playtime-about__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

    @media (max-width: 480px) {
      .page-what-is-poppy-playtime-about__hero-title {
        font-size: 1.8em;
      }
      .page-what-is-poppy-playtime-about__hero-subtitle {
        font-size: 0.9em;
      }
      .page-what-is-poppy-playtime-about__hero-button,
      .page-what-is-poppy-playtime-about__cta-button,
      .page-what-is-poppy-playtime-about__main-cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-what-is-poppy-playtime-about__section-title {
        font-size: 1.5em;
      }
    }