.topBanner {
    width: 100%;
    font-family: "Marcellus", "Pretendard", serif;
    margin: 0;
    padding: 0;
  }
  

  .bannerImage {
    position: relative;
    width: 100%;
    height: 500px;
    background: url("../images/sub_bg.png") center/cover no-repeat; /* 원하는 배너 이미지 */
   
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;      
    text-align: center;
    color: #333;           
  }
  

  .pageTitle {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  

  .breadcrumb {
    font-size: 0.95rem;
    color: #555;
    display: flex;
    gap: 0.3rem;
    align-items: center;
  }
  .breadcrumb a {
    color: #777;
    text-decoration: none;
  }
  .breadcrumb a:hover {
    text-decoration: underline;
  }
  .homeIcon i {
    font-size: 1rem;
  }
  

  .menuBar {
    width: 100%;
    height: 60px;
    background: #62b3b7;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .menuBar ul {
    list-style: none;
    display: flex;
    margin: 0; 
    padding: 0;
  }
  
  .menuBar li {
    position: relative;

    height: 60px;
    display: flex; 
   
  }
  
  /* 공통 링크 스타일 */
  .menuBar li a {
    display: block;
    color: #fff;
    text-decoration: none;
    text-align: center;
    width:200px;
    font-size: 1rem;
    padding: 0 1.5rem; 
    line-height: 60px;
  }
  
  
  .menuBar li.active {
    background: #fff;
  }
  .menuBar li.active a {
    color: #62b3b7;
  }
  
  
  @media (max-width: 768px) {
    .bannerImage {
      height: 300px;
    }
    .pageTitle {
      font-size: 1.8rem;
    }
    .breadcrumb {
      font-size: 0.85rem;
    }
    .menuBar li a {
      font-size: 0.9rem;
      padding: 0 1rem;
    }
    .menuBar li a {
        width:auto;
        font-size: 10px;

      }
  }

  /***/
  ::selection {
    background-color:#ECA42C ;
    color: #fff;
  }
  ::-moz-selection {
    background-color: #ECA42C;
    color: #fff;
  }