
    /* Base styles for the page */
    .page-ninong-ry-cookbook {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px; /* Add some padding at the bottom before footer */
      padding-top: 10px; /* Small top padding, assuming body padding-top handles header offset */
    }

    .page-ninong-ry-cookbook__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-ninong-ry-cookbook__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('[GALLERY:hero:1920x1080:filipino_cuisine,cookbook,cooking]');
      background-size: cover;
      background-position: center;
      color: #fff;
      text-align: center;
      padding: 80px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      box-sizing: border-box;
      margin-bottom: 40px;
    }

    .page-ninong-ry-cookbook__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      color: #ffcc00; /* Gold-like color for emphasis */
    }

    .page-ninong-ry-cookbook__hero-subtitle {
      font-size: 1.5em;
      max-width: 800px;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }

    .page-ninong-ry-cookbook__cta-button {
      background-color: #e04e0e; /* A vibrant, warm color */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      display: inline-block; /* Ensure it behaves like a button */
      border: none; /* Make it look like a button */
      cursor: pointer; /* Indicate it's clickable */
    }

    .page-ninong-ry-cookbook__cta-button:hover {
      background-color: #c4400c;
    }

    /* Section Styling */
    .page-ninong-ry-cookbook__section {
      padding: 40px 0;
      background-color: #fff;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-ninong-ry-cookbook__section-alt {
      padding: 40px 0;
      background-color: #f0f0f0;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-ninong-ry-cookbook__section-title {
      font-size: 2.5em;
      color: #e04e0e;
      text-align: center;
      margin-bottom: 30px;
      font-weight: 600;
    }

    .page-ninong-ry-cookbook__content-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: center;
    }

    .page-ninong-ry-cookbook__text-content p {
      margin-bottom: 15px;
      font-size: 1.1em;
      color: #555;
    }

    .page-ninong-ry-cookbook__image-wrapper {
      text-align: center;
    }

    .page-ninong-ry-cookbook__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* Features/Highlights Section */
    .page-ninong-ry-cookbook__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-ninong-ry-cookbook__feature-item {
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-ninong-ry-cookbook__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    }

    .page-ninong-ry-cookbook__feature-icon {
      margin-bottom: 15px;
      width: 200px; /* Minimum size requirement */
      height: auto;
      max-width: 100%;
      border-radius: 5px;
    }

    .page-ninong-ry-cookbook__feature-title {
      font-size: 1.4em;
      color: #e04e0e;
      margin-bottom: 10px;
    }

    .page-ninong-ry-cookbook__feature-description {
      font-size: 1em;
      color: #666;
    }

    /* Recipe Showcase */
    .page-ninong-ry-cookbook__recipe-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-ninong-ry-cookbook__recipe-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-ninong-ry-cookbook__recipe-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    }

    .page-ninong-ry-cookbook__recipe-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-ninong-ry-cookbook__recipe-content {
      padding: 20px;
    }

    .page-ninong-ry-cookbook__recipe-title {
      font-size: 1.5em;
      color: #e04e0e;
      margin-bottom: 10px;
    }

    .page-ninong-ry-cookbook__recipe-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    /* FAQ Section */
    .page-ninong-ry-cookbook__faq-section {
      background-color: #fff;
      padding: 40px 0;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-ninong-ry-cookbook__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-ninong-ry-cookbook__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-ninong-ry-cookbook__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #fcfcfc;
      cursor: pointer;
      user-select: none;
      font-size: 1.15em;
      color: #333;
      transition: background-color 0.3s ease;
    }

    .page-ninong-ry-cookbook__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-ninong-ry-cookbook__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjust to match parent font size */
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-ninong-ry-cookbook__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e04e0e;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-ninong-ry-cookbook__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      background-color: #fff;
      color: #555;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
    }

    .page-ninong-ry-cookbook__faq-answer p {
      margin-top: 0;
      margin-bottom: 15px;
      padding-top: 5px;
    }

    .page-ninong-ry-cookbook__faq-item.active .page-ninong-ry-cookbook__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 20px !important; /* Final padding */
      opacity: 1;
    }

    .page-ninong-ry-cookbook__faq-item.active .page-ninong-ry-cookbook__faq-toggle {
      transform: rotate(45deg); /* Optional: visual cue for open state */
      content: '−'; /* This will be handled by JS */
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-ninong-ry-cookbook__hero-title {
        font-size: 2.8em;
      }

      .page-ninong-ry-cookbook__hero-subtitle {
        font-size: 1.3em;
      }

      .page-ninong-ry-cookbook__section-title {
        font-size: 2em;
      }

      .page-ninong-ry-cookbook__content-grid {
        grid-template-columns: 1fr;
      }

      .page-ninong-ry-cookbook__image-wrapper {
        order: -1; /* Image first on mobile */
        margin-bottom: 20px;
      }
    }

    @media (max-width: 768px) {
      .page-ninong-ry-cookbook__container {
        padding: 0 15px;
      }

      .page-ninong-ry-cookbook__hero-section {
        padding: 60px 15px;
        min-height: 300px;
      }

      .page-ninong-ry-cookbook__hero-title {
        font-size: 2.2em;
      }

      .page-ninong-ry-cookbook__hero-subtitle {
        font-size: 1.1em;
      }

      .page-ninong-ry-cookbook__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-ninong-ry-cookbook__section {
        padding: 30px 0;
      }

      .page-ninong-ry-cookbook__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
      }

      .page-ninong-ry-cookbook__text-content p {
        font-size: 1em;
      }

      /* Responsive list items for features and recipes */
      .page-ninong-ry-cookbook__features-grid,
      .page-ninong-ry-cookbook__recipe-grid {
        grid-template-columns: 1fr; /* Stack items */
        gap: 20px;
      }

      .page-ninong-ry-cookbook__feature-item,
      .page-ninong-ry-cookbook__recipe-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding: 20px !important; /* Adjust padding for mobile */
      }

      .page-ninong-ry-cookbook__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-ninong-ry-cookbook__faq-answer {
        padding: 0 15px;
      }

      .page-ninong-ry-cookbook__faq-item.active .page-ninong-ry-cookbook__faq-answer {
        padding: 15px 15px !important;
      }

      .page-ninong-ry-cookbook__faq-answer p {
        font-size: 0.95em;
      }

      .page-ninong-ry-cookbook__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-ninong-ry-cookbook__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-ninong-ry-cookbook__hero-title {
        font-size: 1.8em;
      }

      .page-ninong-ry-cookbook__hero-subtitle {
        font-size: 0.95em;
      }

      .page-ninong-ry-cookbook__section-title {
        font-size: 1.5em;
      }

      .page-ninong-ry-cookbook__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }
  