body
{
   font-weight: normal;
   font-size: 16px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
#PageHeader1
{
   background-color: #FFFFFF;
   background-image: none;
   border-radius: 0px;
   box-sizing: border-box;
}
#wb_Image3
{
   vertical-align: top;
}
#Image3
{
   border: 0px solid #000000;
   border-radius: 0px;
   box-sizing: border-box;
   padding: 0;
   margin: 0;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
}
#wb_Image2
{
   vertical-align: top;
}
#Image2
{
   border: 0px solid #000000;
   border-radius: 0px;
   box-sizing: border-box;
   padding: 0;
   margin: 0;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
}
#Shape13
{
   border-width: 0;
   vertical-align: top;
}
#wb_Image1
{
   vertical-align: top;
}
#Image1
{
   border: 0px solid #000000;
   border-radius: 0px;
   box-sizing: border-box;
   padding: 0;
   margin: 0;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
}
#MorphingIcon1
{
   overflow: visible;
}
#PageFooter1
{
   background-color: #F8F9FA;
   background-image: none;
   border-radius: 0px;
   box-sizing: border-box;
}
#PageFooter4
{
   background-color: #F8F9FA;
   background-image: none;
   border-radius: 0px;
   box-sizing: border-box;
}
#PageFooter2
{
   background-color: #F8F9FA;
   background-image: none;
   border-radius: 0px;
   box-sizing: border-box;
}
#PageFooter3
{
   background-color: #F8F9FA;
   background-image: none;
   border-radius: 0px;
   box-sizing: border-box;
}
        body {
            font-family: 'Mitr', sans-serif;
            text-align: center;
            padding: 50px;
            font-size: 12px; /* ฟ้อนหลักขนาด 12 */
        }
        button {
            margin: 5px;
            padding: 5px 10px;
            font-size: 12px;
            cursor: pointer;
            border-radius: 6px;
            border: 1px solid #4CAF50;
            background-color: #ffffff;
            color: #4CAF50;
            transition: background-color 0.3s, color 0.3s;
        }
        button:hover {
            background-color: #4CAF50;
            color: white;
        }
            body {
            margin: 0;
            padding: 0;
            font-family: 'Mitr', sans-serif;
            background-color: #fff;
        }
        .nav {
            display: flex;
            justify-content: center;
            align-items: center;
            list-style: none;
            padding-left: 0;
            margin: 0;
            gap: 35px;
            font-size: 18px;
        }
        .nav-item {
            position: relative;
        }
        .nav-link,
        .dropdown-item {
            font-family: 'Mitr', sans-serif;
            font-weight: 500;
            font-size: 16px;
            color: #333333 !important;
            text-decoration: none !important;
            padding: 10px 0;
            transition: color 0.3s;
        }
        .nav-link:hover,
        .dropdown-item:hover {
            color: #006400 !important;
        }
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            padding: 0;
            border: none;
            box-shadow: none;
            display: none;
            flex-direction: column;
            background-color: white;
        }
        .dropdown:hover .dropdown-menu {
            display: flex;
        }

        /* ปิดการคลิกสำหรับเมนู "นักลงทุนสัมพันธ์" */
        .nav-item.dropdown:nth-child(3) {
            pointer-events: none;
            opacity: 0.6; /* ทำให้ดูจาง */
        }
        .dropdown-item {
            font-weight: 400;
            text-align: center;
            padding: 8px 15px;
        }
            body {
            font-family: 'Mitr', sans-serif;
            text-align: center;
            padding: 50px;
            font-size: 12px; /* ฟ้อนหลักขนาด 12 */
        }
        button {
            margin: 5px;
            padding: 5px 10px;
            font-size: 12px;
            cursor: pointer;
            border-radius: 6px;
            border: 1px solid #4CAF50;
            background-color: #ffffff;
            color: #4CAF50;
            transition: background-color 0.3s, color 0.3s;
        }
        button:hover {
            background-color: #4CAF50;
            color: white;
        }
        body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 0px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
       margin-top: 40px; 
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    /* MODAL STYLE */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 50px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    /* MODAL STYLE */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 50px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 50px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 50px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 50px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 50px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 50px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    /* MODAL STYLE */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 50px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    /* MODAL STYLE */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 50px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    /* MODAL STYLE */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 50px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    /* MODAL STYLE */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 50px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    /* MODAL STYLE */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 50px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    /* MODAL STYLE */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 50px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    /* MODAL STYLE */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 0px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
       margin-top: 40px; 
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    /* MODAL STYLE */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 50px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    /* MODAL STYLE */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 50px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    /* MODAL STYLE */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 50px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    /* MODAL STYLE */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 50px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    /* MODAL STYLE */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 50px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    /* MODAL STYLE */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 50px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    /* MODAL STYLE */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
      body {
      font-family: 'Mitr', sans-serif;
      margin: 30px;
      background: #fdfdfd;
      color: #333;
    }

    h2 {
      font-size: 28px;
      font-weight: 1000;
      margin-bottom: 50px;
    }

    .profile-group {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap:10px;
      justify-content: center;
    }

    .profile-container {
      text-align: center;
      cursor: pointer;
    }

    .profile-container img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .profile-container img:hover {
      transform: scale(1.05);
    }

    .name {
      margin-top: 4px;
      font-size: 16px;
      font-weight: 500;
    }

    /* MODAL STYLE */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content img {
      width: 200px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .modal .close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modal-bio {
      font-size: 16px;
      color: #555;
    }
    .company-container {
    display: flex;
    gap: 300px; /* ระยะห่างซ้าย-ขวา */
    font-family: 'Mitr', sans-serif;
    color: #ffffff;
    padding: 20px;
    max-width: 900px;
    margin: 20px auto; /* เว้นขอบบน-ล่าง */
  }
  .company-left {
    flex: 2;
    text-align: left;
  }
  .company-left .company-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .company-left .company-details,
  .company-left .contact {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    white-space: nowrap;
  }
  .company-left .contact {
    margin-top: 20px;
  }
  .company-left .contact span {
    font-weight: 500;
  }

  .company-right {
    flex: 1;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 150px;
    font-size: 18px;
       
  }
  .company-right a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    white-space: nowrap;
  }
  .company-right a:hover {
    text-decoration: underline;
  }
    body {
      background-color: #333; /* ใส่พื้นหลังเข้ม เพื่อให้สีขาวเด่น */
      padding: 20px;
    }
    .heading {
      font-family: 'Mitr', sans-serif;
      font-weight: 500; /* Medium */
      font-size: 40px;
      color: white;
      text-align: center;
      margin-bottom: 20px;
    }
  