
    .page-42vm {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 60px;
    }

    .page-42vm__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-42vm__hero-section {
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #fff;
      text-align: center;
      padding: 80px 15px 50px;
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
      position: relative;
      overflow: hidden;
      padding-top: calc(80px + 10px); /* Adjust for header offset */
    }

    .page-42vm__hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
      transform: rotate(45deg);
      opacity: 0.3;
    }

    .page-42vm__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      color: #fff;
    }

    .page-42vm__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #e0e0e0;
    }

    .page-42vm__button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-42vm__button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-42vm__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-42vm__section--grey {
      background-color: #e9ecef;
    }

    .page-42vm__section-title {
      font-size: 2.2em;
      color: #0056b3;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-42vm__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 60px;
      height: 4px;
      background-color: #ffc107;
      border-radius: 2px;
    }

    .page-42vm__text-content {
      max-width: 800px;
      margin: 0 auto 30px;
      font-size: 1.1em;
      color: #555;
    }

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

    .page-42vm__card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-42vm__card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .page-42vm__card-image {
      width: 100%;
      max-width: 300px;
      height: auto;
      border-radius: 10px;
      margin-bottom: 20px;
      object-fit: cover;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .page-42vm__card-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-42vm__card-description {
      font-size: 1em;
      color: #666;
    }

    .page-42vm__list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-42vm__list-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 15px 25px;
      font-size: 1.1em;
      color: #333;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-sizing: border-box;
      flex-basis: calc(33.333% - 20px); /* For 3 columns */
      max-width: calc(33.333% - 20px);
      text-align: center;
    }

    .page-42vm__list-item:hover {
      background-color: #e6f2ff;
      transform: translateY(-3px);
    }

    .page-42vm__faq-section {
      padding: 60px 0;
      text-align: left;
    }

    .page-42vm__faq-item {
      background-color: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .page-42vm__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      font-size: 1.2em;
      font-weight: bold;
      color: #007bff;
      cursor: pointer;
      user-select: none;
      background-color: #f0f8ff;
      transition: background-color 0.3s ease;
    }

    .page-42vm__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #007bff;
      pointer-events: none;
    }

    .page-42vm__faq-question:hover {
      background-color: #e6f2ff;
    }

    .page-42vm__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none;
      transition: transform 0.3s ease;
      color: #007bff;
    }

    .page-42vm__faq-item.active .page-42vm__faq-toggle {
      transform: rotate(45deg);
    }

    .page-42vm__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: #555;
      font-size: 1.05em;
    }

    .page-42vm__faq-item.active .page-42vm__faq-answer {
      max-height: 2000px !important;
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-42vm__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-42vm__hero-title {
        font-size: 2.2em;
      }

      .page-42vm__hero-subtitle {
        font-size: 1.1em;
      }

      .page-42vm__section-title {
        font-size: 1.8em;
      }

      .page-42vm__list-item {
        flex-basis: calc(50% - 20px);
        max-width: calc(50% - 20px);
      }
    }

    @media (max-width: 768px) {
      .page-42vm__hero-section {
        padding: 60px 15px 40px;
        padding-top: calc(60px + 10px); /* Adjust for header offset */
      }

      .page-42vm__hero-title {
        font-size: 1.8em;
      }

      .page-42vm__hero-subtitle {
        font-size: 1em;
      }

      .page-42vm__section {
        padding: 40px 0;
      }

      .page-42vm__section-title {
        font-size: 1.6em;
        margin-bottom: 30px;
      }

      .page-42vm__text-content {
        font-size: 1em;
      }

      .page-42vm__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-42vm__card {
        padding: 25px;
      }

      .page-42vm__card-title {
        font-size: 1.3em;
      }

      .page-42vm__list {
        flex-direction: column;
        gap: 15px;
        padding: 0;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-42vm__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;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-42vm__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-42vm__faq-question h3 {
        font-size: 1.1em;
      }

      .page-42vm__faq-answer {
        padding: 15px 20px !important;
        font-size: 1em;
      }

      .page-42vm__card-image {
        max-width: 250px;
      }
    }

    @media (max-width: 480px) {
      .page-42vm__hero-title {
        font-size: 1.5em;
      }

      .page-42vm__hero-subtitle {
        font-size: 0.9em;
      }

      .page-42vm__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-42vm__section-title {
        font-size: 1.4em;
      }

      .page-42vm__card-image {
        max-width: 200px;
      }
    }
  