
    /* Page-specific CSS for denon sc-me77 */
    .page-denon-sc-me77 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px;
    }

    .page-denon-sc-me77__hero-section {
      position: relative;
      width: 100%;
      height: 450px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      padding-top: 10px; /* Rely on body padding-top for header offset */
      box-sizing: border-box;
    }

    .page-denon-sc-me77__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-denon-sc-me77__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
      z-index: 2;
    }

    .page-denon-sc-me77__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
      margin: 0 auto;
    }

    .page-denon-sc-me77__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #fff;
    }

    .page-denon-sc-me77__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-denon-sc-me77__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

    .page-denon-sc-me77__section:last-of-type {
      margin-bottom: 0;
    }

    .page-denon-sc-me77__section-title {
      font-size: 2.5em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-denon-sc-me77__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #007bff;
      border-radius: 2px;
    }

    .page-denon-sc-me77__content-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-denon-sc-me77__feature-card {
      background-color: #f8f8f8;
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      min-height: 250px;
      box-sizing: border-box;
    }

    .page-denon-sc-me77__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-denon-sc-me77__feature-icon {
      width: 250px; /* Minimum size */
      height: 200px; /* Minimum size */
      margin-bottom: 15px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
      border-radius: 4px;
    }

    .page-denon-sc-me77__feature-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-denon-sc-me77__feature-description {
      font-size: 1em;
      color: #555;
      text-align: left;
    }

    .page-denon-sc-me77__image-container {
      margin: 40px auto;
      max-width: 100%;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-denon-sc-me77__image-container img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-radius: 8px;
    }

    .page-denon-sc-me77__specs-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-denon-sc-me77__specs-item {
      background-color: #f0f0f0;
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 5px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.1em;
      color: #444;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-denon-sc-me77__specs-item strong {
      color: #2c3e50;
    }

    .page-denon-sc-me77__cta-button {
      display: block;
      width: fit-content;
      margin: 40px auto 20px auto;
      padding: 15px 30px;
      background-color: #007bff;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none; /* Use button tag, so no default link styling */
      cursor: pointer;
    }

    .page-denon-sc-me77__cta-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* FAQ Section Styles */
    .page-denon-sc-me77__faq-section {
      padding: 40px 20px;
      max-width: 1000px;
      margin: 0 auto 30px auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-denon-sc-me77__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      box-sizing: border-box;
    }

    .page-denon-sc-me77__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-denon-sc-me77__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 15px;
      font-size: 1.2em;
      color: #2c3e50;
      cursor: pointer;
      user-select: none;
      background-color: #f8f8f8;
      border-radius: 5px;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-denon-sc-me77__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-denon-sc-me77__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-denon-sc-me77__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-denon-sc-me77__faq-item.active .page-denon-sc-me77__faq-toggle {
      transform: rotate(45deg); /* Changes + to x or similar visual */
    }

    .page-denon-sc-me77__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;
      background-color: #ffffff;
      border-bottom-left-radius: 5px;
      border-bottom-right-radius: 5px;
      box-sizing: border-box;
    }

    .page-denon-sc-me77__faq-item.active .page-denon-sc-me77__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-denon-sc-me77__faq-answer p {
      margin: 0;
      font-size: 1em;
      color: #555;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-denon-sc-me77__hero-section {
        height: 350px;
      }

      .page-denon-sc-me77__hero-title {
        font-size: 2.5em;
      }

      .page-denon-sc-me77__hero-description {
        font-size: 1em;
      }

      .page-denon-sc-me77__section-title {
        font-size: 2em;
      }

      .page-denon-sc-me77__section {
        padding: 20px 15px;
        margin-bottom: 20px;
      }

      .page-denon-sc-me77__content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-denon-sc-me77__feature-card {
        padding: 20px;
        min-height: auto;
      }

      .page-denon-sc-me77__feature-icon {
        width: 200px; /* Adjust for mobile, but keep minimum */
        height: 150px; /* Adjust for mobile, but keep minimum */
        margin-bottom: 10px;
      }

      .page-denon-sc-me77__feature-title {
        font-size: 1.3em;
      }

      .page-denon-sc-me77__feature-description {
        font-size: 0.95em;
      }

      .page-denon-sc-me77__specs-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 15px;
        font-size: 1em;
        width: 100% !important; /* List item responsive */
        max-width: 100% !important; /* List item responsive */
        margin-left: 0 !important; /* List item responsive */
        margin-right: 0 !important; /* List item responsive */
        word-wrap: break-word !important; /* Text wrapping */
        overflow-wrap: break-word !important; /* Text wrapping */
        word-break: break-word !important; /* Text wrapping for long words */
      }

      .page-denon-sc-me77__specs-item strong {
        margin-bottom: 5px;
        display: block;
      }

      .page-denon-sc-me77__specs-list {
        width: 100% !important; /* List container responsive */
        max-width: 100% !important; /* List container responsive */
        padding: 0 !important; /* List container responsive */
        margin-left: 0 !important; /* List container responsive */
        margin-right: 0 !important; /* List container responsive */
      }

      .page-denon-sc-me77__faq-question {
        padding: 12px 15px;
        font-size: 1.1em;
      }

      .page-denon-sc-me77__faq-question h3 {
        font-size: 1.1em;
      }

      .page-denon-sc-me77__faq-toggle {
        font-size: 1.3em;
      }

      .page-denon-sc-me77__faq-answer {
        padding: 15px 15px;
      }
      
      .page-denon-sc-me77__image-container {
        margin: 20px auto;
        border-radius: 4px;
      }

      .page-denon-sc-me77__image-container img {
        border-radius: 4px;
      }
    }

    @media (max-width: 480px) {
      .page-denon-sc-me77__hero-title {
        font-size: 2em;
      }

      .page-denon-sc-me77__hero-description {
        font-size: 0.9em;
      }

      .page-denon-sc-me77__section-title {
        font-size: 1.8em;
      }

      .page-denon-sc-me77__cta-button {
        padding: 12px 20px;
        font-size: 1em;
      }
    }
  