
    /* Base styles */
    .page-how-many-ninong-and-ninang-for-wedding {
      font-family: 'Arial', sans-serif;
      color: #333333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 40px;
    }

    .page-how-many-ninong-and-ninang-for-wedding__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-how-many-ninong-and-ninang-for-wedding__hero-section {
      position: relative;
      background-color: #e0eafc; /* Light blue background */
      padding: 10px 0 60px 0; /* Rely on body padding for top, add bottom for content */
      text-align: center;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-how-many-ninong-and-ninang-for-wedding__hero-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
      filter: brightness(0.6); /* Darken image for text readability */
    }

    .page-how-many-ninong-and-ninang-for-wedding__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 20px;
      color: #ffffff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-how-many-ninong-and-ninang-for-wedding__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffffff;
      line-height: 1.2;
    }

    .page-how-many-ninong-and-ninang-for-wedding__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      font-weight: normal;
    }

    /* Content Sections */
    .page-how-many-ninong-and-ninang-for-wedding__section {
      padding: 40px 0;
      background-color: #ffffff;
      margin-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      border-radius: 8px;
    }

    .page-how-many-ninong-and-ninang-for-wedding__section--alt {
      background-color: #f0f4f8; /* Slightly different background for contrast */
    }

    .page-how-many-ninong-and-ninang-for-wedding__section-title {
      font-size: 2.2em;
      color: #0056b3; /* Darker blue */
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-how-many-ninong-and-ninang-for-wedding__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #007bff; /* Medium blue */
      border-radius: 2px;
    }

    .page-how-many-ninong-and-ninang-for-wedding__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #555555;
    }

    .page-how-many-ninong-and-ninang-for-wedding__text-content strong {
      color: #333333;
    }

    .page-how-many-ninong-and-ninang-for-wedding__image-full-width {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin: 30px 0;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      object-fit: cover;
      box-sizing: border-box; /* Required for responsive images */
    }

    .page-how-many-ninong-and-ninang-for-wedding__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-how-many-ninong-and-ninang-for-wedding__list-item {
      background-color: #f9f9f9;
      padding: 20px;
      border-left: 5px solid #007bff;
      border-radius: 5px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
      box-sizing: border-box; /* Required for responsive list items */
    }

    .page-how-many-ninong-and-ninang-for-wedding__list-item h3 {
      color: #0056b3;
      margin-top: 0;
      font-size: 1.3em;
    }

    /* Call to Action - Placeholder, no actual link */
    .page-how-many-ninong-and-ninang-for-wedding__cta-button {
      display: inline-block;
      background-color: #007bff;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: 20px;
      border: none; /* Ensure it's a button, not a link */
      cursor: pointer;
      font-size: 1em;
    }

    .page-how-many-ninong-and-ninang-for-wedding__cta-button:hover {
      background-color: #0056b3;
    }

    /* FAQ Section */
    .page-how-many-ninong-and-ninang-for-wedding__faq-section {
      padding: 40px 0;
      background-color: #ffffff;
      margin-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      border-radius: 8px;
    }

    .page-how-many-ninong-and-ninang-for-wedding__faq-list {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-how-many-ninong-and-ninang-for-wedding__faq-item {
      border-bottom: 1px solid #eeeeee;
      margin-bottom: 10px;
    }

    .page-how-many-ninong-and-ninang-for-wedding__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-how-many-ninong-and-ninang-for-wedding__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      background-color: #f5f5f5;
      cursor: pointer;
      font-weight: bold;
      color: #333333;
      border-radius: 5px;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-how-many-ninong-and-ninang-for-wedding__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-how-many-ninong-and-ninang-for-wedding__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #0056b3;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-how-many-ninong-and-ninang-for-wedding__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-how-many-ninong-and-ninang-for-wedding__faq-item.active .page-how-many-ninong-and-ninang-for-wedding__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or - */
      color: #e74c3c;
    }

    .page-how-many-ninong-and-ninang-for-wedding__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555555;
    }

    .page-how-many-ninong-and-ninang-for-wedding__faq-item.active .page-how-many-ninong-and-ninang-for-wedding__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-how-many-ninong-and-ninang-for-wedding__hero-title {
        font-size: 2em;
      }

      .page-how-many-ninong-and-ninang-for-wedding__hero-subtitle {
        font-size: 1em;
      }

      .page-how-many-ninong-and-ninang-for-wedding__section-title {
        font-size: 1.8em;
      }

      .page-how-many-ninong-and-ninang-for-wedding__text-content {
        font-size: 1em;
      }

      .page-how-many-ninong-and-ninang-for-wedding__list {
        grid-template-columns: 1fr; /* Stack list items on mobile */
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-how-many-ninong-and-ninang-for-wedding__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
      }

      .page-how-many-ninong-and-ninang-for-wedding__list-item p,
      .page-how-many-ninong-and-ninang-for-wedding__text-content p,
      .page-how-many-ninong-and-ninang-for-wedding__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-how-many-ninong-and-ninang-for-wedding__faq-question {
        padding: 12px;
      }

      .page-how-many-ninong-and-ninang-for-wedding__faq-question h3 {
        font-size: 1em;
      }

      .page-how-many-ninong-and-ninang-for-wedding__faq-answer {
        padding: 15px 12px;
      }

      /* Ensure all images are responsive */
      .page-how-many-ninong-and-ninang-for-wedding__image-full-width {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-how-many-ninong-and-ninang-for-wedding__hero-section {
        padding-bottom: 40px;
      }
      .page-how-many-ninong-and-ninang-for-wedding__hero-content {
        padding: 20px;
      }
    }
  