
    /* Base styles for the page content */
    .page-t-l-k-o-55cv {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-top: 10px; /* Small padding for the first section, assuming body padding-top is handled by shared.css */
    }

    .page-t-l-k-o-55cv__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-t-l-k-o-55cv__section {
      background-color: #fff;
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .page-t-l-k-o-55cv__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      border-radius: 0;
      margin-bottom: 30px;
      box-shadow: none;
    }

    .page-t-l-k-o-55cv__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-t-l-k-o-55cv__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-t-l-k-o-55cv__button {
      display: inline-block;
      background-color: #fdbb2d;
      color: #1a2a6c;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-t-l-k-o-55cv__button:hover {
      background-color: #e0a526;
      transform: translateY(-2px);
    }

    .page-t-l-k-o-55cv__heading-2 {
      font-size: 2em;
      color: #1a2a6c;
      margin-bottom: 20px;
      text-align: center;
      border-bottom: 3px solid #fdbb2d;
      padding-bottom: 10px;
      display: inline-block;
      max-width: 100%;
      box-sizing: border-box;
    }
    
    .page-t-l-k-o-55cv__heading-3 {
      font-size: 1.5em;
      color: #1a2a6c;
      margin-top: 25px;
      margin-bottom: 15px;
    }

    .page-t-l-k-o-55cv__text-content p {
      margin-bottom: 15px;
      color: #555;
    }
    
    .page-t-l-k-o-55cv__text-content strong {
        color: #1a2a6c;
    }

    .page-t-l-k-o-55cv__text-content--center {
        text-align: center;
    }

    .page-t-l-k-o-55cv__image-wrapper {
      text-align: center;
      margin: 30px 0;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-t-l-k-o-55cv__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .page-t-l-k-o-55cv__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-t-l-k-o-55cv__feature-item {
      background-color: #f0f8ff;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

    .page-t-l-k-o-55cv__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-t-l-k-o-55cv__feature-item-icon {
      margin-bottom: 15px;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-t-l-k-o-55cv__feature-item-icon img {
        max-width: 250px; /* Ensures image is at least 200px */
        height: auto;
        border-radius: 5px;
    }

    .page-t-l-k-o-55cv__feature-item h3 {
      color: #1a2a6c;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-t-l-k-o-55cv__feature-item p {
      color: #666;
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-t-l-k-o-55cv__faq-section {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      margin-top: 30px;
    }

    .page-t-l-k-o-55cv__faq-heading {
      font-size: 2em;
      color: #1a2a6c;
      margin-bottom: 25px;
      text-align: center;
      border-bottom: 3px solid #fdbb2d;
      padding-bottom: 10px;
      display: inline-block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-t-l-k-o-55cv__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-t-l-k-o-55cv__faq-item {
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box; /* Required for list items */
    }

    .page-t-l-k-o-55cv__faq-question {
      background-color: #f0f8ff;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      color: #1a2a6c;
      font-weight: bold;
    }

    .page-t-l-k-o-55cv__faq-question:hover {
      background-color: #e0e8f0;
    }

    .page-t-l-k-o-55cv__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-t-l-k-o-55cv__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-t-l-k-o-55cv__faq-item.active .page-t-l-k-o-55cv__faq-toggle {
      transform: rotate(45deg); /* Change + to X-like or - */
    }

    .page-t-l-k-o-55cv__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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: #fff;
      color: #555;
    }

    .page-t-l-k-o-55cv__faq-item.active .page-t-l-k-o-55cv__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-t-l-k-o-55cv__container {
        padding: 15px;
      }

      .page-t-l-k-o-55cv__hero-title {
        font-size: 2em;
      }

      .page-t-l-k-o-55cv__hero-subtitle {
        font-size: 1em;
      }

      .page-t-l-k-o-55cv__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-t-l-k-o-55cv__heading-2,
      .page-t-l-k-o-55cv__faq-heading {
        font-size: 1.5em;
        margin-bottom: 15px;
      }
      
      .page-t-l-k-o-55cv__heading-3 {
          font-size: 1.2em;
      }

      .page-t-l-k-o-55cv__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      /* List item mobile responsiveness */
      .page-t-l-k-o-55cv__feature-item,
      .page-t-l-k-o-55cv__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-t-l-k-o-55cv__faq-question {
        padding: 12px 15px;
      }

      .page-t-l-k-o-55cv__faq-question h3 {
        font-size: 1em;
      }

      .page-t-l-k-o-55cv__faq-answer {
        padding: 15px !important; /* Adjust padding for mobile */
      }
      
      .page-t-l-k-o-55cv__image-wrapper {
          padding: 0 10px; /* Small padding to prevent image touching edges */
      }
      .page-t-l-k-o-55cv__image {
          max-width: 100% !important;
          height: auto !important;
      }
      
      .page-t-l-k-o-55cv__feature-item-icon img {
          max-width: 250px; /* Keep it >= 200px */
      }
    }
  