@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/contact_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;
      }
    } 


 /* contact Áöµµ ºÎºÐ */
    .wrapper2 {
      width: 100%;
      background-color: #212121;
      padding: 40px 0;
    }

    .container2 {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* ¹öÆ° ¿µ¿ª */
    .button-container {
      display: flex;
      gap: 20px;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .quote-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #4975e8;
      color: #fff;
      border: 2px solid #527eef;
      padding: 14px 0;
      border-radius: 50px;
      font-size: 18px;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      transition: 0.3s ease;
      flex: 1 1 48%;
      gap: 8px;	  
	  font-family:'NanumSquareNeo', sans-serif;
    }

    .quote-btn:hover {
      background-color: #fff;
      color: #111;
      text-decoration:none;
    }

    .quote-btn span {
      font-size: 20px;
    }

    @media (max-width: 768px) {
      .button-container {
        flex-direction: column;
      }

      .quote-btn {
        width: 100%;
        margin-bottom: 10px;
      }
    }

    /* Áöµµ ¿µ¿ª */
    .map-section {
      background-color: #2c2c2c;
      border-radius: 20px;
      padding: 20px;
      margin-bottom: 20px;
    }

    .map-container {
      width: 100%;
      height: 400px;
      border-radius: 10px;
      overflow: hidden;
    }

    /* Á¤º¸ ¹Ú½º */
    .info-box {
      background-color: #212121;
      border-radius: 15px;
      width: 100%;
      padding: 20px;
    }

    .info-row {
      border-bottom: 1px solid #444;
      padding: 15px 0;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      color: #ccc;
    }

    .info-row:last-child {
      border-bottom: none;
    }

    .info-label {
      font-weight: bold;
      color: #fff;	  
      font-size: 17px;
      min-width: 140px;	  
      padding-left: 30px;  /* ÁÂÃø ¿©¹é Ãß°¡ */
	  font-family:'NanumSquareNeo', sans-serif;
    }

    .info-value {
      font-size: 18px;
      color: #fff;	 	  
	  font-family:'NanumSquareNeo', sans-serif;
      padding-left: 70px; /* ¿ìÃø ¿©¹é Ãß°¡ */
      flex: 1;
    }


/* ±âº» ¹öÆ° ½ºÅ¸ÀÏ */
.nav-btn {
  display: inline-block;
  background-color: #111;
  color: #fff;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 20px 34px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

/* ¸¶¿ì½º ¿À¹ö È¿°ú */
.nav-btn:hover {
  background-color: #fff;
  color: #111;
  border: 2px solid #111;
  text-decoration: none;
}

/* À§Ä¡ ÁöÁ¤: PC¿¡¼­´Â ¿ìÃø Á¤·Ä */
.nav-wrapper {
  text-align: right;
  margin-top: 30px;
}

    @media (max-width: 768px) {
      .info-row {
        flex-direction: column;
        text-align: center;
      }

     .info-label,
     .info-value {
       padding-left: 0;
       padding-right: 0;
       text-align: center;
       font-size: 15px;
  }

  .nav-wrapper {
    text-align: center;
  }
    }