
    :root {
      --page-k-o-nh-c-i-55-primary-color: #004d40; /* Dark Teal */
      --page-k-o-nh-c-i-55-secondary-color: #ffb300; /* Amber */
      --page-k-o-nh-c-i-55-accent-color: #e65100; /* Deep Orange */
      --page-k-o-nh-c-i-55-text-light: #ffffff;
      --page-k-o-nh-c-i-55-text-dark: #212121;
      --page-k-o-nh-c-i-55-bg-dark: #1a1a1a;
      --page-k-o-nh-c-i-55-bg-medium: #2c2c2c;
      --page-k-o-nh-c-i-55-border-color: #4a4a4a;
    }

    .page-k-o-nh-c-i-55 {
      font-family: 'Arial', sans-serif;
      color: var(--page-k-o-nh-c-i-55-text-light);
      background-color: var(--page-k-o-nh-c-i-55-bg-dark);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-k-o-nh-c-i-55__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-k-o-nh-c-i-55__section--hero {
      background: linear-gradient(135deg, var(--page-k-o-nh-c-i-55-primary-color), #00251a);
      text-align: center;
      padding: 60px 20px;
      padding-top: 10px; /* Small top padding, assuming body handles main header offset */
      position: relative;
      overflow: hidden;
    }

    .page-k-o-nh-c-i-55__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-k-o-nh-c-i-55__hero-title {
      font-size: 3em;
      color: var(--page-k-o-nh-c-i-55-secondary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-k-o-nh-c-i-55__hero-subtitle {
      font-size: 1.5em;
      color: var(--page-k-o-nh-c-i-55-text-light);
      margin-bottom: 30px;
    }

    .page-k-o-nh-c-i-55__button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-k-o-nh-c-i-55__button {
      background-color: var(--page-k-o-nh-c-i-55-accent-color);
      color: var(--page-k-o-nh-c-i-55-text-light);
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
    }

    .page-k-o-nh-c-i-55__button:hover {
      background-color: #bf4700;
      transform: translateY(-2px);
    }

    .page-k-o-nh-c-i-55__section-title {
      font-size: 2.5em;
      color: var(--page-k-o-nh-c-i-55-secondary-color);
      text-align: center;
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

    .page-k-o-nh-c-i-55__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-k-o-nh-c-i-55__card {
      background-color: var(--page-k-o-nh-c-i-55-bg-medium);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-k-o-nh-c-i-55__card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .page-k-o-nh-c-i-55__card-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
    }

    .page-k-o-nh-c-i-55__card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-k-o-nh-c-i-55__card:hover .page-k-o-nh-c-i-55__card-image {
      transform: scale(1.05);
    }

    .page-k-o-nh-c-i-55__card-title {
      font-size: 1.6em;
      color: var(--page-k-o-nh-c-i-55-secondary-color);
      margin: 20px 15px 10px;
    }

    .page-k-o-nh-c-i-55__card-description {
      font-size: 1em;
      color: var(--page-k-o-nh-c-i-55-text-light);
      padding: 0 15px;
      margin-bottom: 20px;
    }

    .page-k-o-nh-c-i-55__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-k-o-nh-c-i-55__list-item {
      background-color: var(--page-k-o-nh-c-i-55-bg-medium);
      border-radius: 8px;
      padding: 15px 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      flex: 1 1 auto;
      min-width: 280px;
      max-width: 380px;
      text-align: center;
      box-sizing: border-box;
      color: var(--page-k-o-nh-c-i-55-text-light);
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-k-o-nh-c-i-55__list-item:hover {
      background-color: #3a3a3a;
    }

    .page-k-o-nh-c-i-55__faq-section {
      background-color: var(--page-k-o-nh-c-i-55-bg-medium);
      border-radius: 12px;
      padding: 30px;
      margin-top: 50px;
    }

    .page-k-o-nh-c-i-55__faq-item {
      border-bottom: 1px solid var(--page-k-o-nh-c-i-55-border-color);
      margin-bottom: 15px;
      padding-bottom: 15px;
    }

    .page-k-o-nh-c-i-55__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-k-o-nh-c-i-55__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 10px 0;
      font-size: 1.2em;
      color: var(--page-k-o-nh-c-i-55-secondary-color);
      transition: color 0.3s ease;
    }

    .page-k-o-nh-c-i-55__faq-question:hover {
      color: var(--page-k-o-nh-c-i-55-accent-color);
    }

    .page-k-o-nh-c-i-55__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-k-o-nh-c-i-55__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-k-o-nh-c-i-55__faq-item.active .page-k-o-nh-c-i-55__faq-toggle {
      transform: rotate(45deg); /* Plus to X */
    }

    .page-k-o-nh-c-i-55__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(--page-k-o-nh-c-i-55-text-light);
      font-size: 0.95em;
    }

    .page-k-o-nh-c-i-55__faq-item.active .page-k-o-nh-c-i-55__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-k-o-nh-c-i-55__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-k-o-nh-c-i-55__floating-button {
      background-color: var(--page-k-o-nh-c-i-55-accent-color);
      color: var(--page-k-o-nh-c-i-55-text-light);
      padding: 12px 20px;
      border: none;
      border-radius: 50px;
      font-size: 1em;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      min-width: 120px;
    }

    .page-k-o-nh-c-i-55__floating-button:hover {
      background-color: #bf4700;
      transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-k-o-nh-c-i-55__hero-title {
        font-size: 2.2em;
      }

      .page-k-o-nh-c-i-55__hero-subtitle {
        font-size: 1.2em;
      }

      .page-k-o-nh-c-i-55__section-title {
        font-size: 2em;
      }

      .page-k-o-nh-c-i-55__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-k-o-nh-c-i-55__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-k-o-nh-c-i-55__list {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-k-o-nh-c-i-55__card-image-container,
      .page-k-o-nh-c-i-55__card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-k-o-nh-c-i-55__faq-section {
        padding: 20px;
      }

      .page-k-o-nh-c-i-55__faq-question h3,
      .page-k-o-nh-c-i-55__faq-toggle {
        font-size: 1.1em;
      }

      .page-k-o-nh-c-i-55__faq-answer {
        font-size: 0.9em;
        padding: 15px 10px !important;
      }

      .page-k-o-nh-c-i-55__floating-buttons {
        bottom: 15px;
        right: 15px;
      }

      .page-k-o-nh-c-i-55__floating-button {
        padding: 10px 18px;
        font-size: 0.9em;
        min-width: 100px;
      }
    }

    @media (max-width: 480px) {
      .page-k-o-nh-c-i-55__hero-title {
        font-size: 1.8em;
      }

      .page-k-o-nh-c-i-55__hero-subtitle {
        font-size: 1em;
      }

      .page-k-o-nh-c-i-55__section {
        padding: 30px 15px;
      }

      .page-k-o-nh-c-i-55__section-title {
        font-size: 1.8em;
      }

      .page-k-o-nh-c-i-55__button-group {
        flex-direction: column;
        gap: 10px;
      }

      .page-k-o-nh-c-i-55__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
      }
    }
  