body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.banner {
    margin-top: 0px;
    background: url('/images/backgroundQuality.jpeg') no-repeat center center;
    background-size: cover;
    color: rgb(217, 217, 217);
    padding: 80px 30px;
    text-align: right; /* 텍스트를 우측 정렬 */
    position: relative;
}
.banner h1 {
    font-size: 48px; /* 글씨 크기 */
    margin: 0; /* 상하 여백 제거 */
    position: absolute; /* 절대 위치 지정 */
    bottom: 10px; /* 하단 여백 */
    right: 10px; /* 우측 여백 */
}

.header-bar {
    background-color: rgba(0, 0, 0, 0.119); /* 검은색 배경, 약간 투명 */
    color: rgb(49, 47, 47); /* 글씨 색상 흰색 */
    font-family: 'Arial', sans-serif; /* 기본 글씨체 */
    font-size: 16px; /* 글씨 크기 */
    padding: 10px 20px; /* 안쪽 여백 */
    display: flex; /* 가로 정렬 */
    align-items: center; /* 세로 정렬 */
    gap: 10px; /* 항목 간 간격 */
}

.header-item {
    white-space: nowrap; /* 텍스트 줄바꿈 방지 */
}

.divider {
    width: 1px; /* 선 두께 */
    align-self: stretch; /* 상하로 꽉 채움 */
    background-color: rgb(0, 0, 0); /* 선 색상 */
    margin: 0 5px; /* 선 좌우 여백 */
}
.quality-banner {
    width: 100%;
    height: auto; /* 화면 높이 말고 이미지 크기에 맞게 */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    padding: 40px 0; /* 위아래 패딩으로 여백 조절 */
}

.quality-banner img {
    max-width: 70%;
    max-height: 500px;
    object-fit: contain;
}

.quality-management {
    margin: 40px auto;
    max-width: 800px;
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.quality-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.quality-header i {
    font-size: 24px;
    color: #000000;
}

.quality-header h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

.quality-description {
    margin-bottom: 30px;
    font-size: 16px;
}

.quality-policy h3 {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
}

.quality-policy p {
    font-size: 16px;
    margin: 0;
}

@media (max-width: 768px) {
    .quality-banner img {
      max-width: 100%;   /* 화면 너비 기준으로 꽉 차게 */
      height: auto;      /* 비율 유지 */
    }
  
    .quality-banner {
      padding: 20px 0;   /* 모바일에서는 여백도 살짝 줄여줌 */
    }
  }
