body {
    margin: 0;
    font-family: 'Prompt', sans-serif;
    color: #ababab; /*font color*/
  }
  
  .container {
    display: grid;
    grid-template-columns: 55% 40%; /* ซ้าย 40%, ขวา 60% */
    padding-top: 50px;
    /* gap: 16px; */
    height: 100vh; /* ให้เต็มหน้าจอ */
    /* padding: 16px; */
    box-sizing: border-box;
    background: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.15) 100%), radial-gradient(at top center, rgba(255,255,255,0.40) 0%, rgba(0,0,0,0.40) 120%) #989898;
    background-blend-mode: multiply,multiply;
  }
  
  .left {
    display: grid;
    grid-template-rows: 50% 30%; /* ซ้ายแบ่งเป็น 2 ส่วน: top 40%, bottom 60% */
    height: 90vh;
    padding-left: 50px;
  }
  
  .left-top,
  .left-bottom {
    display: block;
    justify-content: center; /* จัดตำแหน่งแนวนอน */
    align-items: center;
    text-align: left;
    position: relative;
    height: 100%;
    width: 100%;
    transform: translateX(180px);
  }

  .right {
    display: flex;
    justify-content: center; /* จัดตำแหน่งแนวนอน */
    align-items: center; /* จัดตำแหน่งแนวตั้ง */
    text-align: center;
    position: relative;
    height: 70%;
    width: 90%;
    transform: translateX(-50px);
  }

  .text-style-1 {
    font-weight: bold;
    font-size: 38px;
    line-height: 1.2; /* ลดระยะห่างระหว่างบรรทัด */
    margin-bottom: 20px; /* ปรับระยะห่างด้านล่าง */
  }

  .text-style-2 {
    font-size: 23px;
    line-height: 1.4; /* ปรับระยะห่างระหว่างบรรทัด */
    margin-top: 0; /* ปรับระยะห่างด้านบน */
    margin-bottom: 5px; /* ปรับระยะห่างด้านล่าง */
  }

  a {
    color: #4b4b4b;  /* สีลิงก์ */
    text-decoration: none; /* เอาเส้นใต้ลิงก์ออก */
    font-weight: bold;
    transition: color 0.3s ease-in-out;
    font-size: 14px;
  }

  .img-style-1 { /*logo*/
    width: auto;
    padding-top: 50px;
    /* padding-left: 20px; */
    height: 100px;
    object-fit: contain;
  }

  .img-style-2 { /*mobile*/
    padding-top: 50px;
    padding-left: 100px;
    width: auto;
    height: 100%;
  }

  .img-style-3 {
    width: auto;
    height: 15%;
  }