  @font-face {
    font-family: 'NanumSquareNeo';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.eot);
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.eot?#iefix) format("embedded-opentype"), url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.woff) format("woff"), url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.ttf) format("truetype");
}	
	
	* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .wrapper1 {
      width: 100%;
      position: relative;
      background-image: url('../images/reservation_bg.jpg'); /* ¹è°æ ÀÌ¹ÌÁö °æ·Î */
      background-size: cover;
      background-position: center;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4); /* ¾îµÎ¿î ¹ÝÅõ¸í ¿À¹ö·¹ÀÌ */
      z-index: 1;
    }

    .banner {
      position: relative;
      height: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      z-index: 2;
    }

    .banner-text h1 {
      font-size: 40px;
      color: white;
      margin-bottom: 10px;	  
	  font-family:'NanumSquareNeo', sans-serif;
    }

    .banner-text p {
      font-size: 20px;
      color: white;
	  font-family:'NanumSquareNeo', sans-serif;
    }

    @media (max-width: 1024px) {
      .banner {
        height: 200px;
        padding: 20px;
      }

      .banner-text h1 {
        font-size: 25px;
      }

      .banner-text p {
        font-size: 15px;
      }
    } 




/* reservation Æû */

    .wrapper2 {
      width: 100%;
      background-color: #212121;
      padding: 50px 20px;
    }

    .container2 {
      max-width: 1400px;
      margin: 0 auto;
      background-color: #212121;
      border-radius: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
    }

    .left-box {      
      flex: 1 1 500px;
      color: #fff;
      padding: 0px 20px 20px 20px;
    }

    .left-box p {
      font-size: 18px;
      line-height: 1.8;
      margin-bottom: 20px;
	  font-family:'NanumSquareNeo', sans-serif;
    }

    .quote-btn {
      display: inline-block;
      background-color: #4975e8;
      color: #fff;
      border: 2px solid #527eef;
      padding: 12px 30px;
      border-radius: 50px;
      font-size: 22px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      font-weight: bold;
      font-family: 'NanumSquareNeo', sans-serif;
    }

    .quote-btn:hover {
      background-color: #fff;
      color: #111;
      text-decoration: none;
    }

    .right-box {
      flex: 1 1 800px;
      background-color: #212121;
      border-radius: 20px;
      padding: 20px;
      color: #fff;
      border: 1px solid #444;
    }

    .form-group {
      display: flex;
      align-items: center;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }

    .form-group label {
      width: 150px;
      font-size: 16px;
      color: #fff;
	  font-weight: normal; /* ±âº» µÎ²²·Î ¼³Á¤ */
	  font-family:'NanumSquareNeo', sans-serif;
    }

    .form-group input,
    .form-group textarea {
      flex: 1;
      width: 100%;
      padding: 12px 16px;
      border-radius: 10px;
      border: 1px solid #444;
      background-color: #2a2a2a;
      color: #fff;
      font-size: 16px;
    }

  .form-group textarea {
    resize: vertical;
    height: 150px; /* ±âº» ³ôÀÌ (µ¥½ºÅ©Åé) */
    min-height: 150px;
    margin-top: 4px;
  }

    .submit-btn {
      display: inline-block;
      background-color: #4975e8;
      color: #fff;
      border: 2px solid #527eef;
      width: 100%;
      padding: 12px 30px;
      border-radius: 50px;
      font-size: 18px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      font-weight: bold;
      font-family: 'NanumSquareNeo', sans-serif;
    }

    .submit-btn:hover {
      background-color: #fff;
      color: #111;
    }

  @media (max-width: 1024px) {
    .container {
      flex-direction: column;
    }

    .left-box p {
      font-size: 16px !important; /* ¸ð¹ÙÀÏ¿¡¼­ ±ÛÀÚ ÀÛ°Ô (±âÁ¸ 18px ¡æ 14px) */
      line-height: 1.6; /* ÁÙ °£°Ýµµ Á¶Á¤ */
    }

    .form-group {
      flex-direction: column;
      align-items: flex-start;
    }

    .form-group label {
      width: 100%;
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
    }

    /* ¿©±â°¡ ÇÙ½É! */
    .form-group textarea {
      height: 200px !important; /* ¿øÇÏ´Â ³ôÀÌ·Î Á¶Á¤ (¿¹: 250px) */
      min-height: 200px !important;
    }

    .submit-btn {
      font-size: 16px;
      padding: 14px;
    }

    .quote-btn {
      font-size: 20px;
      padding: 10px 24px;
	  text-align: center;
    }
  }