.page-kuya-j-in-mall-of-asia {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Decorative padding, relying on body padding for header offset */
    }

    .page-kuya-j-in-mall-of-asia__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-kuya-j-in-mall-of-asia__section-title {
      font-size: 2.5em;
      color: #a04000; /* Dark orange/brown, contrasting with light background */
      text-align: center;
      margin-bottom: 40px;
      padding-top: 40px;
      font-weight: bold;
    }

    .page-kuya-j-in-mall-of-asia__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

    /* Hero Section */
    .page-kuya-j-in-mall-of-asia__hero-section {
      position: relative;
      width: 100%;
      height: 600px; /* Fixed height for desktop */
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-bottom: 50px;
    }

    .page-kuya-j-in-mall-of-asia__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6); /* Slightly darken image for text readability */
      max-width: 100%;
    }

    .page-kuya-j-in-mall-of-asia__hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
      text-align: center;
      max-width: 800px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
      border-radius: 10px;
    }

    .page-kuya-j-in-mall-of-asia__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: #fff;
      font-weight: bold;
    }

    .page-kuya-j-in-mall-of-asia__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-kuya-j-in-mall-of-asia__button {
      background-color: #e67e22; /* Orange button, good contrast */
      color: #fff;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
      font-weight: bold;
    }

    .page-kuya-j-in-mall-of-asia__button:hover {
      background-color: #d35400; /* Darker orange on hover */
    }

    /* About Section */
    .page-kuya-j-in-mall-of-asia__about-section {
      padding-bottom: 50px;
      background-color: #fff;
    }

    .page-kuya-j-in-mall-of-asia__image-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-kuya-j-in-mall-of-asia__grid-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      max-width: 100%;
    }

    /* Menu Section */
    .page-kuya-j-in-mall-of-asia__menu-section {
      background-color: #f2f2f2;
      padding-bottom: 50px;
    }

    .page-kuya-j-in-mall-of-asia__menu-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      list-style: none;
      padding: 0;
      margin-top: 40px;
    }

    .page-kuya-j-in-mall-of-asia__menu-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box; /* Required for list items */
    }

    .page-kuya-j-in-mall-of-asia__menu-item-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%;
    }

    .page-kuya-j-in-mall-of-asia__menu-item-title {
      font-size: 1.5em;
      color: #a04000;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-kuya-j-in-mall-of-asia__menu-item-description {
      font-size: 1em;
      color: #555;
      padding: 0 15px;
    }

    /* Location Section */
    .page-kuya-j-in-mall-of-asia__location-section {
      padding-bottom: 50px;
      background-color: #fff;
    }

    .page-kuya-j-in-mall-of-asia__details-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      font-size: 1.1em;
      color: #444;
    }

    .page-kuya-j-in-mall-of-asia__details-item {
      margin-bottom: 10px;
      padding-left: 20px;
      position: relative;
    }

    .page-kuya-j-in-mall-of-asia__details-item strong {
      color: #a04000;
    }

    .page-kuya-j-in-mall-of-asia__map-placeholder {
      margin-top: 40px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .page-kuya-j-in-mall-of-asia__map-image {
      width: 100%;
      height: 450px;
      object-fit: cover;
      max-width: 100%;
    }

    /* FAQ Section */
    .page-kuya-j-in-mall-of-asia__faq-section {
      background-color: #f2f2f2;
      padding-bottom: 50px;
    }

    .page-kuya-j-in-mall-of-asia__faq-list {
      margin-top: 40px;
    }

    .page-kuya-j-in-mall-of-asia__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .page-kuya-j-in-mall-of-asia__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #fff;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
    }

    .page-kuya-j-in-mall-of-asia__faq-question:hover {
      background-color: #f9f9f9;
    }

    .page-kuya-j-in-mall-of-asia__faq-title {
      font-size: 1.25em;
      color: #333;
      margin: 0;
      pointer-events: none; /* Prevent title from blocking click event */
      font-weight: bold;
    }

    .page-kuya-j-in-mall-of-asia__faq-toggle {
      font-size: 1.8em;
      color: #a04000;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-kuya-j-in-mall-of-asia__faq-item.active .page-kuya-j-in-mall-of-asia__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or '−' */
    }

    .page-kuya-j-in-mall-of-asia__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #fff;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-kuya-j-in-mall-of-asia__faq-item.active .page-kuya-j-in-mall-of-asia__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-kuya-j-in-mall-of-asia__faq-answer p {
      margin: 0;
      color: #555;
      font-size: 1em;
      padding-bottom: 10px; /* Added for spacing at the end of answer */
    }

    /* CTA Section */
    .page-kuya-j-in-mall-of-asia__cta-section {
      background-color: #a04000; /* Theme color */
      padding: 60px 0;
      text-align: center;
      color: #fff;
    }

    .page-kuya-j-in-mall-of-asia__cta-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-kuya-j-in-mall-of-asia__cta-section .page-kuya-j-in-mall-of-asia__section-title {
      color: #fff;
      padding-top: 0;
      margin-bottom: 20px;
    }

    .page-kuya-j-in-mall-of-asia__cta-section .page-kuya-j-in-mall-of-asia__text-content {
      color: #f0f0f0;
      max-width: 800px;
      margin-bottom: 30px;
      font-size: 1.2em;
    }

    .page-kuya-j-in-mall-of-asia__cta-button {
      background-color: #ffcc00; /* Bright yellow for contrast */
      color: #333;
      padding: 18px 35px;
      border: none;
      border-radius: 8px;
      font-size: 1.3em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-kuya-j-in-mall-of-asia__cta-button:hover {
      background-color: #e6b800; /* Darker yellow on hover */
      transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-kuya-j-in-mall-of-asia__hero-title {
        font-size: 3em;
      }
      .page-kuya-j-in-mall-of-asia__hero-subtitle {
        font-size: 1.3em;
      }
      .page-kuya-j-in-mall-of-asia__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-kuya-j-in-mall-of-asia__hero-section {
        height: 450px;
      }
      .page-kuya-j-in-mall-of-asia__hero-title {
        font-size: 2.5em;
      }
      .page-kuya-j-in-mall-of-asia__hero-subtitle {
        font-size: 1.2em;
      }
      .page-kuya-j-in-mall-of-asia__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-kuya-j-in-mall-of-asia__text-content {
        font-size: 1em;
      }
      .page-kuya-j-in-mall-of-asia__button,
      .page-kuya-j-in-mall-of-asia__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-kuya-j-in-mall-of-asia__menu-list {
        grid-template-columns: 1fr; /* Single column for mobile */
        padding: 0 15px !important; /* Adjust padding for container */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-kuya-j-in-mall-of-asia__menu-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      
      .page-kuya-j-in-mall-of-asia__details-list {
        padding: 0 15px; /* Adjust for mobile spacing */
      }
      .page-kuya-j-in-mall-of-asia__details-item {
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
      }

      .page-kuya-j-in-mall-of-asia__map-image {
        height: 300px;
      }

      .page-kuya-j-in-mall-of-asia__faq-question {
        padding: 15px 20px;
      }
      .page-kuya-j-in-mall-of-asia__faq-title {
        font-size: 1.1em;
      }
      .page-kuya-j-in-mall-of-asia__faq-answer {
        padding: 0 20px;
      }
      .page-kuya-j-in-mall-of-asia__faq-item.active .page-kuya-j-in-mall-of-asia__faq-answer {
        padding: 15px 20px !important;
      }

      .page-kuya-j-in-mall-of-asia__cta-section {
        padding: 40px 0;
      }
      .page-kuya-j-in-mall-of-asia__cta-section .page-kuya-j-in-mall-of-asia__text-content {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-kuya-j-in-mall-of-asia__hero-section {
        height: 350px;
      }
      .page-kuya-j-in-mall-of-asia__hero-title {
        font-size: 2em;
      }
      .page-kuya-j-in-mall-of-asia__hero-subtitle {
        font-size: 1em;
      }
      .page-kuya-j-in-mall-of-asia__section-title {
        font-size: 1.5em;
      }
      .page-kuya-j-in-mall-of-asia__button,
      .page-kuya-j-in-mall-of-asia__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-kuya-j-in-mall-of-asia__image-grid {
        grid-template-columns: 1fr;
      }
      .page-kuya-j-in-mall-of-asia__grid-image {
        height: 250px;
      }
      .page-kuya-j-in-mall-of-asia__map-image {
        height: 250px;
      }
    }