/* CSS for page-puppy-playtime-chapter-3-pictures */
    .page-puppy-playtime-chapter-3-pictures {
      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-puppy-playtime-chapter-3-pictures__hero-section {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 20px;
      color: #fff;
      overflow: hidden;
      min-height: 500px;
    }

    .page-puppy-playtime-chapter-3-pictures__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .page-puppy-playtime-chapter-3-pictures__hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.6); /* Darken image for text readability */
    }

    .page-puppy-playtime-chapter-3-pictures__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-puppy-playtime-chapter-3-pictures__hero-content h1 {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-puppy-playtime-chapter-3-pictures__hero-content p {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #eee;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-puppy-playtime-chapter-3-pictures__hero-buttons,
    .page-puppy-playtime-chapter-3-pictures__cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-puppy-playtime-chapter-3-pictures__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap;
    }

    .page-puppy-playtime-chapter-3-pictures__button--primary {
      background-color: #ff4500; /* OrangeRed */
      color: #fff;
      border: 2px solid #ff4500;
    }

    .page-puppy-playtime-chapter-3-pictures__button--primary:hover {
      background-color: #e03e00;
      transform: translateY(-2px);
    }

    .page-puppy-playtime-chapter-3-pictures__button--secondary {
      background-color: transparent;
      color: #fff;
      border: 2px solid #fff;
    }

    .page-puppy-playtime-chapter-3-pictures__button--secondary:hover {
      background-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
    }

    .page-puppy-playtime-chapter-3-pictures__features-section {
      padding: 80px 20px;
      text-align: center;
      background-color: #fff;
    }

    .page-puppy-playtime-chapter-3-pictures__features-section h2 {
      font-size: 2.2em;
      margin-bottom: 40px;
      color: #333;
    }

    .page-puppy-playtime-chapter-3-pictures__features-section p {
      max-width: 900px;
      margin: 0 auto 50px auto;
      font-size: 1.1em;
    }

    .page-puppy-playtime-chapter-3-pictures__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-puppy-playtime-chapter-3-pictures__feature-item {
      background-color: #f0f0f0;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .page-puppy-playtime-chapter-3-pictures__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-puppy-playtime-chapter-3-pictures__feature-image {
      width: 100%;
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: cover;
      min-height: 200px; /* Minimum image size */
    }

    .page-puppy-playtime-chapter-3-pictures__feature-item h3 {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: #ff4500;
    }

    .page-puppy-playtime-chapter-3-pictures__feature-item p {
      font-size: 1em;
      color: #555;
      margin-bottom: 0;
    }

    .page-puppy-playtime-chapter-3-pictures__cta-section {
      background-color: #2c3e50; /* Dark blue */
      color: #fff;
      padding: 80px 20px;
      text-align: center;
    }

    .page-puppy-playtime-chapter-3-pictures__cta-section h2 {
      font-size: 2.5em;
      margin-bottom: 25px;
      color: #fff;
    }

    .page-puppy-playtime-chapter-3-pictures__cta-section p {
      font-size: 1.2em;
      max-width: 900px;
      margin: 0 auto 40px auto;
      color: #eee;
    }

    .page-puppy-playtime-chapter-3-pictures__faq-section {
      padding: 80px 20px;
      background-color: #f8f8f8;
      text-align: center;
    }

    .page-puppy-playtime-chapter-3-pictures__faq-section h2 {
      font-size: 2.2em;
      margin-bottom: 40px;
      color: #333;
    }

    .page-puppy-playtime-chapter-3-pictures__faq-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

    .page-puppy-playtime-chapter-3-pictures__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .page-puppy-playtime-chapter-3-pictures__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #fff;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-puppy-playtime-chapter-3-pictures__faq-question:hover {
      background-color: #f5f5f5;
    }

    .page-puppy-playtime-chapter-3-pictures__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-puppy-playtime-chapter-3-pictures__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #ff4500;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-puppy-playtime-chapter-3-pictures__faq-item.active .page-puppy-playtime-chapter-3-pictures__faq-toggle {
      transform: rotate(45deg);
    }

    .page-puppy-playtime-chapter-3-pictures__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding 0 */
      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;
      font-size: 1em;
    }

    .page-puppy-playtime-chapter-3-pictures__faq-item.active .page-puppy-playtime-chapter-3-pictures__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show content */
      padding: 20px 25px !important; /* Expanded padding */
      opacity: 1;
    }

    .page-puppy-playtime-chapter-3-pictures__faq-answer p {
      margin: 0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-puppy-playtime-chapter-3-pictures__hero-section {
        padding: 40px 15px;
        min-height: 400px;
      }

      .page-puppy-playtime-chapter-3-pictures__hero-content h1 {
        font-size: 2em;
      }

      .page-puppy-playtime-chapter-3-pictures__hero-content p {
        font-size: 1em;
      }

      .page-puppy-playtime-chapter-3-pictures__hero-buttons,
      .page-puppy-playtime-chapter-3-pictures__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-puppy-playtime-chapter-3-pictures__button {
        width: 100%;
        max-width: 300px; /* Limit button width on small screens */
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-puppy-playtime-chapter-3-pictures__features-section,
      .page-puppy-playtime-chapter-3-pictures__cta-section,
      .page-puppy-playtime-chapter-3-pictures__faq-section {
        padding: 50px 15px;
      }

      .page-puppy-playtime-chapter-3-pictures__features-section h2,
      .page-puppy-playtime-chapter-3-pictures__cta-section h2,
      .page-puppy-playtime-chapter-3-pictures__faq-section h2 {
        font-size: 1.8em;
      }

      .page-puppy-playtime-chapter-3-pictures__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-puppy-playtime-chapter-3-pictures__feature-item {
        padding: 20px;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-puppy-playtime-chapter-3-pictures__feature-item h3 {
        font-size: 1.3em;
      }

      .page-puppy-playtime-chapter-3-pictures__faq-question {
        padding: 15px 20px;
      }

      .page-puppy-playtime-chapter-3-pictures__faq-question h3 {
        font-size: 1.1em;
      }

      .page-puppy-playtime-chapter-3-pictures__faq-answer {
        padding: 0 20px;
      }

      .page-puppy-playtime-chapter-3-pictures__faq-item.active .page-puppy-playtime-chapter-3-pictures__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsiveness */
      .page-puppy-playtime-chapter-3-pictures__hero-image img,
      .page-puppy-playtime-chapter-3-pictures__feature-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-puppy-playtime-chapter-3-pictures__feature-item,
      .page-puppy-playtime-chapter-3-pictures__faq-container {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
    }

    /* Ensure sufficient contrast */
    .page-puppy-playtime-chapter-3-pictures h1,
    .page-puppy-playtime-chapter-3-pictures h2,
    .page-puppy-playtime-chapter-3-pictures h3 {
      color: #333; /* Dark color for headings on light backgrounds */
    }
    .page-puppy-playtime-chapter-3-pictures__hero-content h1,
    .page-puppy-playtime-chapter-3-pictures__hero-content p,
    .page-puppy-playtime-chapter-3-pictures__cta-section h2,
    .page-puppy-playtime-chapter-3-pictures__cta-section p,
    .page-puppy-playtime-chapter-3-pictures__button--secondary {
      color: #fff; /* Light color for text on dark backgrounds */
    }
    .page-puppy-playtime-chapter-3-pictures__button--primary {
      color: #fff; /* White text on orange button */
    }
    /* Ensure default text color on light backgrounds */
    .page-puppy-playtime-chapter-3-pictures p {
      color: #555;
    }
    .page-puppy-playtime-chapter-3-pictures__faq-answer p {
      color: #555;
    }