/* Base styles for the page wrapper */
    .page-kuya-big-brother-face__wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-kuya-big-brother-face__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 10px 0 60px 0; /* Adjust top padding for header offset */
      background-color: #f8f9fa;
      color: #333;
      position: relative;
      overflow: hidden;
    }

    .page-kuya-big-brother-face__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin-bottom: 30px;
    }

    .page-kuya-big-brother-face__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #007bff; /* Primary brand color */
      line-height: 1.2;
    }

    .page-kuya-big-brother-face__highlight {
      color: #dc3545; /* Highlight color */
    }

    .page-kuya-big-brother-face__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .page-kuya-big-brother-face__inline-link {
      color: #007bff;
      text-decoration: none;
      font-weight: bold;
    }

    .page-kuya-big-brother-face__inline-link:hover {
      text-decoration: underline;
    }

    .page-kuya-big-brother-face__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-kuya-big-brother-face__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-kuya-big-brother-face__button--primary {
      background-color: #007bff;
      color: #fff;
      border: 2px solid #007bff;
    }

    .page-kuya-big-brother-face__button--primary:hover {
      background-color: #0056b3;
      border-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-kuya-big-brother-face__button--secondary {
      background-color: #fff;
      color: #007bff;
      border: 2px solid #007bff;
    }

    .page-kuya-big-brother-face__button--secondary:hover {
      background-color: #e9ecef;
      transform: translateY(-2px);
    }

    .page-kuya-big-brother-face__button--small {
      padding: 10px 20px;
      font-size: 0.9em;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-kuya-big-brother-face__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-top: 30px;
    }

    .page-kuya-big-brother-face__hero-image {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
      object-fit: cover;
    }

    /* General Section Styling */
    .page-kuya-big-brother-face__section-title {
      font-size: 2.2em;
      color: #333;
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
    }

    .page-kuya-big-brother-face__section-subtitle {
      font-size: 1.1em;
      color: #555;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* About Section */
    .page-kuya-big-brother-face__about-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .page-kuya-big-brother-face__content-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
      margin-top: 40px;
    }

    .page-kuya-big-brother-face__content-text {
      flex: 1;
      min-width: 300px;
      line-height: 1.8;
      color: #444;
    }

    .page-kuya-big-brother-face__content-text p {
      margin-bottom: 15px;
    }

    .page-kuya-big-brother-face__content-image-container {
      flex: 1;
      min-width: 300px;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-kuya-big-brother-face__content-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* Features Section */
    .page-kuya-big-brother-face__features-section {
      padding: 60px 0;
      background-color: #f0f2f5;
    }

    .page-kuya-big-brother-face__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-kuya-big-brother-face__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-kuya-big-brother-face__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-kuya-big-brother-face__feature-icon {
      width: 100%; /* Ensure icon fills container */
      max-width: 200px; /* Min size constraint */
      height: auto;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      object-fit: contain;
    }

    .page-kuya-big-brother-face__feature-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 15px;
    }

    .page-kuya-big-brother-face__feature-description {
      font-size: 1em;
      color: #555;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    /* Promotions Section */
    .page-kuya-big-brother-face__promotions-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .page-kuya-big-brother-face__promo-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-kuya-big-brother-face__promo-card {
      background-color: #f8f9fa;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      max-width: 500px;
      width: 100%;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
    }

    .page-kuya-big-brother-face__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-kuya-big-brother-face__promo-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
    }

    .page-kuya-big-brother-face__promo-content {
      padding: 25px;
      text-align: center;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-kuya-big-brother-face__promo-title {
      font-size: 1.6em;
      color: #333;
      margin-bottom: 15px;
    }

    .page-kuya-big-brother-face__promo-description {
      font-size: 1em;
      color: #555;
      line-height: 1.6;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    /* FAQ Section */
    .page-kuya-big-brother-face__faq-section {
      padding: 60px 0;
      background-color: #f0f2f5;
    }

    .page-kuya-big-brother-face__faq-list {
      max-width: 800px;
      margin: 40px auto 0 auto;
    }

    .page-kuya-big-brother-face__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-kuya-big-brother-face__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #007bff;
      color: #fff;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-kuya-big-brother-face__faq-question:hover {
      background-color: #0056b3;
    }

    .page-kuya-big-brother-face__faq-title {
      font-size: 1.2em;
      margin: 0;
      color: #fff;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

    .page-kuya-big-brother-face__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
    }

    .page-kuya-big-brother-face__faq-item.active .page-kuya-big-brother-face__faq-toggle {
      transform: rotate(45deg); /* Plus to X */
    }

    .page-kuya-big-brother-face__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;
      background-color: #fefefe;
      color: #444;
    }

    .page-kuya-big-brother-face__faq-item.active .page-kuya-big-brother-face__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-kuya-big-brother-face__faq-answer p {
      margin-bottom: 15px;
      line-height: 1.6;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-kuya-big-brother-face__hero-title {
        font-size: 2.4em;
      }
      .page-kuya-big-brother-face__section-title {
        font-size: 2em;
      }
      .page-kuya-big-brother-face__content-grid {
        flex-direction: column;
      }
      .page-kuya-big-brother-face__content-text,
      .page-kuya-big-brother-face__content-image-container {
        min-width: unset;
      }
    }

    @media (max-width: 768px) {
      .page-kuya-big-brother-face__hero-section {
        padding-bottom: 40px;
      }
      .page-kuya-big-brother-face__hero-title {
        font-size: 2em;
      }
      .page-kuya-big-brother-face__hero-description {
        font-size: 1em;
      }
      .page-kuya-big-brother-face__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-kuya-big-brother-face__button {
        width: 100%;
        max-width: 300px;
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-kuya-big-brother-face__section-title {
        font-size: 1.8em;
        padding-top: 30px;
      }
      .page-kuya-big-brother-face__section-subtitle {
        font-size: 0.95em;
        margin-bottom: 30px;
      }
      .page-kuya-big-brother-face__features-grid,
      .page-kuya-big-brother-face__promo-cards {
        gap: 20px;
      }
      .page-kuya-big-brother-face__feature-item,
      .page-kuya-big-brother-face__promo-card {
        padding: 20px;
      }
      .page-kuya-big-brother-face__promo-image {
        height: 200px;
      }
      .page-kuya-big-brother-face__faq-question {
        padding: 15px 20px;
      }
      .page-kuya-big-brother-face__faq-title {
        font-size: 1.1em;
      }
      .page-kuya-big-brother-face__faq-answer {
        padding: 0 20px;
      }
      .page-kuya-big-brother-face__faq-item.active .page-kuya-big-brother-face__faq-answer {
        padding: 15px 20px !important;
      }

      /* Mobile image responsiveness for all images */
      .page-kuya-big-brother-face__hero-image,
      .page-kuya-big-brother-face__content-image,
      .page-kuya-big-brother-face__feature-icon,
      .page-kuya-big-brother-face__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* Mobile container responsiveness */
      .page-kuya-big-brother-face__hero-image-container,
      .page-kuya-big-brother-face__content-image-container,
      .page-kuya-big-brother-face__feature-item, /* Feature item is a container for icon */
      .page-kuya-big-brother-face__promo-card { /* Promo card is a container for image */
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important; /* Ensure no extra padding from parent */
        padding-right: 0 !important; /* Ensure no extra padding from parent */
      }

      /* Mobile list item specific rules for word-wrap */
      .page-kuya-big-brother-face__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-kuya-big-brother-face__hero-title {
        font-size: 1.8em;
      }
      .page-kuya-big-brother-face__section-title {
        font-size: 1.6em;
      }
      .page-kuya-big-brother-face__button {
        font-size: 0.9em;
      }
      .page-kuya-big-brother-face__faq-title {
        font-size: 1em;
      }
    }