	* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .wrapper1 {
      width: 100%;
      position: relative;
      background-image: url('../images/location_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: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      z-index: 2;
    }

    .banner-text h1 {
      font-size: 55px;
      color: white;
      margin-bottom: 10px;	  
	  font-family:'NanumSquareNeoBold', sans-serif;
    }

    .banner-text p {
      font-size: 20px;
      color: white;
	  font-family:'NanumSquareNeoBold', sans-serif;
    }

    @media (max-width: 1024px) {
      .banner {
        height: 200px;
        padding: 20px;
      }

      .banner-text h1 {
        font-size: 25px;
      }

      .banner-text p {
        font-size: 15px;
      }
    } 



 /* Áöµµ */
    .section {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      min-height: 50vh;
      overflow: hidden;
	  padding: 30px 0px 0px 0px;
    }

    .left-image {
      flex: 1 1 60%;
      min-height: 400px;
      opacity: 0;
      animation: slideUp 0s ease-out forwards;
    }

    .right-text {
      flex: 1 1 40%;
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 40px 40px;
      padding-left: 50px;
      flex-direction: column;
    }

    .text-content {
      max-width: 700px;
      margin-bottom: 0;
    }

    .line {
      opacity: 0;
      transform: translateY(60px);
      animation: slideUp 0s ease-out forwards;
    }

    .line1 {
      font-size: 40px;
      font-weight: bold;
      margin-bottom: 50px;
    }

    .line2 {
      font-size: 20px;
      line-height: 1.8;
    }

    .line3 {
      font-size: 18px;
    }

    .line4 {
      font-size: 20px;
      font-weight: bold;
    }

    /* PC¿¡¼­ ÀÌ¹ÌÁö ¾Ö´Ï¸ÞÀÌ¼Ç delay: line1 ³¡³­ µÚ ½ÇÇà (0.4s) */
    .left-image.pc {
      animation-delay: 0.4s;
    }

    @keyframes slideUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ¸ð¹ÙÀÏ ½ºÅ¸ÀÏ */
    @media (max-width: 1024px) {
      .section {
    display: block;
    min-height: auto;
	  padding: 20px 0px 0px 0px;
    margin: 0;
      }

      .left-image {
        width: 100%;
        height: 400px;
        min-height: 400px;
        flex-shrink: 0;
        order: 0;
      }

      .right-text {
        order: 1;
        padding: 30px 20px;
		padding-bottom: 0 !important;
      }

     .text-content {
       margin-bottom: 0;
     }

      .line1 {
        font-size: 28px;
      }

      .line2 {
        font-size: 16px;
      }

      .line3 {
        font-size: 15px;
      }

      .line4 {
        font-size: 16px;
		margin-bottom: 30px;
      }
    }


        .consult-btn {
            display: inline-block;
            padding: 20px 40px; /* ±âº» ÆÐµù (¸ð¹ÙÀÏ ¿ì¼±) */
            background-color: #333;
            color: #fff;
            border: 2px solid #333;
            border-radius: 35px; /* ´õ µÕ±Û°Ô */
            text-align: center;
            font-size: 18px; /* ±âº» ±ÛÀÚ Å©±â */
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none; /* ¸µÅ© ½ºÅ¸ÀÏ Á¦°Å */
        }
        
        .consult-btn:hover {
            background-color: #fff;
            color: #111;
            border: 2px solid #333;
        }

        /* ¸Å¿ì ÀÛÀº ¸ð¹ÙÀÏ (¼±ÅÃ »çÇ×) */
        @media (max-width: 768px) {
            .consult-btn {
                padding: 15px 30px; /* ÀÛÀº È­¸é¿¡¼­ ´õ Á¶Àý */
                font-size: 16px;
            }
        }