  <style>
    * { box-sizing: border-box; }


    .container {
      display: flex;
      flex-wrap: wrap;
      max-width: 1400px;
      margin: 120px auto ;
      gap: 30px;
      padding:0 20px;letter-spacing:-1px;  
    }

    .image-side {
      flex: 0.95;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      animation: fadeInUp 1s ease-in-out;
    }

    .main-img {
      width: 100%;
      height: auto;
      max-height: 900px;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      object-fit: cover;
    }

    .content-side {
      flex: 1.05;
      padding: 30px 30px 30px 50px;
      animation: fadeInRight 1s ease-in-out;
    }

    .badge {
      display: inline-block;
      background-color: #38B16E;
      color: white;
      font-size: 18px;
      padding: 10px 30px;
      border-radius: 100px;
      margin-bottom: 15px;
    }

    .title {
      font-size: 52px;
      font-weight: bold;
      color: #38B16E;
      margin-bottom: 50px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 20px;
      margin-bottom: 80px;
    }

    td {
      padding: 26px 20px;
      border-bottom: 1px solid #ccc;
      vertical-align: middle;
    }

    /* ✅ 첫 번째 행 위쪽에 같은 회색 라인 */
    table tr:first-child td {
      border-top: 3px solid #000;
    }

    table tr:last-child td {
      border-bottom: 3px solid #000;
    }

    td:first-child {
      font-weight: bold;
      color: #444;
      width: 160px;
      border-right: 1px solid #aaa;
	  text-align:center;
    }

    td:not(:first-child) {
      border-right: none;
    }

    .btn-group {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .btn {
      flex: 1 1 calc(50% - 10px);
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 30px;
      font-size: 20px;
      border-radius: 100px;
      border: 2px solid transparent;
      text-decoration: none;
      transition: 0.3s;
      cursor: pointer;
    }

    .btn-kor {
      background-color: #00ADEF;
      color: white;
    }

    .btn-kor:hover {
      background-color: #000;
	   color: #fff;
    }

    .btn-eng {
      background-color: #fff;
      border: 2px solid #000;
      color: #000;
    }

    .btn-eng:hover {
      background-color: #000;
      color: #fff;
    }

    /* ✅ 반응형 설정 */
	
	@media (max-width: 1024px) {
      .container {
        flex-direction: column;
        max-width: 100%;
      }

      .main-img {
       width: 60%;
	   max-height: 800px;
      }
	  
	  .badge {
      font-size: 16px;
      padding: 8px 20px;
    }
	
	 .title {
      font-size: 48px;
    }
	
	
	 table {
		 margin-bottom: 40px;
		}
	
      .content-side {
        width: 100%;
        padding: 20px;
      }
	  
	  td:first-child {      
      width: 140px;     
		}
   }

@media (max-width: 768px) {
    .container {    
		 margin: 20px auto ;
		 flex-direction: column;
		 max-width: 100%;
		}
		
	.badge {
		font-size: 13px;
		padding: 6px 14px;
		}
	.title {
        font-size: 28px;
		}

    table {
        font-size: 16px;
		 margin-bottom: 20px;
		}
	  
	td {
		 padding: 16px 10px;
		 border-bottom: 1px solid #ccc;
		 vertical-align: top;
		}
	
	td:first-child {      
      width: 100px;     
		}
		
    .btn {
        font-size: 15px;
        padding: 12px 20px;
        flex: 1 1 100%;
      }

    .main-img {
       width: 90%;
	   max-height: 600px;
	   border-radius: 12px;
      }

    .content-side {
        padding: 10px;
      }

    .btn-group {
        gap: 10px;
      }
    }

    /* ✅ 애니메이션 효과 */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(40px); }
      to   { opacity: 1; transform: translateX(0); }
    }
  </style>
