
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #00008B; /* Dark Blue */
      --accent-color: #FF4500; /* OrangeRed */
      --text-color: #FFFFFF;
      --dark-text-color: #333333;
      --bg-color: #1a1a2e; /* Dark background */
      --card-bg: #2a2a4a;
      --border-color: #444466;
      --button-hover-color: #FFA500;
    }

    .page-will-you-be-our-ninong-and-ninang {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--bg-color);
      line-height: 1.6;
      padding-bottom: 50px;
    }

    /* Fallback for header offset if body padding-top is not set by shared.css */
    .page-will-you-be-our-ninong-and-ninang {
      padding-top: var(--header-offset, 122px);
    }

    .page-will-you-be-our-ninong-and-ninang__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-will-you-be-our-ninong-and-ninang__hero-section {
      background: linear-gradient(135deg, var(--secondary-color), var(--bg-color));
      padding: 60px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 500px;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, body handles main offset */
    }

    .page-will-you-be-our-ninong-and-ninang__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-will-you-be-our-ninong-and-ninang__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .page-will-you-be-our-ninong-and-ninang__hero-title {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-will-you-be-our-ninong-and-ninang__hero-subtitle {
      font-size: 1.5em;
      color: var(--text-color);
      margin-bottom: 30px;
    }

    .page-will-you-be-our-ninong-and-ninang__cta-button {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--text-color);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none; /* Use button tag, not a tag */
      cursor: pointer;
    }

    .page-will-you-be-our-ninong-and-ninang__cta-button:hover {
      background-color: var(--button-hover-color);
    }

    .page-will-you-be-our-ninong-and-ninang__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-will-you-be-our-ninong-and-ninang__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--accent-color);
      border-radius: 2px;
    }

    .page-will-you-be-our-ninong-and-ninang__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--text-color);
    }

    .page-will-you-be-our-ninong-and-ninang__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-will-you-be-our-ninong-and-ninang__card {
      background-color: var(--card-bg);
      border-radius: 10px;
      padding: 30px;
      text-align: left;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--border-color);
    }

    .page-will-you-be-our-ninong-and-ninang__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .page-will-you-be-our-ninong-and-ninang__card-icon {
      width: 250px; /* Min size */
      height: auto;
      margin-bottom: 20px;
      max-width: 100%;
      border-radius: 8px;
      object-fit: cover;
    }

    .page-will-you-be-our-ninong-and-ninang__card-title {
      font-size: 1.8em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-will-you-be-our-ninong-and-ninang__card-description {
      color: var(--text-color);
      font-size: 1em;
    }

    .page-will-you-be-our-ninong-and-ninang__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    .page-will-you-be-our-ninong-and-ninang__content-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-will-you-be-our-ninong-and-ninang__list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      text-align: left;
    }

    .page-will-you-be-our-ninong-and-ninang__list-item {
      background-color: var(--card-bg);
      padding: 20px;
      border-radius: 8px;
      border-left: 5px solid var(--primary-color);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      color: var(--text-color);
      font-size: 1.1em;
      box-sizing: border-box; /* Crucial for responsiveness */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

    .page-will-you-be-our-ninong-and-ninang__faq-section {
      background-color: var(--secondary-color);
      padding: 60px 20px;
    }

    .page-will-you-be-our-ninong-and-ninang__faq-list {
      max-width: 800px;
      margin: 40px auto 0 auto;
      text-align: left;
    }

    .page-will-you-be-our-ninong-and-ninang__faq-item {
      background-color: var(--card-bg);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border-color);
    }

    .page-will-you-be-our-ninong-and-ninang__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: var(--secondary-color);
      transition: background-color 0.3s ease;
      color: var(--primary-color);
    }

    .page-will-you-be-our-ninong-and-ninang__faq-question:hover {
      background-color: #0000a0;
    }

    .page-will-you-be-our-ninong-and-ninang__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-will-you-be-our-ninong-and-ninang__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-will-you-be-our-ninong-and-ninang__faq-item.active .page-will-you-be-our-ninong-and-ninang__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or similar */
    }

    .page-will-you-be-our-ninong-and-ninang__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--text-color);
      font-size: 1em;
    }

    .page-will-you-be-our-ninong-and-ninang__faq-item.active .page-will-you-be-our-ninong-and-ninang__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-will-you-be-our-ninong-and-ninang__hero-title {
        font-size: 3em;
      }
      .page-will-you-be-our-ninong-and-ninang__hero-subtitle {
        font-size: 1.3em;
      }
      .page-will-you-be-our-ninong-and-ninang__section-title {
        font-size: 2em;
      }
      .page-will-you-be-our-ninong-and-ninang__card-title {
        font-size: 1.5em;
      }
    }

    @media (max-width: 768px) {
      .page-will-you-be-our-ninong-and-ninang__hero-section {
        min-height: 400px;
        padding: 40px 15px;
      }
      .page-will-you-be-our-ninong-and-ninang__hero-title {
        font-size: 2.5em;
      }
      .page-will-you-be-our-ninong-and-ninang__hero-subtitle {
        font-size: 1.1em;
      }
      .page-will-you-be-our-ninong-and-ninang__section {
        padding: 30px 15px;
      }
      .page-will-you-be-our-ninong-and-ninang__section-title {
        font-size: 1.8em;
      }
      .page-will-you-be-our-ninong-and-ninang__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-will-you-be-our-ninong-and-ninang__grid {
        grid-template-columns: 1fr;
      }
      .page-will-you-be-our-ninong-and-ninang__card {
        padding: 25px;
      }
      .page-will-you-be-our-ninong-and-ninang__list {
        grid-template-columns: 1fr;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-will-you-be-our-ninong-and-ninang__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-will-you-be-our-ninong-and-ninang__image-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-will-you-be-our-ninong-and-ninang__content-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-will-you-be-our-ninong-and-ninang__card-icon {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-will-you-be-our-ninong-and-ninang__faq-question {
        padding: 15px 20px;
      }
      .page-will-you-be-our-ninong-and-ninang__faq-question h3 {
        font-size: 1.1em;
      }
      .page-will-you-be-our-ninong-and-ninang__faq-answer {
        padding: 0 20px;
      }
      .page-will-you-be-our-ninong-and-ninang__faq-item.active .page-will-you-be-our-ninong-and-ninang__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-will-you-be-our-ninong-and-ninang__hero-title {
        font-size: 2em;
      }
      .page-will-you-be-our-ninong-and-ninang__hero-subtitle {
        font-size: 1em;
      }
      .page-will-you-be-our-ninong-and-ninang__section-title {
        font-size: 1.5em;
      }
      .page-will-you-be-our-ninong-and-ninang__cta-button {
        font-size: 1em;
        padding: 10px 20px;
      }
    }
  