
    :root {
      --primary-color: #007bff;
      --secondary-color: #6c757d;
      --accent-color: #28a745;
      --text-color: #333;
      --light-bg: #f8f9fa;
      --dark-bg: #343a40;
      --white: #fff;
      --border-color: #dee2e6;
      --header-offset: 122px; /* Fallback for body padding-top */
    }

    /* Base styles for the page content, ensuring BEM naming and isolation */
    .page-bosch-me77 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      padding: 10px 0 60px 0; /* Small top padding, relying on body for header offset */
      background-color: var(--light-bg);
      overflow-x: hidden;
    }

    @media (max-width: 768px) {
      .page-bosch-me77 {
        padding-top: 10px; /* Small top padding for mobile */
      }
    }

    /* Section styling */
    .page-bosch-me77__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--white);
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-bosch-me77__section--dark {
      background-color: var(--dark-bg);
      color: var(--white);
    }

    .page-bosch-me77__section--dark h2,
    .page-bosch-me77__section--dark h3 {
      color: var(--white);
    }

    .page-bosch-me77__section-title {
      text-align: center;
      color: var(--primary-color);
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: 700;
    }

    .page-bosch-me77__section-title--white {
      color: var(--white);
    }

    /* Hero Section */
    .page-bosch-me77__hero-section {
      position: relative;
      color: var(--white);
      text-align: center;
      padding: 100px 20px;
      margin-bottom: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      border-radius: 8px;
    }

    .page-bosch-me77__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.6); /* Only for darkening, not color change */
    }

    .page-bosch-me77__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .page-bosch-me77__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: 800;
      line-height: 1.2;
      color: var(--white);
    }

    .page-bosch-me77__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      font-weight: 300;
    }

    /* Content Area */
    .page-bosch-me77__content-area {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .page-bosch-me77__article {
      flex: 1 1 calc(50% - 30px);
      min-width: 300px;
      background-color: var(--white);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
      display: flex;
      flex-direction: column;
    }

    .page-bosch-me77__article-title {
      color: var(--primary-color);
      margin-bottom: 15px;
      font-size: 1.8em;
    }

    .page-bosch-me77__article-image-container {
      margin-bottom: 20px;
      border-radius: 6px;
      overflow: hidden;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-bosch-me77__article-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-bosch-me77__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }

    .page-bosch-me77__list-item {
      background-color: var(--light-bg);
      padding: 15px 20px;
      border-left: 4px solid var(--accent-color);
      border-radius: 4px;
      flex: 1 1 calc(50% - 15px);
      box-sizing: border-box;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }

    .page-bosch-me77__list-item strong {
      color: var(--primary-color);
    }

    /* Call to Action Button */
    .page-bosch-me77__cta-button {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--white);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      margin-top: 20px;
    }

    .page-bosch-me77__cta-button:hover {
      background-color: #218838;
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-bosch-me77__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-bosch-me77__faq-item {
      background-color: var(--white);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-bosch-me77__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      user-select: none;
      background-color: var(--light-bg);
      color: var(--primary-color);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-bosch-me77__faq-question:hover {
      background-color: #e9ecef;
    }

    .page-bosch-me77__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-bosch-me77__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-bosch-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.3s ease;
      color: var(--text-color);
    }

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

    .page-bosch-me77__faq-item.active .page-bosch-me77__faq-toggle {
      transform: rotate(45deg); /* Plus becomes an 'X' or minus */
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .page-bosch-me77__hero-title {
        font-size: 2.8em;
      }
      .page-bosch-me77__hero-description {
        font-size: 1.1em;
      }
      .page-bosch-me77__article {
        flex: 1 1 calc(100% - 30px);
      }
      .page-bosch-me77__list-item {
        flex: 1 1 calc(100% - 15px);
      }
    }

    @media (max-width: 768px) {
      .page-bosch-me77__hero-section {
        padding: 80px 15px;
      }
      .page-bosch-me77__hero-title {
        font-size: 2.2em;
      }
      .page-bosch-me77__hero-description {
        font-size: 1em;
      }
      .page-bosch-me77__section {
        padding: 30px 15px;
      }
      .page-bosch-me77__section-title {
        font-size: 2em;
      }
      .page-bosch-me77__list {
        flex-direction: column;
        gap: 10px;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-bosch-me77__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-bosch-me77__article-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-bosch-me77__article-image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-bosch-me77__hero-title {
        font-size: 1.8em;
      }
      .page-bosch-me77__hero-description {
        font-size: 0.9em;
      }
      .page-bosch-me77__section-title {
        font-size: 1.8em;
      }
      .page-bosch-me77__faq-question {
        font-size: 1em;
        padding: 15px;
      }
      .page-bosch-me77__faq-answer {
        padding: 15px 15px !important;
      }
    }
  