.topBanner {
  width: 100%;
  font-family: 'Pretendard', sans-serif;
  
}

a{
  color: inherit;
  text-decoration: none;
}

.bannerImage {
  background: url('../../images/sub_bg.png') no-repeat center center;
  background-size: cover;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: black;
  text-align: center;
}

.bannerImage.business {
  background-image: url('../../images/서비스\ 분야_윗그림.jpg');
}

.bannerImage.login {
  background-image: url('../../images/고객지원_윗그림.jpg');
  color:white;
}

.bannerImage.notice {
  background-image: url('../../images/고객지원_윗그림.jpg');
  color:white !important;
}
.bannerImage.gallery {
  background-image: url('../../images/고객지원_윗그림.jpg');
}

.bannerImage.about {
  background-image: url('../../images/회사\ 소개_윗그림.jpg');
  color:white !important;

}

.bannerImage.service {
  background-image: url('../../images/검사의뢰_윗그림.jpg');
  color:white !important;
}
.bannerImage.rnd {
  background-image: url('../../images/rnd_bg.jpg');
  color:white !important;
}



.pageTitle {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 0.95rem;

}

.breadcrumb a {

  text-decoration: none;
  margin: 0 0.3rem;
}

.menuBar {
  background: #fff;
  padding: 2rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  position: relative;
  top: -40px;
  width: 50%;
  margin: 0 auto;
  z-index: 10;
}

.menuBar ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.menuBar li a {
  font-size: 1rem;
  color: #222;
  text-decoration: none;
  padding: 0.5rem 1rem;
  position: relative;
}

.menuBar li.active a {
  color: #0054b3;
  font-weight: bold;
}

.menuBar li.active a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 4px;
  background: #78b3ff;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  
  .menuBar {
    background: #fff;
    padding: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    position: relative;
    top: -40px;
    width: 90%;
    margin: 0 auto;
    z-index: 10;
  }
.menuBar li a {
  font-size: 0.9rem;
  padding: 0.5rem 0.5rem;
}

}