:root {
    --violet-100: #EDE9FE;
    --violet-200: #DDD6FE;
    --violet-700: #6D28D9;
    --violet-800: #5323AF;
    --violet-900: #3F1394;
    --violet-950: #30106D;
    --violet-light-purple: #5B21B6;

    --primary-100: #E9F1FE;
    --primary-800: #2563C5;
    --primary-900: #194996;
    --primary-950: #113165;
    --blue-300: #93C5FD;

    /* Contact Section Specific Colors */
    --bg-blue-light: #DBEAFE;
    --bg-orange-light: #FFEDD5;
    --bg-teal-light: #CCFBF1;

    /* General Colors */
    --white: #FFFFFF;
    --body-bg: #F9FAFB;
    --text-color-primary: #111827; /* Darkest text */

    /* Gray Scale */
    --gray-050: #F6F7F9;
    --gray-100: #F0F2F4;
    --gray-200: #E5E7EB;
    --gray-300: #C9CDD4;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Danger Colors */
    --danger-600: #DC2626
  }

  body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--body-bg);
    color: var(--text-color-primary);
    font-size: 15px;
    line-height: 20px;
  }

  /* Add padding-top to body to account for fixed header */
  body {
    padding-top: 0;
  }

  .content-container {
    padding-top: 83px;
  }

  .btn-primary:hover {
      color: #fff;
      background-color: var(--primary-800);
      border-color: var(--primary-800);
  }

  /* Header Styles */
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
  }

  .header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
  }

  .header-top-bar {
    background-color: var(--primary-900);
  }
  .header-contact {
    font-size: 14px;
    font-weight: normal;
  }
  .header-icon {
    width: 20px;
    height: 20px;
  }

  .header-search-container {
    position: relative;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 5px 0px 5px 10px;
    width: 130px;
    height: 22px;
    color: #fff
  }

  .header-search-container form {
    width: 100%;
    height: 22px
  }
  .header-search-container .input-group {
    flex-wrap: nowrap;
    max-width: 100%;
  }
  .header-search-container input {
    background: transparent !important;
    color: #fff !important;
    padding: 0 3px;
    font-size: 15px;
  }
  .header-search-container input::-webkit-input-placeholder {
    color: #ffffff90
  }
  .header-search-container button {
    padding: 2px 8px;
    color: #fff;
    font-size: 13px;
  }
  .header-search-container button:hover {
    color: var(--gray-300);
  }
  .header-search-input {
    background: transparent;
    border: none;
    color: var(--white);
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    width: calc(100% - 21px);
    padding-right: 5px;
  }

  .header-search-input::placeholder {
    color: var(--gray-500);
    opacity: 1;
  }

  .header-search-input:focus {
    outline: none;
    box-shadow: none;
  }

  .header-search-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
  }

  .header-language-selector img {
    width: 25px;
    height: 15px;
  }

  .language-dropdown .btn-language {
    border-radius: 20px;
    font-size: 14px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .header-actions .language-dropdown .btn-language {
    padding-left: 0;
    padding-right: 0;
    box-shadow: none !important;
  }
  .header-actions .language-dropdown .btn-language:after {
    display: none;
  }
  .navbar .header-language-dropdown .btn-language {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
  }

  .navbar .header-language-dropdown .btn-language:focus,
  .navbar .header-language-dropdown .btn-language:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
  }

  .navbar-language-dropdown .btn-language {
    background-color: var(--gray-100);
    border: 1px solid var(--gray-300);
    color: var(--text-color-primary);
    border-radius: 6px;
    padding: 6px 6px 6px 10px;
    min-height: 36px;
    font-weight: 500;
    gap: 4px !important
  }

  .navbar-language-dropdown .btn-language:focus,
  .navbar-language-dropdown .btn-language:hover {
    background-color: var(--gray-050);
    color: var(--text-color-primary);
  }

  .language-dropdown .dropdown-menu {
    min-width: 190px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    box-shadow: 0px 12px 30px -12px rgba(15, 23, 42, 0.4);
  }

  .language-dropdown .dropdown-item.active,
  .language-dropdown .dropdown-item:active {
    background-color: var(--primary-100);
    color: var(--primary-900);
    font-weight: 600;
  }
  .header-auth-buttons {
    align-items: center;
  }
  .header-auth-buttons button {
    padding: 6px 10px
  }
  .header-flag-icon {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
  }

  .header-dropdown-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
  }

  .header-navbar {
    border-bottom: 1px solid var(--gray-200);
    padding: 8px 0;
  }

  /* Header M123 Styles */
  .header-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .header-logo-text {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--primary-900);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .header-menu-bar .nav-link {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--text-color-primary);
    padding: 8px 0;
    transition: color 0.3s ease;
  }

  .header-menu-bar .nav-link:hover {
    color: var(--violet-800);
  }

  .btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: var(--primary-900);
    color: var(--white);
    transition: all 0.3s ease;
  }

  .btn-icon:hover {
    background-color: var(--primary-800);
    transform: scale(1.05);
  }

  .btn-search {
    font-size: 18px;
  }

  .header-logo {
    height: 56px;
    width: auto;
  }

  .navbar .header-menu-bar .nav-link {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.375em;
    color: var(--text-color-primary);
    padding: 10px 14px;
    border-radius: 8px;
  }

  .header-menu-bar .nav-item .nav-link.active,
  .header-menu-bar .nav-item .nav-link:hover {
    color: var(--primary-800);
  }

  .header-btn-login {
    background-color: transparent;
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.375em;
    padding: 8px 16px;
    border-radius: 8px;
  }

  .header-btn-register {
    background-color: var(--primary-800);
    border: 1px solid var(--primary-800);
    color: var(--white);
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.375em;
    padding: 8px 16px;
    border-radius: 8px;
  }

  .header-btn-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
  }

  /* Footer Styles */
  footer {
    background: var(--primary-950);
  }
  footer .coppyright {
    background: #00000020;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 14px;
  }
  .custom-footer h4, .custom-footer h5 {
      font-family: 'Inter', Arial, sans-serif;
      font-weight: 500;
      color: var(--white);
  }

  .custom-footer .text-info {
      color: var(--blue-300) !important;
      font-family: 'Inter', Arial, sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.375em;
  }

  .custom-footer .text-light-50 {
      color: var(--gray-300) !important;
      font-family: 'Inter', Arial, sans-serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 1.4285714285714286em;
  }

  .custom-footer .text-secondary {
      color: var(--gray-300) !important;
      font-family: 'Inter', Arial, sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.5em;
  }
  footer .coppyright * {
    font-size: 14px;
  }
  .custom-footer .social-icons .btn-social {
      width: 36px;
      height: 36px;
      border-radius: 6px;
      display: flex;
      justify-content: center;
      align-items: center;
      border: none;
  }

  .custom-footer .social-icons .btn-social i {
      color: var(--white);
  }

  .custom-footer ul {
      list-style: none;
      padding-left: 0;
  }

  .custom-footer ul li {
      margin-bottom: 8px;
  }
  .coppyright .custom-footer ul li {
    margin-bottom: 0;
  }
  .custom-footer ul li a:hover {
    color: var(--white) !important
  }
  .custom-footer .contact-info i {
      width: 24px;
      height: 24px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
  }

  .custom-footer .badge {
      padding: 2px 8px;
      border-radius: 16px;
      font-family: 'Inter', Arial, sans-serif;
      font-weight: 500;
      font-size: 12px;
      line-height: 1.5em;
  }

  .custom-footer .list-inline-item:not(:last-child) {
      margin-right: 12px;
  }


  .header-btn-login .header-btn-icon {
    filter: none;
  }


  /* Hero Slider Section - M123 Design */
  .hero-slider-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
  }

  .hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
  }

  .hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    position: relative;
  }

  .hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scale(1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .hero-slider-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
  }

  .hero-slider-section .container {
    position: relative;
    z-index: 2;
  }

  .hero-content-left {
    padding-right: 24px;
    color: var(--text-color-primary);
  }

  .hero-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: -0.8px;
    color: var(--violet-800);
    margin-bottom: 16px;
  }

  .hero-description {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: var(--text-color-primary);
    margin-bottom: 12px;
  }

  .hero-description-2 {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: var(--text-color-primary);
  }

  .hero-description-2 strong {
    font-weight: 700;
    color: var(--violet-800);
  }

  .hero-buttons {
    margin-top: 24px;
  }

  .hero-btn-consult,
  .hero-btn-learn-more {
    padding: 16px 28px;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    border-radius: 8px;
    background-color: var(--violet-800);
    border: none;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .hero-btn-consult:hover,
  .hero-btn-learn-more:hover {
    background-color: var(--violet-900);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 33, 182, 0.3);
    color: var(--white);
  }

  .hero-image-column {
    position: relative;
    z-index: 2;
  }

  .hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
  }

  .hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .hero-slider-dots {
    position: relative;
    z-index: 10;
    margin-top: 24px;
    padding-bottom: 20px;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #BBC3CF;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .hero-dot.active {
    width: 38px;
    background-color: var(--violet-800);
  }

  .hero-dot:hover {
    background-color: var(--violet-700);
  }

  .hero-features-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    padding-left: 20px;
  }

  .hero-features-list li::before {
    content: '✓';
    color: var(--primary-800);
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }

  .hero-call-to-action {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--text-color-primary);
  }

  .hero-btn-courses {
    padding: 16px 28px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3333333333333333em;
    border-radius: 8px;
    background-color: var(--primary-800);
    border-color: var(--primary-800);
    color: var(--white);
  }

  .hero-btn-consult {
    padding: 16px 28px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3333333333333333em;
    border-radius: 8px;
    background-color: var(--violet-800);
    border: none;
    color: var(--white);
  }
  .hero-stat-item {
    color: var(--text-color-primary); /* Default text color */
  }

  .hero-stat-number {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3333333333333333em;
    color: var(--violet-light-purple);
  }

  .hero-stat-label {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.375em;
    color: var(--text-color-primary);
  }

  .hero-video-column {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .hero-video-thumbnail {
    position: relative;
    /* width: 470px;
    height: 264px; */
    border-radius: 24px;
    overflow: hidden;
  }
  /*
  .hero-video-thumbnail::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(25, 73, 150, 0) 15%, rgba(25, 73, 150, 1) 85%);
    border: 5px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
  } */

  .hero-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
  }

  .hero-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--gray-100);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 3;
  }

  .hero-play-button img {
    width: 35px;
    height: 35px;
    filter: none;
  }

  /* User Guide Section Styles */
  .user-guide-section {
    background-color: var(--gray-100);
    padding-top: 120px;
    padding-bottom: 36px;
  }

  .section-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2em;
    letter-spacing: -0.5px;
    color: var(--violet-900);
    margin-bottom: 16px;
  }

  .section-title-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.375em;
    color: var(--gray-800);
  }

  .user-guide-video img {
    border-radius: 16px;
    width: 100%;
    height: auto;
  }

  .user-guide-timeline {
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 24px;
    background-color: var(--white);
    border-radius: 16px;
    height: 393px;
    overflow-y: auto;
  }

  .user-guide-timeline-item {
    display: flex;
    gap: 24px;
    padding-bottom: 24px;
    position: relative;
  }

  .user-guide-timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background-color: rgba(17, 24, 39, 0.2);
    border-radius: 4px;
  }

  .timeline-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--violet-light-purple);
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
    position: relative;
    z-index: 1;
    color: #fff
  }

  .timeline-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
  }

  .timeline-content h3 {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4em;
    color: var(--violet-light-purple);
    margin-bottom: 8px;
  }

  .timeline-content p {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.375em;
    color: var(--text-color-primary);
    margin-bottom: 12px;
  }

  .timeline-content ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .timeline-content ul li {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .timeline-content ul li img {
    width: 16px; /* Dot icon size */
    height: 16px; /* Dot icon size */
    filter: none; /* Dot icon is black/dark blue */
  }

  /* Career Paths Section Styles */
  .career-paths-section {
    background-color: var(--violet-100);
    padding-top: 120px;
    padding-bottom: 36px;
  }

  .career-card {
    background: linear-gradient(44deg, rgba(255, 255, 255, 1) 47%, rgba(237, 233, 254, 1) 100%);
    border: 1px solid var(--violet-200);
    box-shadow: 0px 4px 6px -4px rgba(18, 26, 43, 0.05), 0px 4px 15px -4px rgba(18, 26, 43, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
  }

  .career-card-icon {
    width: 70px;
    height: 70px;
    background-color: var(--violet-200);
    border-radius: 8px 8px 35px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
  }

  .career-card-icon img {
    width: 40px;
    height: 40px;
    /* filter: brightness(0) invert(1);
    color: var(--violet-950); */
  }

  .career-card-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4em;
    color: var(--violet-light-purple);
    margin-bottom: 8px;
  }

  .career-card-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.375em;
    color: var(--gray-700);
  }

  .career-path-button {
    padding: 16px 28px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3333333333333333em;
    border-radius: 8px;
    background-color: var(--violet-light-purple);
    border-color: var(--violet-light-purple);
    color: var(--white);
    max-width: fit-content;
  }

  /* Vocational Programs Section Styles */
  .vocational-programs-section {
    padding: 48px 0;
  }

  .vocational-programs-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2222222222222223em;
    letter-spacing: -2%;
    color: var(--violet-900);
    margin-bottom: 16px;
  }

  .vocational-search-filter {
    padding: 16px 0; /* Figma spacing */
  }

  .vocational-search-filter .input-group-text {
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 0 16px;
  }

  .vocational-search-filter .input-group-text img.btn-icon-dark {
    filter: none;
  }

  .vocational-search-filter .form-control {
    border: 1px solid var(--gray-300);
    border-left: none;
    border-radius: 0 8px 8px 0;
    box-shadow: 0px 2px 9px -2px rgba(18, 26, 43, 0.03), 0px 7px 9px -2px rgba(18, 26, 43, 0.06);
    color: var(--text-color-primary);
  }

  .vocational-search-filter .form-control::placeholder {
    color: var(--gray-500);
  }

  .vocational-filter-button {
    border: 1px solid var(--gray-300);
    background-color: var(--white);
    box-shadow: 0px 2px 9px -2px rgba(18, 26, 43, 0.03), 0px 7px 9px -2px rgba(18, 26, 43, 0.06);
    border-radius: 8px;
    color: var(--gray-800);
    padding: 0 16px;
    height: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .vocational-filter-button img.btn-icon-dark {
    width: 24px;
    height: 24px;
    filter: none; /* Icons are dark in Figma */
  }

  .vocational-cards-container {
    padding-top: 16px;
  }

  .vocational-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0px 4px 6px -4px rgba(18, 26, 43, 0.05), 0px 4px 15px -4px rgba(18, 26, 43, 0.1);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
  }

  .vocational-card-thumb {
    position: relative;
    width: 100%;
    height: 201.51px; /* Figma height */
    border-radius: 16px 16px 0px 0px;
    overflow: hidden;
  }

  .vocational-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .vocational-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 33554400px;
    padding: 4px 12px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.5em;
    color: var(--violet-800);
  }

  /* Order Favorite Button (Heart Icon) */
  .order-favorite-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .order-favorite-btn:hover {
    background-color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .order-favorite-btn i {
    font-size: 18px;
    color: var(--gray-500);
    transition: all 0.3s ease;
  }

  .order-favorite-btn:hover i {
    color: var(--violet-800);
  }

  .order-favorite-btn.active i,
  .order-favorite-btn.favorited i {
    color: #e91e63;
  }

  .order-favorite-btn.active i::before,
  .order-favorite-btn.favorited i::before {
    content: "\f004"; /* Font Awesome solid heart */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
  }

  .vocational-card-body {
    padding: 16px 16px 18px; /* Figma padding */
    display: flex;
    flex-direction: column;
    min-height: 0; /* Allow flex children to shrink */
  }

  .vocational-card-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0; /* Allow flex children to shrink */
  }

  .vocational-card-footer {
    margin-top: auto;
    flex-shrink: 0;
    padding-top: 16px;
  }

  .vocational-card-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3333333333333333em;
    color: var(--text-color-primary);
    margin-bottom: 0;
    text-decoration: none;
  }
  .vocational-card-title:hover {
    color: var(--primary-800)
  }

  .vocational-card-body .badge {
    background-color: var(--primary-100) !important;
    border: 1px solid var(--gray-300);
    color: #4338CA !important;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    border-radius: 30px;
    padding: 2px 10px;
    max-width: fit-content;
  }

  .vocational-details-list {
    padding-top:5px;
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .vocational-details-list li {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: var(--text-color-primary);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .vocational-details-list li img {
    width: 16px;
    height: 16px;
    filter: none;
    color: var(--gray-500);
  }

  .vocational-apply-button {
    background-color: var(--violet-100) !important;
    border: none !important;
    color: var(--violet-light-purple) !important;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.375em;
    padding: 10px 20px;
    border-radius: 8px;
    width: 100%;
    margin-top: 10px;
  }
  .vocational-apply-button:hover {
    background-color: var(--violet-800) !important;
    color: var(--white) !important;
  }

  .vocational-view-all-button {
    padding: 16px 28px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3333333333333333em;
    border-radius: 8px;
    background-color: var(--violet-light-purple);
    border-color: var(--violet-light-purple);
    color: var(--white);
    max-width: fit-content;
  }

  /* Orders View More Button Styles */
  .orders-view-more-btn {
    padding: 16px 28px;
    background: var(--buttons-destructive-primary-bg-button-destructive-primary, #5B21B6);
    overflow: hidden;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    display: inline-flex;
    text-decoration: none;
    cursor: pointer;
    border: none;
  }

  .orders-view-more-btn:hover {
    background: var(--violet-900);
    text-decoration: none;
  }

  .orders-view-more-btn-text {
    color: var(--buttons-destructive-primary-fg-button-destructive-primary, white);
    font-size: 18px;
    font-family: Inter, Arial, sans-serif;
    font-weight: 600;
    line-height: 24px;
    word-wrap: break-word;
  }

  .orders-view-more-btn-icon {
    width: 24px;
    height: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .orders-view-more-btn-icon i {
    color: var(--buttons-destructive-primary-fg-button-destructive-primary, white);
    font-size: 18px;
  }

  /* Contact Section Styles */
  .contact-section {
    background: linear-gradient(166deg, rgba(239, 246, 255, 1) 0%, rgba(255, 247, 237, 1) 100%);
    padding-top: 120px;
    padding-bottom: 36px;
  }
  .contact-header {
    margin-bottom: 24px;
  }

  .contact-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2222222222222223em;
    letter-spacing: -2%;
    color: var(--violet-900);
  }

  .contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
  }

  .contact-info-icon i {
    color: #2563EB;
    font-size: 24px;
    line-height: 20px;
  }

  /* Specific background colors for info cards */
  .contact-info-card .bg-blue-light {
      background-color: var(--bg-blue-light) !important;
  }
  .contact-info-card .bg-orange-light {
      background-color: var(--bg-orange-light) !important;
  }
  .contact-info-card .bg-orange-light i {
    color: #EA580C
  }
  .contact-info-card .bg-teal-light {
      background-color: var(--bg-teal-light) !important;
  }
  .contact-info-card .bg-teal-light i {
    color: #0D9488
  }

  .contact-info-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3333333333333333em;
    color: var(--text-color-primary); /* #111827 */
  }

  .contact-info-text {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.375em;
    color: var(--gray-600); /* #4B5563 */
  }

  .contact-info-card.working-hours-card,
  .contact-form-card {
    background-color: var(--body-bg); /* #F9FAFB */
    box-shadow: 0px 4px 6px -4px rgba(18, 26, 43, 0.05), 0px 4px 15px -4px rgba(18, 26, 43, 0.1);
    border-radius: 12px;
  }

  .form-label-custom {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: var(--gray-800); /* #1F2937 */
  }

  .form-control-custom,
  .form-select-custom {
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    height: 50px;
    color: var(--text-color-primary);
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4285714285714286em;
  }

  .form-control-custom::placeholder,
  .form-select-custom::placeholder {
    color: var(--gray-500); /* #6B7280 */
  }

  .form-control-custom:focus,
  .form-select-custom:focus,
  textarea.form-control-custom:focus {
    border-color: var(--primary-800);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-800), .25);
    outline: 0;
  }

  textarea.form-control-custom {
    height: 120px;
    min-height: 120px; /* Ensure minimum height for textarea */
  }

  .captcha-image-placeholder {
    height: 44px; /* Figma height */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-200); /* Placeholder background */
  }
  .captcha-image-placeholder img {
      height: 100%;
      width: auto;
      object-fit: contain;
  }

  .captcha-refresh-button {
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    color: var(--violet-light-purple);
    padding: 8px;
    height: 44px;
  }

  .captcha-refresh-button img {
    width: 20px;
    height: 20px;
    filter: none; /* SVGs are already colored */
  }

  .contact-submit-button {
    padding: 16px 28px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3333333333333333em;
    border-radius: 8px;
    background-color: var(--primary-900); /* #194996 */
    border-color: var(--primary-900);
    color: var(--white);
  }

  /* Course Details Page Styles */
  .course-details-container {
    background-color: var(--body-bg);
    min-height: 100vh;
    padding-top: 140px;
  }

  /* Hero Section */
  .course-hero-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0px 4px 15px -4px rgba(18, 26, 43, 0.1), 0px 4px 6px -4px rgba(18, 26, 43, 0.05);
    overflow: hidden;
  }

  .course-hero-image {
    height: 349px;
    overflow: hidden;
  }

  .course-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .course-hero-content {
    padding: 24px 16px;
  }

  .course-badge {
    display: inline-block;
    padding: 2px 12px 4px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
  }

  .course-badge-indigo {
    background-color: #EEF2FF;
    border: 1px solid #C7D2FE;
    color: #4338CA;
  }

  .course-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    color: var(--text-color-primary);
    margin: 0;
  }

  .course-subtitle {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: var(--primary-800);
    margin: 0;
  }

  .course-tags {
    margin-top: 24px;
  }

  .course-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 8px;
    background-color: #EFF6FF;
    border: 1px solid #DBEAFE;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #1E3A8A;
  }

  .course-tag i {
    font-size: 12px;
    margin-right: 3px;
  }

  /* Section Cards */
  .course-section-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0px 4px 15px -4px rgba(18, 26, 43, 0.1), 0px 4px 6px -4px rgba(18, 26, 43, 0.05);
    padding: 24px;
  }

  .course-section-header {
    display: flex;
    align-items: center;
  }

  .course-section-icon {
    font-size: 24px;
    color: #1D4ED8;
    width: 32px;
    text-align: center;
  }

  .course-section-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: var(--text-color-primary);
    margin: 0;
  }

  .course-section-content {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--text-color-primary);
  }

  /* Requirement List */
  .course-requirement-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .course-requirement-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--text-color-primary);
  }

  .course-requirement-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #1D4ED8;
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 8px;
    flex-shrink: 0;
  }

  /* Training Path */
  .training-path {
    margin-top: 16px;
  }

  .training-step {
    align-items: flex-start;
  }

  .training-step-number {
    width: 48px;
    height: 48px;
    background-color: var(--violet-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--violet-800);
    flex-shrink: 0;
  }

  .training-step-content {
    flex: 1;
  }

  .training-step-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 25.6px;
    color: var(--text-color-primary);
    margin-bottom: 4px;
  }

  .training-step-description {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--text-color-primary);
    margin: 0;
  }

  .training-total-duration {
    background-color: var(--violet-100);
    border-radius: 6px;
    padding: 12px;
    margin-top: 24px;
  }

  .training-total-duration p {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 25.6px;
    color: var(--violet-900);
    margin: 0;
  }

  /* Allowance List */
  .allowance-list {
    margin-top: 16px;
  }

  .allowance-item {
    background-color: var(--gray-050);
    border-radius: 6px;
    padding: 12px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: var(--text-color-primary);
  }

  .allowance-item-highlight {
    background-color: var(--violet-100);
  }

  .allowance-amount {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 25.6px;
    color: var(--violet-800);
  }

  .allowance-amount-large {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--violet-800);
  }

  .allowance-item-highlight span {
    font-weight: 500;
    color: var(--gray-800);
  }

  /* Opportunity List */
  .course-opportunity-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .course-opportunity-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--text-color-primary);
  }

  .course-opportunity-list li i {
    color: #1D4ED8;
    margin-top: 2px;
    flex-shrink: 0;
  }

  /* Statistics */
  .statistics-content {
    margin-top: 16px;
  }

  .statistics-subtitle {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 25.6px;
    color: var(--gray-800);
    margin-bottom: 8px;
  }

  .statistics-list {
    margin-bottom: 16px;
  }

  .statistics-item {
    background-color: var(--gray-050);
    border-radius: 6px;
    padding: 12px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--text-color-primary);
  }

  .statistics-value {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--violet-800);
  }

  .statistics-box {
    border-radius: 8px;
    padding: 16px;
    text-align: center;
  }

  .statistics-box-blue {
    background-color: #EFF6FF;
  }

  .statistics-box-violet {
    background-color: #FAF5FF;
  }

  .statistics-box-label {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 25.6px;
    margin-bottom: 4px;
  }

  .statistics-box-blue .statistics-box-label {
    color: #1E40AF;
  }

  .statistics-box-violet .statistics-box-label {
    color: var(--violet-900);
  }

  .statistics-box-value {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    margin: 0;
  }

  .statistics-box-blue .statistics-box-value {
    color: #1E40AF;
  }

  .statistics-box-violet .statistics-box-value {
    color: var(--violet-800);
  }

  /* Certification */
  .certification-box {
    background-color: #FAF5FF;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
  }

  .certification-box p {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 25.6px;
    color: var(--violet-800);
    margin: 0;
  }

  /* Highlight List */
  .course-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .course-highlight-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--text-color-primary);
  }

  .course-highlight-list li i {
    color: #F59E0B;
    margin-top: 2px;
    flex-shrink: 0;
  }

  /* Sidebar */
  .course-info-sidebar {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0px 4px 15px -4px rgba(18, 26, 43, 0.1), 0px 4px 6px -4px rgba(18, 26, 43, 0.05);
    padding: 24px;
    position: sticky;
    top: 24px;
  }

  .sidebar-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: var(--text-color-primary);
    margin: 0;
  }

  .sidebar-info-list {
    padding-bottom: 8px;
  }

  .sidebar-info-item {
    align-items: flex-start;
  }

  .sidebar-info-icon {
    font-size: 20px;
    color: var(--primary-800);
    margin-top: 2px;
    flex-shrink: 0;
  }

  .sidebar-info-label {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: var(--text-color-primary);
    margin: 0;
  }

  .sidebar-info-value {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--gray-600);
    margin: 0;
  }

  .sidebar-info-value-success {
    font-weight: 600;
    color: #16A34A;
  }

  .btn-apply {
    padding: 16px 28px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    border-radius: 8px;
    background-color: var(--primary-800);
    border-color: var(--primary-800);
    color: var(--white);
  }

  .btn-apply:hover {
    background-color: var(--primary-900);
    border-color: var(--primary-900);
    color: var(--white);
  }

  .sidebar-notice {
    background-color: #F0FDF4;
    border-radius: 8px;
    padding: 16px;
  }

  .sidebar-notice p {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #166534;
    text-align: center;
    margin: 0;
  }

  /* Responsive Design */
  @media (max-width: 991.98px) {
    .course-hero-image {
      height: 250px;
    }

    .course-info-sidebar {
      position: relative;
      top: 0;
      margin-top: 24px;
    }
  }

  @media (max-width: 767.98px) {
    .course-details-container {
      padding-top: 140px;
      /* padding: 16px 0; */
    }

    .course-title {
      font-size: 24px;
      line-height: 32px;
    }

    .course-section-card {
      padding: 16px;
    }

    .course-section-title {
      font-size: 20px;
      line-height: 28px;
    }

    .course-info-sidebar {
      padding: 16px;
    }

    .sidebar-title {
      font-size: 20px;
      line-height: 28px;
    }
  }
  .breadcrumb-item a{
    text-decoration: none;
    color: var(--text-color-primary);
  }
  /* Course Breadcrumb Styles */
  .course-breadcrumb-container {
    background-color: var(--white);
    padding: 6px 0;
  }

  .course-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  .course-breadcrumb-home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: var(--gray-700);
    text-decoration: none;
    flex-shrink: 0;
  }

  .course-breadcrumb-home i {
    font-size: 16px;
    line-height: 1;
  }

  .course-breadcrumb-home:hover {
    color: var(--primary-800);
  }

  .course-breadcrumb-separator {
    font-size: 14px;
    color: var(--gray-400);
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .course-breadcrumb-item {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--gray-700);
    text-decoration: none;
    white-space: nowrap;
  }

  .course-breadcrumb-item:hover {
    color: var(--primary-800);
    text-decoration: none;
  }

  .course-breadcrumb-item-active {
    color: var(--text-color-primary);
    font-weight: 400;
  }

  @media (max-width: 767.98px) {
    .course-breadcrumb-container {
      padding: 6px 0;
    }

    .course-breadcrumb {
      gap: 4px;
    }

    .course-breadcrumb-item {
      font-size: 12px;
      line-height: 18px;
    }

    .course-breadcrumb-separator {
      font-size: 16px;
      width: 16px;
      height: 16px;
    }

    .course-breadcrumb-home {
      width: 14px;
      height: 14px;
    }

    .course-breadcrumb-home i {
      font-size: 14px;
    }
  }

  /* Career Path Modal Styles */
  .career-path-modal .modal-dialog {
    max-width: 1200px;
  }

  .career-path-modal-content {
    border-radius: 16px;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: none;
    position: relative;
  }

  .career-path-modal-close {
    position: absolute;
    top: 16px;
    right: 31px;
    z-index: 10;
    border: none;
    color: var(--gray-600);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
  }

  .career-path-modal-close:hover {
    color: var(--text-color-primary);
  }

  .career-path-modal-body {
    padding: 24px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .career-path-modal-header {
    margin-bottom: 24px;
  }

  .career-path-modal-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    color: var(--text-color-primary);
    margin-bottom: 12px;
  }

  .career-path-modal-subtitle {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-color-primary);
    max-width: 768px;
    margin: 0 auto;
  }

  .career-path-main-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0px 3px 25px -4px rgba(18, 26, 43, 0.1), 0px 8px 8px -6px rgba(18, 26, 43, 0.04);
    padding: 24px;
    margin-bottom: 24px;
  }

  .career-path-section-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: var(--primary-800);
    margin-bottom: 6.8px;
  }

  .career-path-section-description {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--text-color-primary);
    margin-bottom: 0;
  }

  /* Process Steps */
  .career-path-process {
    position: relative;
    padding-left: 40px;
  }

  .career-path-process-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: var(--text-color-primary);
    border-left: 4px solid var(--primary-800);
    padding-left: 20px;
    margin-bottom: 15px;
  }

  .career-path-steps {
    position: relative;
    padding-left: 0;
  }

  .career-path-steps::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 9px;
    bottom: 0;
    width: 1px;
    background-color: var(--gray-300);
    height: calc(100% - 18px);
  }

  .career-path-step {
    position: relative;
    padding-left: 40px;
    padding-bottom: 40px;
    display: flex;
    align-items: flex-start;
  }

  .career-path-step:last-child {
    padding-bottom: 0;
  }

  .career-path-step-dot {
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    background-color: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    z-index: 1;
  }

  .career-path-step-content {
    flex: 1;
  }

  .career-path-step-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: var(--text-color-primary);
    margin-bottom: 0.59px;
  }

  .career-path-step-description {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--gray-600);
    margin: 0;
  }

  /* Requirements Box */
  .career-path-requirements {
    background-color: #EFF6FF;
    border-radius: 8px;
    padding: 24px;
  }

  .career-path-requirements-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: var(--text-color-primary);
    margin-bottom: 15px;
  }

  .career-path-requirements-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
  }

  .career-path-requirements-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 11px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--gray-600);
  }

  .career-path-requirements-list li:last-child {
    margin-bottom: 0;
  }

  .career-path-requirements-list li i {
    color: var(--primary-800);
    margin-right: 8px;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .career-path-apply-btn {
    padding: 12px 24px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 25.6px;
    border-radius: 8px;
    background-color: var(--primary-800);
    border-color: var(--primary-800);
    color: var(--white);
  }

  .career-path-apply-btn:hover {
    background-color: var(--primary-900);
    border-color: var(--primary-900);
    color: var(--white);
  }

  /* Documents Section */
  .career-path-documents-section {
    border-top: 1px solid var(--gray-200);
    padding-top: 36px;
    margin-top: 24px;
  }

  .career-path-documents-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: var(--text-color-primary);
    margin-bottom: 16px;
  }

  .career-path-documents-table-wrapper {
    overflow-x: auto;
  }

  .career-path-documents-table {
    width: 100%;
    min-width: 897px;
    border-collapse: collapse;
    background-color: var(--white);
  }

  .career-path-documents-table thead {
    background-color: #F1F5F9;
  }

  .career-path-documents-table th {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--gray-600);
    padding: 9.25px 16px 8.5px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
  }

  .career-path-documents-table th:first-child {
    width: 100.61px;
  }

  .career-path-documents-table th:nth-child(2) {
    width: 315.02px;
  }

  .career-path-documents-table th:nth-child(3) {
    width: 481.38px;
  }

  .career-path-documents-table td {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text-color-primary);
    padding: 9.75px 16px 9px;
    border-bottom: 1px solid var(--gray-200);
  }

  .career-path-documents-table td:nth-child(2) {
    font-weight: 500;
  }

  .career-path-documents-optional {
    background-color: #FAF5FF;
  }

  .career-path-documents-optional td {
    color: var(--text-color-primary);
  }

  .career-path-documents-optional td:first-child i {
    color: var(--text-color-primary);
  }

  /* Support Section */
  .career-path-support-section {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0px 3px 25px -4px rgba(18, 26, 43, 0.1), 0px 8px 8px -6px rgba(18, 26, 43, 0.04);
    padding: 40px 32px 32px;
    text-align: center;
    margin-top: 24px;
  }

  .career-path-support-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: var(--text-color-primary);
    margin-bottom: 17.19px;
  }

  .career-path-support-description {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--gray-700);
    max-width: 576px;
    margin: 0 auto 17.19px;
  }

  .career-path-support-buttons {
    display: flex;
    gap: 15.99px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .career-path-support-buttons .btn {
    padding: 11px 24px 12px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 25.6px;
    border-radius: 8px;
    display: flex;
    align-items: center;
  }

  .career-path-support-buttons .btn-primary {
    background-color: var(--primary-800);
    border-color: var(--primary-800);
    color: var(--white);
  }

  .career-path-support-buttons .btn-outline-primary {
    background-color: #DBEAFE;
    border-color: #DBEAFE;
    color: var(--primary-800);
  }

  .career-path-support-buttons .btn-outline-primary:hover {
    background-color: #BFDBFE;
    border-color: #BFDBFE;
    color: var(--primary-800);
  }

  /* Responsive Design */
  @media (max-width: 991.98px) {
    .career-path-modal-body {
      padding: 16px;
    }

    .career-path-modal-title {
      font-size: 24px;
      line-height: 32px;
    }

    .career-path-modal-subtitle {
      font-size: 16px;
      line-height: 22px;
    }

    .career-path-main-card {
      padding: 16px;
    }

    .career-path-section-title {
      font-size: 20px;
      line-height: 28px;
    }

    .career-path-process {
      padding-left: 30px;
    }

    .career-path-step {
      padding-left: 30px;
      padding-bottom: 30px;
    }

    .career-path-support-section {
      padding: 24px 16px;
    }

    .career-path-support-buttons {
      flex-direction: column;
    }

    .career-path-support-buttons .btn {
      width: 100%;
      justify-content: center;
    }
  }

  @media (max-width: 767.98px) {
    .career-path-modal .modal-dialog {
      margin: 10px;
    }

    .career-path-modal-title {
      font-size: 20px;
      line-height: 28px;
    }

    .career-path-documents-section {
      padding-top: 32px;
    }

    .career-path-documents-table-wrapper {
      margin: 0 -16px;
    }
  }

  /* Register Modal Styles */
  .register-modal-content {
    border-radius: 16px;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: none;
    overflow: hidden;
  }

  .register-modal-header {
    background: linear-gradient(to right, #EFF6FF, #FFF7ED);
    border-bottom: 1px solid var(--gray-200);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .register-modal-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: var(--text-color-primary);
    margin: 0;
  }

  .register-modal-close {
    background: transparent;
    border: none;
    font-size: 24px;
    opacity: 0.7;
  }

  .register-modal-close:hover {
    opacity: 1;
  }

  /* Step Navigation Tabs */
  .register-modal-tabs {
    display: flex;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
  }

  .register-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px 18px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s;
  }

  .register-tab-btn.active {
    background-color: #EFF6FF;
    border-bottom-color: #1E40AF;
    color: #1E3A8A;
  }

  .register-tab-btn:hover:not(.active) {
    background-color: var(--gray-050);
    color: var(--text-color-primary);
  }

  /* Modal Body */
  .register-modal-body {
    padding: 24px;
    max-height: 880px;
    overflow-y: auto;
  }

  .register-step {
    display: none;
  }

  .register-step.active {
    display: block;
  }

  .register-step-header {
    margin-bottom: 32px;
  }

  .register-step-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--text-color-primary);
    margin-bottom: 7px;
  }

  .register-step-description {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--text-color-primary);
    margin: 0;
  }

  /* File Upload Area */
  .register-file-upload {
    border: 1px dashed #CBD0DC;
    border-radius: 16px;
    padding: 24px;
    background: var(--white);
    margin-bottom: 24px;
  }

  .register-uploaded-files {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .register-file-item {
    background-color: #F6F7F9;
    border-radius: 16px;
    padding: 24px;
  }

  .register-file-item .progress {
    background-color: var(--gray-200);
  }

  /* Modal Footer */
  .register-modal-footer {
    border-top: 1px solid var(--gray-200);
    padding: 25px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
  }

  .register-btn-prev {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    color: var(--gray-700);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 11px 24px 12px;
  }

  .register-btn-prev:hover {
    color: var(--text-color-primary);
  }

  .register-progress-dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .register-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-300);
    transition: all 0.3s;
  }

  .register-dot.active {
    background-color: var(--primary-800);
  }

  .register-dot.completed {
    background-color: #10B981;
  }

  .register-btn-next,
  .register-btn-submit {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    padding: 11px 24px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    background-color: var(--primary-800);
    border-color: var(--primary-800);
    color: var(--white);
  }

  .register-btn-next:hover,
  .register-btn-submit:hover {
    background-color: var(--primary-900);
    border-color: var(--primary-900);
    color: var(--white);
  }

  /* Form Styles */
  .register-step .form-label {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--gray-700);
    margin-bottom: 8px;
  }

  .register-step .form-control,
  .register-step .form-select {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding: 15px 17px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    color: var(--text-color-primary);
  }

  .register-step .form-control::placeholder {
    color: var(--gray-400);
  }

  .register-step .form-control:focus,
  .register-step .form-select:focus {
    border-color: var(--primary-800);
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 197, 0.25);
  }

  .register-step textarea.form-control {
    min-height: 100px;
    resize: vertical;
  }

  /* Responsive Design */
  @media (max-width: 991.98px) {
    .register-modal-body {
      padding: 16px;
      max-height: 70vh;
    }

    .register-modal-header {
      padding: 16px;
    }

    .register-modal-title {
      font-size: 20px;
      line-height: 28px;
    }

    .register-tab-btn {
      padding: 12px 16px;
      font-size: 12px;
    }

    .register-tab-btn span {
      display: none;
    }

    .register-modal-footer {
      padding: 16px;
      flex-wrap: wrap;
      gap: 12px;
    }

    .register-progress-dots {
      order: 3;
      width: 100%;
      justify-content: center;
      margin: 8px 0;
    }
  }

  @media (max-width: 767.98px) {
    .register-modal-content {
      margin: 10px;
    }

    .register-step-title {
      font-size: 18px;
      line-height: 26px;
    }

    .register-step-description {
      font-size: 14px;
      line-height: 20px;
    }
  }
  @media (max-width:480px) {
    .header-contact {
      gap: 10px !important;
    }
    .header-contact span.text-white {
      display: none;
    }
  }

  .header-btn-profile {
    min-width: 180px;
    background: linear-gradient(135deg, var(--primary-900), var(--primary-800));
    border: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .header-btn-profile:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(17, 49, 101, 0.25);
  }

  .header-btn-profile:disabled {
    background: var(--gray-300);
    cursor: not-allowed;
  }
  .personal-info-container {
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0px 10px 30px rgba(17, 24, 39, 0.08);
    overflow: hidden;
    border: 1px solid var(--gray-100);
  }

  .form-header {
    background: linear-gradient(125deg, var(--primary-100), var(--violet-100));
    padding: 36px 24px 16px;
    text-align: center;
  }

  .form-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--primary-950);
    margin: 0;
  }

  .form-content {
    padding: 32px 32px 48px;
    background: var(--body-bg);
  }

  .form-subtitle {
    font-size: 15px;
    color: var(--gray-600);
    margin-top: 8px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .form-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: var(--gray-700);
  }

  .form-control,
  .form-select {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 16px;
    color: var(--text-color-primary);
  }

  .form-control:focus,
  .form-select:focus {
    border-color: var(--primary-800);
    box-shadow: 0 0 0 2px rgba(37, 99, 197, 0.15);
  }

  .personal-info-form .row {
    row-gap: 24px;
  }

  #profileAlert {
    margin-bottom: 1rem;
    border-radius: 10px;
  }

  .alert-success {
    background: var(--bg-teal-light);
    color: var(--gray-800);
    border: 1px solid rgba(12, 74, 110, 0.2);
  }

  .alert-warning {
    background: var(--bg-orange-light);
    color: var(--gray-800);
    border: 1px solid rgba(180, 83, 9, 0.2);
  }

  .alert-danger {
    background: #FEE2E2;
    color: var(--danger-600);
    border: 1px solid rgba(220, 38, 38, 0.2);
  }

  #btnUpdateProfile {
    min-width: 180px;
    min-height: 48px;
    background: linear-gradient(135deg, var(--primary-900), var(--primary-800));
    border: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  #btnUpdateProfile:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(17, 49, 101, 0.25);
  }

  #btnUpdateProfile:disabled {
    background: var(--gray-300);
    cursor: not-allowed;
  }

  @media screen and (max-width: 768px) {
    .form-content {
        padding: 20px 16px 40px;
    }

    .personal-info-form {
        padding: 0 8px;
    }
  }
  .profile-page{
    margin-top:55px;
  }

  /* Countries Section */
  /* Countries Header Section */
  .countries-header-section {
    position: relative;
    width: 100%;
    min-height: 300px;
    overflow: hidden;
  }

  .countries-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
  }

  .countries-header-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 49, 101, 0.85) 0%, rgba(17, 49, 101, 0.7) 100%);
    z-index: 1;
  }

  .countries-header-section .container {
    position: relative;
    z-index: 2;
  }

  .countries-header-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -0.8px;
    color: #ffffff;
    margin-bottom: 16px;
  }

  .countries-header-subtitle {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
  }

  @media (max-width: 768px) {
    .countries-header-title {
      font-size: 32px;
      line-height: 40px;
    }

    .countries-header-subtitle {
      font-size: 16px;
      line-height: 24px;
    }

    .countries-header-section {
      min-height: 250px;
    }

    .countries-header-section .container {
      padding: 60px 0 40px !important;
    }
  }

  .countries-section {
    background: var(--primary-900);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
  }

  .countries-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-950);
    opacity: 0.8;
    z-index: 1;
  }

  .countries-section .container {
    position: relative;
    z-index: 2;
  }

  .countries-title {
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -0.72px;
  }

  .countries-description {
    color: var(--white);
    font-size: 16px;
    line-height: 22px;
  }

  .country-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .country-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .country-card-thumb {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
  }

  .country-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .country-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
  }

  .country-card-title {
    position: absolute;
    bottom: 12px;
    left: 16px;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--white);
    z-index: 2;
  }

  .country-card-body {
    padding: 16px;
  }

  .country-card-description {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-color-primary);
    margin-bottom: 10px;
  }

  .country-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .country-card-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 20px;
    color: var(--gray-800);
    margin-bottom: 8px;
  }

  .country-card-features li i {
    color: var(--violet-800);
    font-size: 20px;
  }

  .countries-view-more-btn {
    border: 1px solid var(--violet-800);
    color: var(--violet-800);
    background: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
  }

  .countries-view-more-btn:hover {
    background: var(--violet-800);
    color: var(--white);
  }

  /* Register Section */
  .register-section {
    padding: 80px 0;
    background: var(--body-bg);
  }

  .register-title {
    color: var(--violet-900);
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -0.72px;
  }

  .register-subtitle {
    color: var(--gray-800);
    font-size: 16px;
    line-height: 22px;
  }

  .register-contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .register-contact-item {
    display: flex;
    gap: 16px;
  }

  .register-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .register-contact-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: var(--gray-900);
    margin-bottom: 8px;
  }

  .register-contact-text {
    font-size: 16px;
    line-height: 22px;
    color: var(--gray-600);
    margin-bottom: 4px;
  }

  .register-working-hours {
    background: var(--gray-050);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(18, 26, 43, 0.1), 0 4px 6px rgba(18, 26, 43, 0.05);
  }

  /* FAQ Section */
  .faq-section {
    padding: 80px 0;
    background: var(--white);
  }

  .faq-title {
    color: var(--violet-900);
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -0.72px;
  }

  .faq-subtitle {
    color: var(--gray-800);
    font-size: 16px;
    line-height: 22px;
  }

  .faq-section .accordion-item {
    border: none;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 0;
  }

  .faq-section .accordion-button {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: var(--gray-900);
    background: var(--white);
    padding: 24px 0;
    box-shadow: none;
  }

  .faq-section .accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--gray-900);
    box-shadow: none;
  }

  .faq-section .accordion-body {
    font-size: 14px;
    line-height: 20px;
    color: var(--gray-600);
    padding: 0 0 24px 0;
  }

  /* Statistics Section Styles */
  .statistics-section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 0;
    overflow: hidden;
  }

  .statistics-background-wrapper {
    position: relative;
    width: 100%;
    min-height: 100%;
  }

  .statistics-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/statistics-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
  }

  .statistics-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(25, 73, 150, 1) 0%, rgba(25, 73, 150, 0.8) 100%);
    pointer-events: none;
  }

  .statistics-container {
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }

  .statistics-dashboard {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 100%;
  }

  .statistics-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .statistics-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 38px;
    color: var(--white);
    height: 44px;
    margin: 0;
    width: 100%;
  }

  .statistics-description {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: var(--white);
    max-width: 900px;
    height: 44px;
    margin: 0;
    width: 100%;
  }

  .statistics-cards-row {
    display: flex;
    gap: 24px;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
  }

  .statistics-card {
    flex: 1 1 0;
    min-width: 0;
    background-color: var(--white);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 0;
    min-width: 0;
    box-shadow: 0px 4px 6px -4px rgba(18, 26, 43, 0.05), 0px 4px 15px -4px rgba(18, 26, 43, 0.1);
  }

  .statistics-card:first-child {
    padding: 30px 77px;
  }

  .statistics-card:nth-child(2) {
    padding: 30px 102px;
  }

  .statistics-card:nth-child(3) {
    padding: 30px 86px;
  }

  .statistics-card:nth-child(4) {
    padding: 30px 64px;
  }

  .statistics-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .statistics-number {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    color: var(--violet-800);
    height: 36px;
    width: 100%;
    margin: 0;
  }

  .statistics-label {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #2a3342;
    white-space: nowrap;
    margin: 0;
  }

  /* Responsive Design for Statistics Section */
  @media (max-width: 991.98px) {
    .statistics-section {
      padding-top: 80px;
    }

    .statistics-container {
      padding-top: 30px;
      padding-bottom: 40px;
    }

    .statistics-dashboard {
      gap: 24px;
    }

    .statistics-title {
      font-size: 24px;
      line-height: 32px;
      height: auto;
    }

    .statistics-description {
      font-size: 16px;
      line-height: 22px;
      height: auto;
    }

    .statistics-cards-row {
      gap: 16px;
    }

    .statistics-card {
      flex: 1 1 calc(50% - 8px);
      min-width: 200px;
    }

    .statistics-card:first-child,
    .statistics-card:nth-child(2),
    .statistics-card:nth-child(3),
    .statistics-card:nth-child(4) {
      padding: 24px 20px;
    }

    .statistics-number {
      font-size: 24px;
      line-height: 32px;
      height: 32px;
    }
  }

  @media (max-width: 767.98px) {
    .statistics-section {
      padding-top: 60px;
    }

    .statistics-container {
      padding-top: 20px;
      padding-bottom: 30px;
    }

    .statistics-dashboard {
      gap: 20px;
    }

    .statistics-title {
      font-size: 20px;
      line-height: 28px;
      height: auto;
    }

    .statistics-description {
      font-size: 14px;
      line-height: 20px;
      height: auto;
    }

    .statistics-cards-row {
      flex-direction: column;
      gap: 16px;
    }

    .statistics-card {
      flex: 1 1 auto;
      width: 100%;
    }

    .statistics-card:first-child,
    .statistics-card:nth-child(2),
    .statistics-card:nth-child(3),
    .statistics-card:nth-child(4) {
      padding: 20px;
    }

    .statistics-number {
      font-size: 20px;
      line-height: 28px;
      height: 28px;
    }

    .statistics-label {
      font-size: 14px;
      line-height: 20px;
    }
  }

  /* Statistics Feedback Section Styles */
  .statistics-feedback {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .statistics-feedback-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .statistics-feedback-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 38px;
    color: var(--white);
    margin: 0;
    white-space: nowrap;
  }

  .statistics-feedback-subtitle {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: var(--white);
    max-width: 900px;
    min-width: 100%;
    margin: 0;
  }

  .statistics-feedback-carousel {
    width: 100%;
  }

  .statistics-feedback-carousel .slick-list {
    margin: 0 -12px;
  }

  .statistics-feedback-carousel .slick-slide {
    padding: 0 12px;
  }

  .statistics-feedback-carousel .slick-slide > div {
    height: 100%;
  }

  .statistics-feedback-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    box-shadow: 0px 4px 6px -4px rgba(18, 26, 43, 0.05), 0px 4px 15px -4px rgba(18, 26, 43, 0.1);
    height: 100%;
  }

  .statistics-feedback-card-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
  }

  .statistics-feedback-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }

  .statistics-feedback-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .statistics-feedback-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    width: 100%;
  }

  .statistics-feedback-name {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--text-color-primary);
    white-space: nowrap;
  }

  .statistics-feedback-job {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--primary-800);
    white-space: nowrap;
  }

  .statistics-feedback-location {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    justify-content: center;
  }

  .statistics-feedback-location i {
    font-size: 16px;
    color: var(--violet-800);
    margin-top: 2px;
    flex-shrink: 0;
  }

  .statistics-feedback-location span {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--text-color-primary);
    text-align: center;
    white-space: nowrap;
  }

  .statistics-feedback-quote {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-style: italic;
    color: var(--gray-700);
    margin: 0;
    width: 100%;
  }

  .statistics-feedback-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 0;
    list-style: none;
    margin: 0;
  }

  .statistics-feedback-dots li {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: var(--white);
    flex-shrink: 0;
    transition: all 0.3s;
    cursor: pointer;
    margin: 0 3px;
  }

  .statistics-feedback-dots li button {
    display: none;
  }

  .statistics-feedback-dots li.slick-active {
    width: 38px;
    height: 10px;
    background-color: #8b5cf6;
    border-radius: 10px;
  }

  /* Responsive Design for Statistics Feedback */
  @media (max-width: 991.98px) {
    .statistics-feedback {
      gap: 16px;
    }

    .statistics-feedback-title {
      font-size: 24px;
      line-height: 32px;
      white-space: normal;
    }

    .statistics-feedback-subtitle {
      font-size: 16px;
      line-height: 22px;
    }

    .statistics-feedback-carousel .slick-list {
      margin: 0 -12px;
    }

    .statistics-feedback-carousel .slick-slide {
      padding: 0 12px;
    }
  }

  /* Vision & Mission Section */
  .vision-mission-section {
    background-color: var(--gray-050);
    padding: 60px 0 48px;
  }

  .vision-mission-header {
    max-width: 760px;
    margin: 0 auto 32px;
  }

  .vision-mission-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.72px;
    color: var(--violet-900);
    margin-bottom: 12px;
  }

  .vision-mission-description {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: var(--gray-800);
    margin: 0;
  }

  .vision-card {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0px 7px 14px rgba(0, 0, 0, 0.06);
    padding: 24px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .vision-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(91, 33, 182, 0.08);
    color: var(--violet-800);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 22px;
  }

  .vision-card h3 {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: var(--gray-900);
    margin: 0;
  }

  .vision-card p {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: var(--gray-600);
    margin: 0;
  }

  .vision-guide-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 32px;
  }

  .vision-guide-video {
    flex: 0 0 52%;
  }

  .vision-guide-video-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 320px;
  }

  .vision-guide-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .vision-guide-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 49, 101, 0.1) 0%, rgba(17, 49, 101, 0.7) 100%);
  }

  .vision-guide-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--white);
    background-color: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    transition: background-color 0.2s ease;
  }

  .vision-guide-play:hover {
    background-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
  }

  .vision-guide-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .vision-guide-text h3 {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: var(--violet-900);
    margin: 0;
  }

  .vision-guide-text p {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: var(--gray-800);
    margin: 0;
  }

  .vision-guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .vision-guide-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: var(--gray-800);
  }

  .vision-guide-list li i {
    color: var(--violet-800);
  }

  .vision-guide-button {
    padding: 10px 24px;
    font-weight: 600;
    border: none;
  }

  @media (max-width: 991.98px) {
    .vision-guide-content {
      flex-direction: column;
    }

    .vision-guide-video,
    .vision-guide-text {
      width: 100%;
    }
  }

  @media (max-width: 767.98px) {
    .vision-mission-section {
      padding: 48px 0 36px;
    }

    .vision-mission-title {
      font-size: 28px;
      line-height: 34px;
    }

    .vision-guide-text h3 {
      font-size: 26px;
      line-height: 32px;
    }
  }

  @media (max-width: 767.98px) {
    .statistics-feedback {
      gap: 16px;
    }

    .statistics-feedback-title {
      font-size: 20px;
      line-height: 28px;
    }

    .statistics-feedback-subtitle {
      font-size: 14px;
      line-height: 20px;
    }

    .statistics-feedback-carousel .slick-list {
      margin: 0 -12px;
    }

    .statistics-feedback-carousel .slick-slide {
      padding: 0 12px;
    }

    .statistics-feedback-name {
      font-size: 14px;
      line-height: 20px;
    }

    .statistics-feedback-job {
      font-size: 12px;
      line-height: 18px;
    }

    .statistics-feedback-location span {
      font-size: 14px;
      line-height: 20px;
    }

    .statistics-feedback-quote {
      font-size: 14px;
      line-height: 20px;
    }
  }

  /* Country Detail Page Styles */
  .country-detail-breadcrumb {
    background: var(--white);
  }

  .country-detail-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
  }

  .country-detail-breadcrumb .breadcrumb-item a {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 20px;
  }

  .country-detail-breadcrumb .breadcrumb-item.active {
    color: var(--gray-900);
  }

  .country-detail-hero {
    position: relative;
    min-height: 400px;
    overflow: hidden;
  }

  .country-detail-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
  }

  .country-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(37, 99, 197, 1) 0%, rgba(37, 99, 197, 0.8) 100%);
    z-index: 1;
  }

  .country-detail-hero .container {
    position: relative;
    z-index: 2;
    padding: 73px 0 52px;
  }

  .country-detail-hero-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.72px;
    color: var(--white);
    margin-bottom: 24px;
  }

  .country-detail-hero-description {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--white);
    margin-bottom: 24px;
  }

  .country-detail-info-box {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 16px;
    max-width: 100%;
  }

  .country-detail-info-box .info-item {
    margin-bottom: 16px;
  }

  .country-detail-info-box .info-item:last-child {
    margin-bottom: 0;
  }

  .country-detail-info-box .info-label {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--white);
    margin-bottom: 3px;
  }

  .country-detail-info-box .info-value {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: var(--white);
    margin: 0;
  }

  .country-detail-info-box .info-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 16px 0;
  }

  .country-detail-info-box .info-item-horizontal {
    display: flex;
    gap: 3px;
    align-items: flex-start;
  }

  .country-detail-info-box .info-item-horizontal .info-label {
    width: 150px;
    flex-shrink: 0;
  }

  .btn-explore-countries {
    background: var(--violet-100);
    color: var(--violet-800);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    margin-top: 24px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .country-detail-hero .row {
    align-items: flex-start;
  }

  .btn-explore-countries:hover {
    background: var(--violet-200);
    color: var(--violet-900);
  }

  .country-detail-tabs {
    align-self: stretch;
    height: 44px;
    background: var(--white);
    border-bottom: 1px solid var(--violet-800, #5B21B6);
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .country-detail-tabs .nav-tabs {
    border-bottom: none;
    width: 100%;
    height: 100%;
    display: flex;
    margin: 0;
    padding: 0;
  }

  .country-detail-tabs .nav-item {
    align-self: stretch;
  }

  .country-detail-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    padding: 8px 16px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: var(--text-heading-primary, #111827);
    background: transparent;
    align-self: stretch;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    gap: 4px;
    display: flex;
    height: 100%;
    text-decoration: none;
  }

  .country-detail-tabs .nav-link.active {
    border-bottom: 2px solid var(--violet-800, #5B21B6);
    color: var(--violet-800, #5B21B6);
  }

  .country-detail-tabs .nav-link:hover {
    border-bottom-color: var(--violet-800, #5B21B6);
    color: var(--violet-800, #5B21B6);
    text-decoration: none;
  }

  .country-detail-tabs .nav-link .badge {
    padding: 2px 8px;
    background: var(--violet-800, #5B21B6);
    border-radius: 30px;
    color: var(--white);
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    margin-left: 4px;
  }

  /* Ensure sidebar and tab-content have equal height */
  .country-detail-content .row {
    display: flex;
    align-items: stretch;
  }

  .country-detail-content .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
  }

  .country-detail-content .tab-content {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .country-detail-content .tab-pane {
    flex: 1;
  }

  .country-detail-sidebar {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .country-detail-sidebar .sidebar-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .country-detail-sidebar .sidebar-title h3 {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: var(--violet-800);
    margin: 0;
  }

  .country-detail-sidebar .sidebar-menu {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .sidebar-menu-item {
    background: transparent;
    border: none;
    border-top: 1px solid var(--gray-200);
    padding: 12px 0;
    text-align: left;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: var(--gray-800);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
  }

  .sidebar-menu-item:first-child {
    border-top: none;
    padding-top: 0;
  }

  .sidebar-menu-item:hover {
    color: var(--violet-800);
  }

  .sidebar-menu-item.active {
    color: var(--violet-800);
  }

  .sidebar-menu-item i {
    color: var(--violet-800);
  }

  .country-detail-section-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0px 4px 15px -4px rgba(18, 26, 43, 0.1), 0px 4px 6px -4px rgba(18, 26, 43, 0.05);
  }

  .country-detail-section-card .section-card-header {
    margin-bottom: 16px;
  }

  .country-detail-section-card .section-card-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: var(--violet-950);
    margin: 0;
  }

  .country-detail-section-card .section-card-body {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: var(--gray-900);
  }

  .country-detail-section-card .section-card-body ul,
  .country-detail-section-card .section-card-body ol {
    margin-bottom: 8px;
  }

  .country-detail-section-card .section-card-body li {
    margin-bottom: 8px;
  }

  .country-detail-section-card .section-card-body li:last-child {
    margin-bottom: 0;
  }

  .country-detail-section-card .section-card-body strong {
    font-weight: 700;
  }

  @media (max-width: 991.98px) {
    .country-detail-hero-title {
      font-size: 28px;
      line-height: 36px;
    }

    .country-detail-info-box {
      max-width: 100%;
    }

    .country-detail-sidebar {
      position: relative;
      top: 0;
      margin-bottom: 24px;
    }
  }

  @media (max-width: 767.98px) {
    .country-detail-hero {
      min-height: 300px;
    }

    .country-detail-hero .container {
      padding: 40px 0 30px;
    }

    .country-detail-hero-title {
      font-size: 24px;
      line-height: 32px;
    }

    .country-detail-info-box {
      padding: 12px;
    }

    .country-detail-info-box .info-item-horizontal {
      flex-direction: column;
    }

    .country-detail-info-box .info-item-horizontal .info-label {
      width: 100%;
    }
  }

  /* Order Detail Page Styles */
  .order-detail-wrapper {
    width: 100%;
  }

  /* Breadcrumb */
  .order-detail-breadcrumb {
    background-color: #ffffff;
    padding: 6px 320px;
  }

  .breadcrumb-container {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .breadcrumb-home {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
  }

  .breadcrumb-separator {
    width: 18px;
    height: 18px;
    color: #374151;
    font-size: 12px;
  }

  .breadcrumb-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #374151;
    text-decoration: none;
  }

  .breadcrumb-link:hover {
    color: #111827;
  }

  .breadcrumb-current {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #111827;
  }

  /* Hero Section */
  .order-detail-hero {
    position: relative;
    min-height: 360px;
    overflow: hidden;
  }

  .order-detail-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .order-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(37, 99, 197, 0.65) 0%, rgba(37, 99, 197, 0.9) 100%);
  }

  .order-detail-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
    text-align: center;
  }

  .order-detail-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 4px;
  }

  .order-detail-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 0;
  }

.order-detail-hero-container {
    min-height: 360px;
    padding: 56px 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991.98px) {
    .order-detail-hero {
        min-height: 300px;
    }
    .order-detail-hero-container {
        min-height: 300px;
        padding: 48px 0 48px;
    }
    .order-detail-hero-title {
        font-size: 28px;
        line-height: 34px;
    }
    .order-detail-hero-subtitle {
        font-size: 16px;
        line-height: 22px;
    }
}

@media (max-width: 767.98px) {
    .order-detail-hero {
        min-height: 260px;
    }
    .order-detail-hero-container {
        min-height: 260px;
        padding: 40px 0 40px;
    }
    .order-detail-hero-title {
        font-size: 24px;
        line-height: 30px;
    }
    .order-detail-hero-subtitle {
        font-size: 14px;
        line-height: 20px;
    }
}

  /* Content Section */
  .order-detail-content {
    padding: 24px 320px;
  }

  /* Header with Title and Buttons */
  .order-detail-header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .order-detail-title {
    flex: 1 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #30106d;
    margin: 0;
    min-width: 0;
  }

  .order-detail-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
  }

  .order-action-btn {
    background-color: #2563c5;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    cursor: pointer;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }

  .order-action-btn:hover {
    background-color: #1e4d99;
  }

  /* Box */
  .order-detail-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 8px 16px 16px 16px;
    box-shadow: 0px 7px 9px -2px rgba(18, 26, 43, 0.06), 0px 2px 9px -2px rgba(18, 26, 43, 0.03);
    margin-bottom: 24px;
  }

  /* Tabs */
  .order-detail-tabs {
    display: flex;
    border-bottom: 1px solid #5b21b6;
    height: 44px;
  }

  .order-tab {
    height: 100%;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-bottom: 2px solid transparent;
  }

  .order-tab.active {
    border-bottom-color: #5b21b6;
  }

  .order-tab span {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    color: #111827;
  }

  .order-tab.active span {
    color: #5b21b6;
  }

  /* Tab Content */
  .order-detail-tab-content {
    padding-top: 24px;
  }

  /* Info Rows */
  .order-detail-info-row {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
  }

  .order-detail-info-col {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
  }

  .order-info-row {
    display: flex;
    gap: 16px;
    font-size: 15px;
    line-height: 20px;
  }

  .order-info-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1f2937;
    width: 170px;
    flex-shrink: 0;
  }

  .order-info-value {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #111827;
    flex: 1 0 0;
    min-width: 0;
  }

  .order-info-value.status-active {
    color: #16a34a;
  }

  .order-info-value.deadline {
    color: #b9000e;
  }

  /* Description Row */
  .order-detail-description-row {
    display: flex;
    gap: 24px;
    margin-top: 16px;
  }

  .order-detail-description-col {
    flex: 1 0 0;
    min-width: 0;
  }

  .order-info-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    color: #111827;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    line-clamp: 10;
    -webkit-box-orient: vertical;
  }

  /* Requirements List */
  .order-detail-requirements-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .requirement-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
  }

  .requirement-item i {
    font-size: 18px;
    color: #2563c5;
    width: 24px;
  }

  .requirement-item span {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #111827;
  }

  .requirement-item strong {
    font-weight: 600;
    margin-right: 8px;
  }

  /* Responsive */
  @media (max-width: 1400px) {
    .order-detail-breadcrumb {
      padding: 6px 80px;
    }

    .order-detail-content {
      padding: 24px 80px;
    }
  }

  @media (max-width: 992px) {
    .order-detail-breadcrumb {
      padding: 6px 24px;
    }

    .order-detail-content {
      padding: 24px 24px;
    }

    .order-detail-header {
      flex-direction: column;
    }

    .order-detail-actions {
      width: 100%;
      justify-content: flex-start;
    }

    .order-detail-info-row {
      flex-direction: column;
    }
  }

  /* Order Index Page Styles */
  .orders-header-section {
    position: relative;
    overflow: hidden;
  }

  .orders-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.orders-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(37, 99, 197, 0.65) 0%, rgba(37, 99, 197, 0.9) 100%);
  z-index: 1;
}

.orders-header-container {
  position: relative;
  z-index: 2;
  min-height: 300px;
  padding: 80px 0 60px;
}

  .orders-header-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .orders-header-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }

  .order-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }

  .order-card-thumb {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .order-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .order-card:hover .order-card-image {
    transform: scale(1.1);
  }

  .order-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  }

  .order-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
  }

  .order-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .order-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .order-card-description {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .order-card-info {
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
  }

  .order-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #495057;
  }

  .order-info-item i {
    color: #007bff;
    width: 20px;
  }

  .order-card-footer {
    margin-top: auto;
  }

  .order-card-link {
    color: #007bff;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
  }

  .order-card:hover .order-card-link {
    color: #0056b3;
  }

  @media (max-width: 768px) {
    .orders-header-title {
      font-size: 2rem;
    }

    .order-card-thumb {
      height: 180px;
    }

    .order-card-body {
      padding: 1.25rem;
    }
  }

  /* Submit CV Modal Styles */
  .submit-cv-modal-content {
    border-radius: 12px;
    box-shadow: 0px 4px 15px -4px rgba(18, 26, 43, 0.1), 0px 4px 6px -4px rgba(18, 26, 43, 0.05);
  }

  .submit-cv-modal-header {
    background: linear-gradient(to right, #EFF6FF, #FFF7ED);
    border-bottom: 1px solid var(--gray-200);
    padding: 24px;
  }

  .submit-cv-modal-body {
    padding: 24px;
    background: var(--gray-50);
  }

  .submit-cv-modal-footer {
    border-top: 1px solid var(--gray-200);
    padding: 16px 24px;
    display: flex;
    gap: 24px;
    justify-content: flex-end;
    background: var(--white);
  }

  .submit-cv-cancel-btn {
    border: 1px solid #5b21b6;
    color: #5b21b6;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    min-width: 130px;
  }

  .submit-cv-cancel-btn:hover {
    background: #5b21b6;
    color: var(--white);
  }

  .submit-cv-submit-btn {
    background: #2563c5;
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .submit-cv-submit-btn:hover {
    background: #1e4d99;
  }

  .cv-file-upload-area {
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    background: var(--white);
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 12px;
  }

  .cv-file-upload-btn {
    background: transparent;
    border: none;
    color: var(--gray-500);
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 0;
    cursor: pointer;
  }

  .cv-file-upload-btn:hover {
    color: var(--gray-700);
  }

  .cv-file-preview {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 8px;
    padding: 12px;
  }

  .cv-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .cv-file-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
  }

  .cv-file-icon {
    font-size: 40px;
    color: #2563c5;
  }

  .cv-file-details {
    display: flex;
    flex-direction: column;
  }

  .cv-file-name {
    font-weight: 500;
    font-size: 16px;
    color: var(--gray-900);
  }

  .cv-file-size {
    font-size: 14px;
    color: var(--gray-400);
  }

  .cv-file-remove {
    background: transparent;
    border: none;
    color: var(--gray-600);
    font-size: 20px;
    padding: 4px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cv-file-remove:hover {
    color: var(--danger-600);
  }

  /* Notification Modal Styles */
  .notification-modal-content {
    border-radius: 16px;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: none;
    overflow: hidden;
  }

  .notification-modal-header {
    background: linear-gradient(to right, #EFF6FF, #FFF7ED);
    border-bottom: 1px solid var(--gray-200);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .notification-modal-header .modal-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: var(--text-color-primary);
    margin: 0;
  }

  .notification-modal-close {
    background: transparent;
    border: none;
    font-size: 24px;
    opacity: 0.7;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .notification-modal-close:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.05);
  }

  .notification-modal-body {
    padding: 32px 24px;
    text-align: center;
    background: var(--white);
  }

  .notification-modal-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .notification-modal-icon i {
    font-size: 64px;
  }

  .notification-icon-success {
    color: #16A34A;
  }

  .notification-icon-error {
    color: var(--danger-600);
  }

  .notification-icon-warning {
    color: #F59E0B;
  }

  .notification-icon-info {
    color: var(--primary-800);
  }

  .notification-message {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--gray-900);
    margin: 0;
    text-align: center;
  }

  .notification-modal-footer {
    border-top: 1px solid var(--gray-200);
    padding: 16px 24px;
    display: flex;
    justify-content: center;
    background: var(--white);
  }

  .notification-modal-ok-btn {
    background-color: var(--primary-800);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    min-width: 120px;
    transition: all 0.3s ease;
  }

  .notification-modal-ok-btn:hover {
    background-color: var(--primary-900);
    color: var(--white);
  }

  @media (max-width: 768px) {
    .notification-modal-header {
      padding: 16px;
    }

    .notification-modal-header .modal-title {
      font-size: 20px;
      line-height: 28px;
    }

    .notification-modal-body {
      padding: 24px 16px;
    }

    .notification-modal-icon i {
      font-size: 48px;
    }

    .notification-modal-footer {
      padding: 12px 16px;
    }

    .notification-modal-ok-btn {
      width: 100%;
    }
  }

  @media (max-width: 768px) {
    .submit-cv-modal-footer {
      flex-direction: column;
    }

    .submit-cv-cancel-btn,
    .submit-cv-submit-btn {
      width: 100%;
      justify-content: center;
    }
  }

  /* Country Recruitment Tab Styles */
  .country-recruitment-tab {
    width: 100%;
  }

  .country-recruitment-search-filter {
    margin-bottom: 24px;
  }

  .country-recruitment-search-input {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    padding: 0 17px;
    height: 48px;
    width: 315px;
  }

  .country-recruitment-search-input i {
    color: var(--gray-500);
    margin-right: 8px;
    font-size: 20px;
  }

  .country-recruitment-search-input .form-control {
    border: none;
    padding: 0;
    height: auto;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-color-primary);
    background: transparent;
  }

  .country-recruitment-search-input .form-control:focus {
    box-shadow: none;
    outline: none;
  }

  .country-recruitment-search-input .form-control::placeholder {
    color: var(--gray-500);
  }

  .country-recruitment-select {
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    height: 48px;
    padding: 0 17px;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-color-primary);
    min-width: 149px;
  }

  .country-recruitment-select:focus {
    border-color: var(--primary-800);
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 197, 0.25);
  }

  .country-recruitment-view-toggle {
    display: flex;
    gap: 12px;
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    padding: 0 9px;
    height: 48px;
    align-items: center;
    justify-content: center;
  }

  .btn-view-toggle {
    background: transparent;
    border: none;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-view-toggle:hover {
    color: var(--primary-800);
  }

  .btn-view-toggle.active {
    color: var(--primary-800);
  }

  .btn-view-toggle i {
    font-size: 20px;
  }

  .country-orders-container {
    width: 100%;
  }

  .country-orders-list-view {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .country-order-list-item {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0px 4px 6px -4px rgba(18, 26, 43, 0.05), 0px 4px 15px -4px rgba(18, 26, 43, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .country-order-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 12px -4px rgba(18, 26, 43, 0.1), 0px 8px 20px -4px rgba(18, 26, 43, 0.15);
  }

  .country-order-list-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
  }

  .country-order-list-item h5 a {
    color: var(--text-color-primary);
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
  }

  .country-order-list-item h5 a:hover {
    color: var(--primary-800);
  }

  .country-order-list-item ul li {
    font-size: 14px;
    line-height: 20px;
    color: var(--gray-700);
  }

  @media (max-width: 991.98px) {
    .country-recruitment-search-filter .row {
      flex-wrap: wrap;
    }

    .country-recruitment-search-input {
      width: 100%;
    }

    .country-recruitment-select {
      flex: 1;
      min-width: 0;
    }
  }

  @media (max-width: 767.98px) {
    .country-recruitment-view-toggle {
      width: 100%;
      justify-content: center;
    }

    .country-order-list-item .row {
      flex-direction: column;
    }

    .country-order-list-item .col-md-3 {
      text-align: left !important;
      margin-top: 16px;
    }
  }

  /* Orders With Filters Page Styles */
  .orders-breadcrumb {
    background: var(--background-bg-primary, white);
  }

  .orders-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
  }

  .orders-breadcrumb .breadcrumb-item a {
    color: var(--text-heading-secondary, #374151);
    font-size: 14px;
    font-family: Inter;
    font-weight: 400;
    line-height: 20px;
  }

  .orders-breadcrumb .breadcrumb-item.active {
    color: var(--text-heading-primary, #111827);
  }

  /* Hero Section */
  .orders-hero-section {
    min-height: 320px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .orders-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(37, 99, 197, 0.8) 0%, rgba(37, 99, 197, 1) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .orders-hero-section .container {
    position: relative;
    z-index: 1;
    padding: 80px 0 80px;
  }

  .orders-hero-title {
    font-size: 30px;
    font-family: Inter;
    font-weight: 700;
    line-height: 38px;
    color: white;
  }

  .orders-hero-subtitle {
    font-size: 16px;
    font-family: Inter;
    font-weight: 400;
    line-height: 22px;
    color: white;
  }

  /* Hero Search Filter */
  .orders-hero-search-filter {
    margin-top: 24px;
  }

@media (max-width: 992px) {
    .orders-hero-section {
        min-height: 260px;
    }
    .orders-hero-section .container {
        padding: 56px 0 56px;
    }
    .orders-hero-search-filter {
        margin-top: 16px;
    }
}

@media (max-width: 768px) {
    .orders-hero-section {
        min-height: 220px;
    }
    .orders-hero-section .container {
        padding: 40px 0 40px;
    }
}

  .orders-hero-search-input-group {
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 6px 16px;
    height: 42px;
  }

  .orders-hero-search-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-heading-secondary, #374151);
    margin-right: 8px;
  }

  .orders-hero-search-input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    font-family: Inter;
    font-weight: 400;
    line-height: 20px;
    color: var(--text-heading-primary, #111827);
  }

  .orders-hero-search-input::placeholder {
    color: var(--semantic-neutral-500, #6b7280);
  }

  .orders-hero-select {
    background: white;
    border: 1px solid var(--semantic-neutral-200, #e5e7eb);
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: none;
    border-left: 1px solid var(--semantic-neutral-200, #e5e7eb);
    border-radius: 0;
    height: 42px;
    padding: 6px 17px;
    font-size: 14px;
    font-family: Inter;
    font-weight: 400;
    line-height: 20px;
    color: var(--buttons-link02-fg-button-link02-hover, #1f2937);
    width: 276px;
  }

  .orders-hero-select:first-of-type {
    border-left: none;
  }

  .orders-hero-search-btn {
    background: var(--blue-500, #3b82f6);
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    height: 42px;
    width: 162px;
    color: white;
    font-size: 16px;
    font-family: Inter;
    font-weight: 600;
    line-height: 22px;
    cursor: pointer;
  }

  .orders-hero-search-btn:hover {
    background: var(--blue-600, #2563eb);
  }

  /* Content Section */
  .orders-content-section {
    background: var(--background-bg-primary, white);
  }

  /* Sidebar Filters */
  .orders-sidebar-filters {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }

  .orders-filter-box {
    margin-bottom: 20px;
  }

  .orders-filter-title {
    font-size: 16px;
    font-family: Inter;
    font-weight: 700;
    line-height: 22px;
    color: black;
    margin-bottom: 10px;
  }

  .orders-filter-divider {
    height: 1px;
    background: #d5dae1;
    margin-bottom: 10px;
  }

  .orders-filter-body {
    padding: 10px 0;
  }

  .orders-filter-checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 16px;
    font-family: Inter;
    font-weight: 400;
    line-height: 22px;
    color: var(--semantic-neutral-800, #1f2937);
    cursor: pointer;
  }

  .orders-filter-checkbox-item i {
    width: 15px;
    height: 15px;
  }

  .orders-filter-checkbox-item span:not(.orders-filter-badge) {
    flex: 1;
  }

  .orders-filter-badge {
    background: var(--violet-200, #ddd6fe);
    border-radius: 100px;
    padding: 3px 6px;
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    line-height: 20px;
    color: var(--semantic-neutral-800, #1f2937);
  }

  /* Support Box */
  .orders-support-box {
    border-top: 1px solid #8896ab;
    padding-top: 10px;
    margin-top: 20px;
  }

  .orders-support-header {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
  }

  .orders-support-header i {
    font-size: 16px;
    color: var(--violet-800, #5b21b6);
  }

  .orders-support-title {
    font-size: 16px;
    font-family: Be Vietnam Pro;
    font-weight: 700;
    line-height: 22px;
    color: black;
    margin: 0;
  }

  .orders-support-body {
    padding-left: 25px;
    font-size: 15px;
    font-family: Inter;
    font-weight: 400;
    line-height: 20px;
    color: #333f51;
  }

  .orders-support-body p {
    margin-bottom: 5px;
  }

  .orders-support-hotline {
    font-family: SF Pro Rounded;
  }

  .orders-support-hotline strong {
    font-family: Inter;
    font-weight: 700;
  }

  /* Consultation Button */
  .orders-consultation-btn-wrapper {
    padding-top: 10px;
  }

  .orders-consultation-btn {
    background: var(--primary-800, #2563c5);
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    height: 46px;
    width: 100%;
    color: white;
    font-size: 16px;
    font-family: Inter;
    font-weight: 600;
    line-height: 22px;
    cursor: pointer;
  }

  .orders-consultation-btn:hover {
    background: var(--primary-900, #1e40af);
  }

  /* Results Header */
  .orders-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .orders-results-info {
    font-size: 16px;
    font-family: Inter;
    font-weight: 500;
    line-height: 22px;
    color: var(--semantic-neutral-700, #374151);
  }

  .orders-view-toggle {
    background: white;
    border-radius: 8px;
    box-shadow: 0px 0px 4px 0px rgba(18, 26, 43, 0.1), 0px 1px 2px -1px rgba(18, 26, 43, 0.06);
    display: flex;
    gap: 12px;
    padding: 4px 8px;
  }

  .orders-view-toggle-btn {
    background: transparent;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-heading-secondary, #374151);
  }

  .orders-view-toggle-btn.active {
    color: var(--violet-800, #5b21b6);
  }

  .orders-view-toggle-btn:hover {
    color: var(--violet-800, #5b21b6);
  }

  /* Orders Container */
  .orders-container {
    min-height: 400px;
  }

  /* Button Violet Outline */
  .btn-violet-outline {
    background: var(--violet-100, #ede9fe);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    height: 42px;
    color: var(--violet-800, #5b21b6);
    font-size: 16px;
    font-family: Inter;
    font-weight: 600;
    line-height: 22px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .btn-violet-outline:hover {
    background: var(--violet-200, #ddd6fe);
    color: var(--violet-900, #4c1d95);
  }

  /* Badge Indigo */
  .bg-indigo-50 {
    background: var(--semantic-indigo-50, #eef2ff);
  }

  .text-indigo-700 {
    color: var(--semantic-indigo-700, #4338ca);
  }