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

.banner {
    margin-top: 0px;
    background: url('/images/backgroundIntro.png') no-repeat center center;
    background-size: cover;
    color: white;
    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; /* 선 좌우 여백 */
}


.ceo-message {
    padding: 40px 20px;
    background-color: #ffffff;
}

.ceo-message .container {
    max-width: 1200px;
    margin: 0 auto;
}

.ceo-message .intro {
    text-align: left;
    margin-bottom: 40px;
}

.ceo-message .intro h1 {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
}

.ceo-message .intro p {
    font-size: 18px;
    color: #666666;
}

.ceo-message .content {
    display: flex;
    align-items: flex-start;
}

.ceo-message .image {
    flex: 0 0 40%;
    text-align: center;
    padding: 10px;
}

.ceo-message .image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ceo-message .text {
    flex: 1;
    padding: 10px;
}

.ceo-message .text .item {
    margin-bottom: 20px;
}

.ceo-message .text h2 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 10px;
}

.ceo-message .text p {
    font-size: 16px;
    color: #555555;
    line-height: 1.5;
}

.ceo-message .signature {
    margin-top: 30px;
    text-align: left;
}

.ceo-message .signature p {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
}

.ceo-message .signature img {
    max-width: 150px;
}

@media (max-width: 768px) {
    .ceo-message .content {
      flex-direction: column; /* 👉 flex를 세로 방향으로 */
      align-items: center;     /* 가운데 정렬 (선택) */
    }
  
    .ceo-message .image {
      flex: none;
      width: 100%;            /* 👉 이미지 영역을 가로로 꽉 차게 */
      padding: 0;
      margin-bottom: 20px;    /* 텍스트와 간격 */
    }
  
    .ceo-message .image img {
      width: 100%;
      height: auto;
    }
  
    .ceo-message .text {
      width: 100%;
      padding: 0 10px;
    }
  }
  
