.sub-page section {
  max-width: 1400px;
  margin: 0 auto 120px;
}

.sub-page section:first-child {
  max-width: 100%;
  margin: 0 auto;
}

.sub-page section h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
  /*padding-left: 10px;
  border-left: 4px solid #c00;*/
  color: #222;
}

/* 회사 소개 영역 */
.company-intro{
    padding: 60px 0 0;
}
.intro-flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.intro-text {
  flex: 1 1 400px;
}

.intro-text h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}

.intro-image {
  flex: 1 1 200px;
}

.intro-image img {
  width: 100%;
  height: auto;
}

/* 테이블 스타일 */
.company-summary table,
.company-contact table {
  width: 100%;
  border-collapse: collapse;
  font-size: 17px;
  border-top: 1px solid #232323;
}

.company-summary th,
.company-contact th {
  padding: 14px;
  width: 20%;
  text-align: left;
  vertical-align: top;
  font-weight: 600;
  color: #222;
  border-bottom: 1px solid #ddd;
}

.company-summary td,
.company-contact td {
  padding: 14px;
  color: #555;
  border-bottom: 1px solid #ddd;
  line-height: 1.6;
}

/* 영상 */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 200px;
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

/* 반응형 */
@media (max-width: 1600px) {
.company-intro{
    margin-top: ;
}
  .sub-page section {

 padding: 0 16px;
}

  .intro-flex{
    gap: 0;
  }
  .intro-text h2 {
    font-size: 22px;
  }

  .sub-page section h3 {
    font-size: 20px;
  }

  .intro-flex {
    flex-direction: column;
  }

  .company-summary th,
  .company-contact th,
  .company-summary td,
  .company-contact td {
    display: block;
    width: 100%;
    padding: 12px;
  }

  .company-summary tr,
  .company-contact tr {
    display: block;
    margin-bottom: 16px;
    border-bottom: 1px solid #ddd;
  }
}
