:root {
      --page-poppy-playtime-t34-primary-color: #EE4B2B; /* A vibrant orange/red, fitting 'poppy' */
      --page-poppy-playtime-t34-secondary-color: #FFD700; /* Gold/yellow for accent */
      --page-poppy-playtime-t34-text-color: #333;
      --page-poppy-playtime-t34-light-text-color: #fff;
      --page-poppy-playtime-t34-background-color: #f8f8f8;
      --page-poppy-playtime-t34-dark-background-color: #222;
      --page-poppy-playtime-t34-card-background: #ffffff;
      --page-poppy-playtime-t34-border-color: #eee;
      --page-poppy-playtime-t34-button-hover: #D0391A;
      --page-poppy-playtime-t34-transition-speed: 0.3s ease;
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-poppy-playtime-t34-text-color);
      background-color: var(--page-poppy-playtime-t34-background-color);
      margin: 0;
      padding: 0;
    }

    .page-poppy-playtime-t34 {
      padding-top: 10px; /* Decorative top padding, assuming body has header offset */
    }

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

    .page-poppy-playtime-t34__section-title {
      font-size: 2.5em;
      color: var(--page-poppy-playtime-t34-primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-poppy-playtime-t34__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-poppy-playtime-t34-secondary-color);
      border-radius: 2px;
    }

    .page-poppy-playtime-t34__button {
      display: inline-block;
      background-color: var(--page-poppy-playtime-t34-primary-color);
      color: var(--page-poppy-playtime-t34-light-text-color);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color var(--page-poppy-playtime-t34-transition-speed);
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-poppy-playtime-t34__button:hover {
      background-color: var(--page-poppy-playtime-t34-button-hover);
    }

    /* Hero Section */
    .page-poppy-playtime-t34__hero-section {
      position: relative;
      color: var(--page-poppy-playtime-t34-light-text-color);
      text-align: center;
      padding: 100px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
      overflow: hidden;
      background-color: var(--page-poppy-playtime-t34-dark-background-color);
    }

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

    .page-poppy-playtime-t34__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.5); /* Darken image for text readability */
    }

    .page-poppy-playtime-t34__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 0 20px;
    }

    .page-poppy-playtime-t34__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: var(--page-poppy-playtime-t34-light-text-color);
    }

    .page-poppy-playtime-t34__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-poppy-playtime-t34__hero-actions {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-poppy-playtime-t34__hero-button {
      display: inline-block;
      background-color: var(--page-poppy-playtime-t34-primary-color);
      color: var(--page-poppy-playtime-t34-light-text-color);
      padding: 18px 35px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color var(--page-poppy-playtime-t34-transition-speed), transform var(--page-poppy-playtime-t34-transition-speed);
      border: none;
      cursor: pointer;
    }

    .page-poppy-playtime-t34__hero-button:hover {
      background-color: var(--page-poppy-playtime-t34-button-hover);
      transform: translateY(-3px);
    }

    .page-poppy-playtime-t34__hero-button--secondary {
      background-color: transparent;
      border: 2px solid var(--page-poppy-playtime-t34-secondary-color);
      color: var(--page-poppy-playtime-t34-secondary-color);
    }

    .page-poppy-playtime-t34__hero-button--secondary:hover {
      background-color: var(--page-poppy-playtime-t34-secondary-color);
      color: var(--page-poppy-playtime-t34-dark-background-color);
    }

    /* Partner/Vendor Logo Section */
    .page-poppy-playtime-t34__payment-providers {
      display: flex;
      flex-direction: column; /* Changed to column for title above logos */
      align-items: center;
      padding: 40px 20px;
      background-color: var(--page-poppy-playtime-t34-card-background);
      border-bottom: 1px solid var(--page-poppy-playtime-t34-border-color);
    }

    .page-poppy-playtime-t34__payment-logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 30px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-poppy-playtime-t34__payment-logo {
      flex: 0 0 auto;
      width: 80px;
      height: 80px;
      max-width: 80px;
      max-height: 80px;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #fff; /* Ensure logos are visible on any background */
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .page-poppy-playtime-t34__payment-logo img {
      display: block;
      width: 80px !important;
      height: 80px !important;
      max-width: 80px !important;
      max-height: 80px !important;
      object-fit: contain;
      padding: 5px; /* Add some padding inside the logo box */
    }

    /* Intro Section */
    .page-poppy-playtime-t34__intro-section {
      padding: 60px 0;
      background-color: var(--page-poppy-playtime-t34-background-color);
      text-align: center;
    }

    .page-poppy-playtime-t34__intro-section .page-poppy-playtime-t34__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--page-poppy-playtime-t34-text-color);
    }

    /* Quick Access Section */
    .page-poppy-playtime-t34__quick-access-section {
      padding: 60px 0;
      background-color: var(--page-poppy-playtime-t34-dark-background-color);
      color: var(--page-poppy-playtime-t34-light-text-color);
      text-align: center;
    }

    .page-poppy-playtime-t34__quick-access-section .page-poppy-playtime-t34__section-title {
      color: var(--page-poppy-playtime-t34-light-text-color);
    }

    .page-poppy-playtime-t34__quick-access-section .page-poppy-playtime-t34__section-title::after {
      background-color: var(--page-poppy-playtime-t34-primary-color);
    }

    .page-poppy-playtime-t34__access-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-poppy-playtime-t34__access-card {
      background-color: var(--page-poppy-playtime-t34-card-background);
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      text-decoration: none;
      color: var(--page-poppy-playtime-t34-text-color);
      transition: transform var(--page-poppy-playtime-t34-transition-speed), box-shadow var(--page-poppy-playtime-t34-transition-speed);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-sizing: border-box;
    }

    .page-poppy-playtime-t34__access-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .page-poppy-playtime-t34__access-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Maintain aspect ratio */
    }

    .page-poppy-playtime-t34__access-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--page-poppy-playtime-t34-primary-color);
    }

    .page-poppy-playtime-t34__access-description {
      font-size: 0.95em;
      color: #666;
    }

    /* Games Section */
    .page-poppy-playtime-t34__games-section {
      padding: 60px 0;
      background-color: var(--page-poppy-playtime-t34-background-color);
      text-align: center;
    }

    .page-poppy-playtime-t34__game-tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 40px;
      border-bottom: 2px solid var(--page-poppy-playtime-t34-border-color);
      padding-bottom: 10px;
    }

    .page-poppy-playtime-t34__game-tab-button {
      background-color: transparent;
      border: none;
      padding: 12px 25px;
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-poppy-playtime-t34-text-color);
      cursor: pointer;
      transition: color var(--page-poppy-playtime-t34-transition-speed), border-bottom var(--page-poppy-playtime-t34-transition-speed);
      border-bottom: 3px solid transparent;
    }

    .page-poppy-playtime-t34__game-tab-button:hover {
      color: var(--page-poppy-playtime-t34-primary-color);
    }

    .page-poppy-playtime-t34__game-tab-button.active {
      color: var(--page-poppy-playtime-t34-primary-color);
      border-bottom: 3px solid var(--page-poppy-playtime-t34-primary-color);
    }

    .page-poppy-playtime-t34__game-content {
      margin-top: 30px;
    }

    .page-poppy-playtime-t34__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      display: none; /* Hidden by default */
    }

    .page-poppy-playtime-t34__game-grid.active {
      display: grid; /* Shown when active */
    }

    .page-poppy-playtime-t34__game-card {
      background-color: var(--page-poppy-playtime-t34-card-background);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      text-align: left;
      transition: transform var(--page-poppy-playtime-t34-transition-speed);
      box-sizing: border-box;
    }

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

    .page-poppy-playtime-t34__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Maintain aspect ratio */
    }

    .page-poppy-playtime-t34__game-card h3,
    .page-poppy-playtime-t34__game-card p {
      padding: 0 20px;
    }

    .page-poppy-playtime-t34__game-name {
      font-size: 1.3em;
      margin-top: 15px;
      margin-bottom: 10px;
      color: var(--page-poppy-playtime-t34-primary-color);
    }

    .page-poppy-playtime-t34__game-description {
      font-size: 0.9em;
      color: #555;
      margin-bottom: 20px;
    }

    .page-poppy-playtime-t34__game-button {
      display: block;
      background-color: var(--page-poppy-playtime-t34-secondary-color);
      color: var(--page-poppy-playtime-t34-dark-background-color);
      padding: 12px 20px;
      margin: 0 20px 20px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color var(--page-poppy-playtime-t34-transition-speed);
      text-align: center;
    }

    .page-poppy-playtime-t34__game-button:hover {
      background-color: #e6c200;
    }

    /* Promotions Section */
    .page-poppy-playtime-t34__promotions-section {
      padding: 60px 0;
      background-color: var(--page-poppy-playtime-t34-dark-background-color);
      color: var(--page-poppy-playtime-t34-light-text-color);
      text-align: center;
    }

    .page-poppy-playtime-t34__promotions-section .page-poppy-playtime-t34__section-title {
      color: var(--page-poppy-playtime-t34-light-text-color);
    }

    .page-poppy-playtime-t34__promotions-section .page-poppy-playtime-t34__section-title::after {
      background-color: var(--page-poppy-playtime-t34-primary-color);
    }

    .page-poppy-playtime-t34__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-poppy-playtime-t34__promo-card {
      background-color: var(--page-poppy-playtime-t34-card-background);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      text-align: left;
      color: var(--page-poppy-playtime-t34-text-color);
      transition: transform var(--page-poppy-playtime-t34-transition-speed);
      box-sizing: border-box;
    }

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

    .page-poppy-playtime-t34__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Maintain aspect ratio */
    }

    .page-poppy-playtime-t34__promo-card h3,
    .page-poppy-playtime-t34__promo-card p {
      padding: 0 20px;
    }

    .page-poppy-playtime-t34__promo-title {
      font-size: 1.3em;
      margin-top: 15px;
      margin-bottom: 10px;
      color: var(--page-poppy-playtime-t34-primary-color);
    }

    .page-poppy-playtime-t34__promo-description {
      font-size: 0.9em;
      color: #555;
      margin-bottom: 20px;
    }

    .page-poppy-playtime-t34__promo-button {
      display: block;
      background-color: var(--page-poppy-playtime-t34-primary-color);
      color: var(--page-poppy-playtime-t34-light-text-color);
      padding: 12px 20px;
      margin: 0 20px 20px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color var(--page-poppy-playtime-t34-transition-speed);
      text-align: center;
    }

    .page-poppy-playtime-t34__promo-button:hover {
      background-color: var(--page-poppy-playtime-t34-button-hover);
    }

    /* Security Section */
    .page-poppy-playtime-t34__security-section {
      padding: 60px 0;
      background-color: var(--page-poppy-playtime-t34-background-color);
      text-align: center;
    }

    .page-poppy-playtime-t34__security-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-poppy-playtime-t34__security-item {
      background-color: var(--page-poppy-playtime-t34-card-background);
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      box-sizing: border-box;
    }

    .page-poppy-playtime-t34__security-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Maintain aspect ratio */
    }

    .page-poppy-playtime-t34__security-item-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--page-poppy-playtime-t34-primary-color);
    }

    .page-poppy-playtime-t34__security-item-description {
      font-size: 0.95em;
      color: #666;
    }

    /* FAQ Section */
    .page-poppy-playtime-t34__faq-section {
      padding: 60px 0;
      background-color: var(--page-poppy-playtime-t34-dark-background-color);
      color: var(--page-poppy-playtime-t34-light-text-color);
    }

    .page-poppy-playtime-t34__faq-section .page-poppy-playtime-t34__section-title {
      color: var(--page-poppy-playtime-t34-light-text-color);
    }

    .page-poppy-playtime-t34__faq-section .page-poppy-playtime-t34__section-title::after {
      background-color: var(--page-poppy-playtime-t34-primary-color);
    }

    .page-poppy-playtime-t34__faq-list {
      max-width: 900px;
      margin: 40px auto 0 auto;
    }

    .page-poppy-playtime-t34__faq-item {
      background-color: var(--page-poppy-playtime-t34-card-background);
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      color: var(--page-poppy-playtime-t34-text-color);
      box-sizing: border-box;
    }

    .page-poppy-playtime-t34__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      background-color: #fff;
      border-bottom: 1px solid var(--page-poppy-playtime-t34-border-color);
      transition: background-color var(--page-poppy-playtime-t34-transition-speed);
      user-select: none;
    }

    .page-poppy-playtime-t34__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-poppy-playtime-t34__faq-title {
      font-size: 1.2em;
      margin: 0;
      color: var(--page-poppy-playtime-t34-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-poppy-playtime-t34__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-poppy-playtime-t34-secondary-color);
      transition: transform var(--page-poppy-playtime-t34-transition-speed);
      pointer-events: none; /* Prevent span from blocking click event */
    }

    .page-poppy-playtime-t34__faq-item.active .page-poppy-playtime-t34__faq-toggle {
      transform: rotate(45deg); /* + becomes x */
    }

    .page-poppy-playtime-t34__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.4s ease;
      opacity: 0;
      font-size: 0.95em;
      color: #444;
    }

    .page-poppy-playtime-t34__faq-item.active .page-poppy-playtime-t34__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-poppy-playtime-t34__faq-answer p {
      margin: 0;
    }

    /* Blog Section */
    .page-poppy-playtime-t34__blog-section {
      padding: 60px 0;
      background-color: var(--page-poppy-playtime-t34-background-color);
      text-align: center;
    }

    .page-poppy-playtime-t34__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-poppy-playtime-t34__blog-card {
      background-color: var(--page-poppy-playtime-t34-card-background);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      text-align: left;
      transition: transform var(--page-poppy-playtime-t34-transition-speed);
      box-sizing: border-box;
    }

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

    .page-poppy-playtime-t34__blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Maintain aspect ratio */
    }

    .page-poppy-playtime-t34__blog-card h3,
    .page-poppy-playtime-t34__blog-card p {
      padding: 0 20px;
    }

    .page-poppy-playtime-t34__blog-title {
      font-size: 1.3em;
      margin-top: 15px;
      margin-bottom: 5px;
      color: var(--page-poppy-playtime-t34-primary-color);
    }

    .page-poppy-playtime-t34__blog-date {
      font-size: 0.85em;
      color: #999;
      margin-bottom: 15px;
    }

    .page-poppy-playtime-t34__blog-summary {
      font-size: 0.9em;
      color: #555;
      margin-bottom: 20px;
    }

    .page-poppy-playtime-t34__blog-button {
      display: block;
      background-color: var(--page-poppy-playtime-t34-secondary-color);
      color: var(--page-poppy-playtime-t34-dark-background-color);
      padding: 12px 20px;
      margin: 0 20px 20px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color var(--page-poppy-playtime-t34-transition-speed);
      text-align: center;
    }

    .page-poppy-playtime-t34__blog-button:hover {
      background-color: #e6c200;
    }

    /* General Image Responsiveness */
    .page-poppy-playtime-t34 img:not(.page-poppy-playtime-t34__payment-logo img) {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below image */
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-poppy-playtime-t34__hero-section {
        padding: 80px 0;
        min-height: 400px;
      }

      .page-poppy-playtime-t34__hero-title {
        font-size: 2.5em;
      }

      .page-poppy-playtime-t34__hero-subtitle {
        font-size: 1em;
      }

      .page-poppy-playtime-t34__hero-actions {
        flex-direction: column;
        gap: 15px;
      }

      .page-poppy-playtime-t34__hero-button {
        width: 80%;
        max-width: 300px;
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-poppy-playtime-t34__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-poppy-playtime-t34__payment-providers {
        flex-direction: row; /* Keep row for logo grid on mobile as per instruction */
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 30px 15px;
      }
      .page-poppy-playtime-t34__payment-logo,
      .page-poppy-playtime-t34__payment-logo img {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
      }

      .page-poppy-playtime-t34__container {
        padding: 15px;
      }

      .page-poppy-playtime-t34__intro-section,
      .page-poppy-playtime-t34__quick-access-section,
      .page-poppy-playtime-t34__games-section,
      .page-poppy-playtime-t34__promotions-section,
      .page-poppy-playtime-t34__security-section,
      .page-poppy-playtime-t34__faq-section,
      .page-poppy-playtime-t34__blog-section {
        padding: 40px 0;
      }

      .page-poppy-playtime-t34__quick-access-section .page-poppy-playtime-t34__access-grid,
      .page-poppy-playtime-t34__game-grid,
      .page-poppy-playtime-t34__promo-grid,
      .page-poppy-playtime-t34__security-content,
      .page-poppy-playtime-t34__blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-poppy-playtime-t34__access-card,
      .page-poppy-playtime-t34__game-card,
      .page-poppy-playtime-t34__promo-card,
      .page-poppy-playtime-t34__security-item,
      .page-poppy-playtime-t34__blog-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding: 20px; /* Adjust padding for mobile */
      }

      .page-poppy-playtime-t34__game-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
      }

      .page-poppy-playtime-t34__game-tab-button {
        width: 100%;
        border-bottom: none;
        border-radius: 8px;
        background-color: #f0f0f0;
      }
      
      .page-poppy-playtime-t34__game-tab-button.active {
        background-color: var(--page-poppy-playtime-t34-primary-color);
        color: var(--page-poppy-playtime-t34-light-text-color);
        border-bottom: none;
      }

      .page-poppy-playtime-t34__game-image,
      .page-poppy-playtime-t34__promo-image,
      .page-poppy-playtime-t34__blog-image,
      .page-poppy-playtime-t34__access-icon,
      .page-poppy-playtime-t34__security-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-poppy-playtime-t34__faq-question {
        padding: 15px 20px;
      }

      .page-poppy-playtime-t34__faq-title {
        font-size: 1.1em;
      }

      .page-poppy-playtime-t34__faq-answer {
        padding: 0 20px;
      }

      .page-poppy-playtime-t34__faq-item.active .page-poppy-playtime-t34__faq-answer {
        padding: 15px 20px !important;
      }
    }