
    /* 메인 비주얼 스타일 */
    .hero {
      position: relative;
      width: 100%;
      height: 50vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    
    .hero-image {
      width: 100vw;
      height: 100%;
      background-position: center;
      background-image: url('../images/inquiry_mainvisual.png');
      background-size: cover;
      position: absolute;
      top: 0;
      opacity: 0.9;
    }
    
    .hero-content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      z-index: 1;
    }
    
    .hero h1 {
      font-size: 48px;
      color: #fff;
    }
    
    /* 컨텐츠 섹션 스타일 */
    section {
      padding: 80px 0;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    h2 {
      font-size: 36px;
      margin-bottom: 20px;
    }
    
    p {
      font-size: 18px;
      line-height: 1.6;
    }
    
    .map {
      width: 100%;
      height: 450px;
      background-color: #ddd;
      margin-top: 20px;
    }
    
    .inquiry-info{
      width: 100%;
      margin: 0 auto;
      position: relative;
    }
    .inquiry-info>img{
      width: 100%;
    }
    @media screen and (max-width: 1200px) {
      .header-container,
      .ceo-message,
      .certifications,
      .organization,
      .location,
      .footer-content {
        max-width: 90%;
      }
    }
    
    @media screen and (max-width: 768px) {
      .header-container {
        flex-direction: column;
        align-items: flex-start;
        border-bottom:none;
      }
    
      nav ul {
        margin-top: 20px;
      }
  
      .company-info {
        flex-basis: 100%;
        margin-bottom: 40px;
      }
    }