
  /* 메인 비주얼 스타일 */
  .hero {
    position: relative;
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .hero-image {
    width: 100vw;
    height: 100%;
    background-position: center;
    background-image: url('../../images/business_areas_mainvisual.png');
    background-size: cover;
    position: absolute;
    top: 0;
    opacity: 0.9;
  }
  
  .hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
  }
  
  .hero h1 {
    font-size: 48px;
    color: #fff;
  }
  
  /* 컨텐츠 섹션 스타일 */
  section {
    padding: 80px 0;
    margin: 0 auto;
    position: relative;
  }
  #businessareas {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
  }
  
  /*사업분야 서브메뉴 스타일*/
  .businessareas_menu {
    width: 100%;
    margin-bottom: 30px;
    border-bottom: solid 2px #f2f2f2;
  }
  
  .businessareas_menu ul {
    display: flex;
    height: 50px;
    justify-content: space-between;
    list-style: none;
    padding: 0;
  }
  
  .businessareas_menu ul li {
    flex: 1;
    text-align: center;
  }
  
  .businessareas_menu ul li a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
  
  .businessareas_menu ul li:hover {
    background-color: #f2f2f2;
  }
  
  .businessareas_title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 50px;
  }
  /*사업분야 서브메뉴 스타일 끝*/
  
  h4.businessareas_subtitle{
    width: 200px;
    height: 80px;
    font: bold 24px/80px "Noto Sans KR";
    margin: 2vh 0;
    position: relative;
    top: 0;
    left: 0;
    /* background-color: red; */
  }
  
  /*관리기본방안*/
  .management_policy-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 20vh;
  }
  #hygiene_operation_subtext_title {
    text-align: left;
    font-size: 20px;
    position: relative;
  }
  
  #hygiene_operation_subtext_title span {
    font-weight: bold;
  }
  
  #hygiene_operation_img {
    text-align: center;
    position: relative;
  }
  
  #hygiene_operation_img img {
    max-width: 70%;
    height: auto;
    margin: 10vh auto;
  }
  
  #hygiene_operation_textbox {
    display: flex;
    flex-wrap: wrap;
    /* background-color: red; */
    justify-content: space-between;
    margin: 0;
    padding: 0;
    position: relative;
  }
  
  #hygiene_operation_textbox > li {
    width: calc(20% - 20px);
  }
  
  @media screen and (max-width: 1024px) {
    #hygiene_operation_textbox > li {
      width: calc(33.33% - 20px);
    }
  }
  
  @media screen and (max-width: 768px) {
    #hygiene_operation_textbox > li {
      width: calc(50% - 20px);
    }
  }
  
  @media screen and (max-width: 480px) {
    #hygiene_operation_textbox > li {
      width: 100%;
    }
  }

  /*프로세스*/
  .Hprocess_list img {
    max-width: 100%;
    height: auto;
  }
  .Hprocess_list{
    width: 100%;
    /* background-color: #F2F2F2; */
  }
  .Hprocess_list-container{
    width: 1400px;
    height: auto;
    margin: 0px auto;
    position: relative;
    top: 0px;
    left: 0px;
    /* background-color: blue; */
  }
  
  .Hprocess_list-container>img{
    width: 100%;
    height: auto;
    margin-bottom: 10vh;
  }


  @media screen and (max-width: 1400px) {
    .businessareas_subtitle,
    .management_policy-container,
    .Hprocess_list-container {
      max-width: 90%;
      margin: 0 auto;
    }
  }
  
  @media screen and (max-width: 768px) {
    .header-container {
      flex-direction: column;
      align-items: flex-start;
      border-bottom: none;
    }
  
    nav ul {
      margin-top: 20px;
    }
  
    .company-info {
      flex-basis: 100%;
      margin-bottom: 40px;
    }
  }