    /*본문 폰트*/

    body {
        font-family: 'Noto Sans KR', sans-serif;
      }

  .content {
    width:460px; margin-top:50px;
  }

  /*로고 폰트*/
  .nav_logo {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    font-style: italic;
    color: #4a63fb;
    font-size: 35px;
    text-align: center;
    border-bottom:1px solid #efefef;
  }


  /* 네비바 스타일링을 위한 추가 CSS */
  .navbar {
    position: fixed; /* 네비바를 고정합니다. */
    top: 0;
    width: 460px;
    background-color: #fff;
    z-index: 998; /* 다른 요소 위에 표시하기 위해 z-index를 설정합니다. */
  }

  .navbar ul {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    padding: 0;
    margin: 0;
  }

  .navbar li {
    width: 33.33%;
    padding: 10px;
    text-align: center;
  }

  .navbar li a {
    text-decoration: none; /* 텍스트에 밑줄 제거 */
    color: #4a63fb;
    font-weight: 500;
  }

  .navbar ul li:nth-child(2) {
      border-left: 1px solid #efefef; /* 좌측에 선을 추가합니다. */
      border-right: 1px solid #efefef; /* 우측에 선을 추가합니다. */
    }

  /* 네비바 스타일링을 위한 추가 CSS  끝*/

  .page {
    display: flex;
    justify-content: center;
    height: 100%;
  }

  .page_inner {
    display:flex;
    align-items: center;
    flex: none;
    width:100%;
    max-width: 1000px;
  }

  .page_content {
    margin: 0 auto;
    max-width: 500px;
    min-width: 375px;
    min-height: 100vh;
  }

  .site {
    background-color: #fff;
    margin-left: auto;
    margin-right: 0;
    box-shadow: 0 0 50px rgba(0,0,0,.15);
  }

  /* 좌측 영상 css */
    #video-container {
      width: 500px; /* 영상 컨테이너의 너비 */
      height: 300px; /* 영상 컨테이너의 높이 */
    }
    video {
      width: 100%; /* 영상의 너비 */
      height: 100%; /* 영상의 높이 */
    }

  /* 헤더 내용 */

  /* 헤더 내용 끝 */
  
  @media (min-width:1001px){
    .page_side:first-of-type {
      left: 0;
    }
    .page_side {
      width: calc(100% - 1000px);
      display: sticky;
      top:0;
    }
    .page .page_content_left {
      position: fixed;
      top:0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      margin-left: 0;
    }

    .page .page_content_left .img {
      width: 100%;
    }

    .page .page_content_right {
      position: fixed;
      top:0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding: 0 20px;
    }

    .page_content {
      width: 460px;
    }

    .content img {
      width: 460px;
    }
  }

  @media (min-width: 516px) and (max-width: 1000px){
    .page_content_left {
      display: none;
    }

    .site {
      width: 100%;
      margin : 0 auto;
    }

    .content img {
      width: 100%;
    }

    .page_content {
      width: 100%;
      max-width: 100%;
    }

    .navbar {
      width: 100%;
    }

    .content {
      width: 100%;
    }


  }

  @media (min-width: 0px) and (max-width: 515px){

    .navbar {
    width: 100%;
  }

    .page_content_left {
      display: none;
    }

    .page_side {
      display:none;
    }

    .site {
      width: 100%;
      margin : 0 auto;
    }

    .content {
      width: 100%;
    }

    .content img {
      width: 100%;
    }

  }
  

  /*상담 css*/
  form {
    max-width: 400px;
    margin: 0 auto;
    padding: 60px 0;
  }

  label {
    display: block;
    margin-top: 10px;
  }

  input[type="text"] {
    width: 385px;
    font-size: 16px;
    height: 30px;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #efefef;
    border-radius: 10px;
  }

  .privacy-policy {
    display: flex;
    align-items: center;
    margin-top: 10px;
  }

  .checkbox-container {
    display: flex;
    align-items: center;
    margin-right: 5px;
  }

  input[type="checkbox"] {
    margin: 0;
  }

  input[type="checkbox"] + label {
    margin-left: 5px;
  }

  input[type="submit"] {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    background-color: #262626;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-size:20px;
  }

  #myform textarea {
    width: 385px;
    height: auto;
    border: 1px solid #efefef;
    margin-top:10px;
    border-radius: 10px;
    padding: 10px;
  }

  #privacyPolicyLink {
    margin: 10px 0;
    font-size: 12ppx;
    color: #7b7b7b;
  }

  .popup {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .popup-content {
    background-color: #fefefe;
    max-width: 475px;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
  }

  .sangdam {
    text-align: center;
  }

  .sangdam h1 {
    font-weight: 400;
    font-size: 30px;
  }

  .sangdam h1 span {
    font-weight: 700;
  }

  .sangdam p {
    color: #7b7b7b;
    font-size: 16px;
  }

  @media (min-width: 0px) and (max-width: 515px){

    .inputbox {
      width: 300px;
      margin: 0 auto;
    }

    input[type="text"] {
      width: 275px;
      font-size: 16px;
      height: 30px;
      padding: 10px;
      margin-top: 10px;
      border: 1px solid #efefef;
      border-radius: 10px;
    }

    #myform textarea {
      width: 275px;
    }
  

  }

  /* 상담css 끝 */

  /*서비스 섹션 시작*/
  .price {
    background: url('../../assets/images/img_08.png');
    width: 460px;
    height: 1000px;
    background-size: cover;
    margin: 0 auto;
  }

  .price a {
    text-decoration: none; /* 밑줄 제거 */
    color: inherit; /* 상위 요소의 글자 색상을 상속 */
  }

  .price a:hover,
  .price a:focus {
    text-decoration: none; /* 밑줄 제거 */
    color: inherit; /* 상위 요소의 글자 색상을 상속 */
  }

  .price .standard {
    position: relative;
    top: 445px;
    left: 40px;
    padding: 15px;
    width:350px;
    font-size: 20px;
    background-color: #fff;
    border: 1px solid #262626;
    color:#262626;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(38, 38, 38, 0.3);
    transition: box-shadow 0.3s ease;
    text-align: center;

  }


  .price .standard:focus {
    
    outline: none;
    background-color: #262626;
    color: #fff;
    border: 1px solid #efefef;

  }

  .price .standard:hover {
    
    outline: none;
    background-color: #262626;
    color: #fff;
    border: 1px solid #efefef;

  }

  .price .deluxe {
    position: relative;
    top: 800px;
    left: 40px;
    padding: 15px;
    width:350px;
    font-size: 20px;
    background-color: #fff;
    border: 1px solid #262626;
    color:#262626;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(38, 38, 38, 0.3);
    transition: box-shadow 0.3s ease;
    text-align: center;

  }

  .price .deluxe:focus {
    
    outline: none;
    background-color: #262626;
    color: #fff;
    border: 1px solid #efefef;

  }

  .price .deluxe:hover {
    
    outline: none;
    background-color: #262626;
    color: #fff;
    border: 1px solid #efefef;

  }

  @media (min-width: 0px) and (max-width: 515px){

    .price {
      width: 100%;
      max-width: 375px;
      height: 816px;
    }

    .price .standard {
      top: 355px;
      left: 29px;
      width: 285px;
    }

    .price .deluxe {
      top: 629px;
      left: 29px;
      width: 285px;
    }

  }

  /*서비스 섹션 끝*/

  /*상단 리뷰*/

  .swiper-container {
    overflow: auto;
    overflow: hidden; /* 스크롤바를 숨기는 속성 */
  }

  /*상단 리뷰 끝*/

  /* 섹션 5 시작 */
  .section_05 {
    background: url('../../assets/images/img_05.png');
    width: 460px;
    height: 1055px;
    background-size: cover;
    margin: 0 auto;
  }

  .section_05 div span {
    position: relative;
    color:#fff;
    font-size: 35px;
    font-weight: 700;
    top:60px;
    left:125px;
  }

  @media (min-width: 0px) and (max-width: 515px){

    .section_05 {
      width:375px;
      height: 860px;
    }

    .section_05 div span {
      font-size: 30px;
      top:46px;
      left:98px;
    }

  }
  /* 섹션 5 끝 */