
    .page-8-y-ng-nh-p {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f0f2f5;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-8-y-ng-nh-p__hero-section {
      position: relative;
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      text-align: center;
      padding: 60px 20px 40px; /* Adjust padding-top to avoid header overlap, assuming body padding-top is set */
      overflow: hidden;
      border-bottom-left-radius: 30px;
      border-bottom-right-radius: 30px;
      padding-top: 10px; /* Small decorative top padding, body handles header offset */
    }

    .page-8-y-ng-nh-p__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-8-y-ng-nh-p__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-8-y-ng-nh-p__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8-y-ng-nh-p__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8-y-ng-nh-p__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 15px 0;
      background-color: #0d1b2a;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
    }

    .page-8-y-ng-nh-p__button {
      background-color: #fdbb2d;
      color: #1a2a6c;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8-y-ng-nh-p__button:hover {
      background-color: #ffcc66;
      transform: translateY(-2px);
    }

    .page-8-y-ng-nh-p__button--secondary {
      background-color: #1a2a6c;
      color: #fdbb2d;
      border: 2px solid #fdbb2d;
    }

    .page-8-y-ng-nh-p__button--secondary:hover {
      background-color: #2a3d7e;
      transform: translateY(-2px);
    }

    .page-8-y-ng-nh-p__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      margin-top: 20px;
    }

    .page-8-y-ng-nh-p__section-title {
      font-size: 2em;
      color: #1a2a6c;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-8-y-ng-nh-p__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
      align-items: stretch;
    }

    .page-8-y-ng-nh-p__card {
      background-color: #f9f9f9;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-8-y-ng-nh-p__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-8-y-ng-nh-p__card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 15px;
    }

    .page-8-y-ng-nh-p__card-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
    }

    .page-8-y-ng-nh-p__card-title {
      font-size: 1.3em;
      color: #b21f1f;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8-y-ng-nh-p__step-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 800px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }

    .page-8-y-ng-nh-p__step-item {
      display: flex;
      align-items: flex-start;
      background-color: #f0f2f5;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
      width: 100%;
    }

    .page-8-y-ng-nh-p__step-number {
      background-color: #1a2a6c;
      color: #fdbb2d;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
      flex-shrink: 0;
      margin-right: 15px;
    }

    .page-8-y-ng-nh-p__step-content {
      text-align: left;
    }

    .page-8-y-ng-nh-p__step-title {
      font-size: 1.2em;
      color: #b21f1f;
      margin-bottom: 5px;
      font-weight: bold;
    }

    .page-8-y-ng-nh-p__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 20px auto;
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .page-8-y-ng-nh-p__faq-item {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      background-color: #f9f9f9;
    }

    .page-8-y-ng-nh-p__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #1a2a6c;
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-8-y-ng-nh-p__faq-question:hover {
      background-color: #2a3d7e;
    }

    .page-8-y-ng-nh-p__faq-question h3 {
      margin: 0;
      color: inherit;
      font-size: 1em; /* Adjust to match parent font size */
      pointer-events: none;
    }

    .page-8-y-ng-nh-p__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

    .page-8-y-ng-nh-p__faq-item.active .page-8-y-ng-nh-p__faq-toggle {
      transform: rotate(45deg);
    }

    .page-8-y-ng-nh-p__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #fff;
      color: #333;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-8-y-ng-nh-p__faq-item.active .page-8-y-ng-nh-p__faq-answer {
      max-height: 2000px !important;
      padding: 20px !important;
      opacity: 1;
    }

    .page-8-y-ng-nh-p__cta-section {
      text-align: center;
      padding: 40px 20px;
      background-color: #b21f1f;
      color: #fff;
      border-radius: 15px;
      margin: 20px auto;
      max-width: 1200px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .page-8-y-ng-nh-p__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-8-y-ng-nh-p__social-icons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8-y-ng-nh-p__social-link {
      color: #fff;
      font-size: 2em;
      transition: color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
    }

    .page-8-y-ng-nh-p__social-link:hover {
      color: #fdbb2d;
      transform: translateY(-3px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-8-y-ng-nh-p__hero-title {
        font-size: 2em;
      }

      .page-8-y-ng-nh-p__hero-subtitle {
        font-size: 1em;
      }

      .page-8-y-ng-nh-p__section {
        padding: 30px 15px;
        margin-top: 15px;
      }

      .page-8-y-ng-nh-p__section-title {
        font-size: 1.7em;
      }

      .page-8-y-ng-nh-p__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8-y-ng-nh-p__card {
        padding: 20px;
      }

      .page-8-y-ng-nh-p__card-title {
        font-size: 1.1em;
      }

      .page-8-y-ng-nh-p__step-list {
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8-y-ng-nh-p__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !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-8-y-ng-nh-p__step-number {
        margin-bottom: 10px;
        margin-right: 0;
      }

      .page-8-y-ng-nh-p__step-title {
        font-size: 1.1em;
      }

      .page-8-y-ng-nh-p__faq-section {
        padding: 30px 15px;
      }

      .page-8-y-ng-nh-p__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-8-y-ng-nh-p__faq-answer {
        padding: 15px !important;
      }

      .page-8-y-ng-nh-p__cta-title {
        font-size: 1.8em;
      }

      .page-8-y-ng-nh-p__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-8-y-ng-nh-p__floating-buttons {
        padding: 10px 0;
      }

      /* Image responsiveness */
      .page-8-y-ng-nh-p__card-image,
      .page-8-y-ng-nh-p__hero-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8-y-ng-nh-p__card-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8-y-ng-nh-p__hero-title {
        font-size: 1.8em;
      }

      .page-8-y-ng-nh-p__floating-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 10px 15px;
      }

      .page-8-y-ng-nh-p__button {
        width: 100%;
        text-align: center;
      }

      .page-8-y-ng-nh-p__section-title {
        font-size: 1.5em;
      }

      .page-8-y-ng-nh-p__cta-title {
        font-size: 1.6em;
      }

      .page-8-y-ng-nh-p__social-icons {
        flex-wrap: wrap;
      }
    }
  