* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: white;
  color: black;
  min-height: 100vh;
  position: relative;
}

/* Notice Banner */
.notice-banner {
  background-color: #f5f5f5;
  color: black;
  font-size: 10px;
  line-height: 1.4;
  padding: 8px 16px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

/* Decorative Lines */
.decorative-lines {
  position: fixed;
  left: 92%;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
  display: none;
}

@media (min-width: 768px) {
  .decorative-lines {
    display: block;
  }
}

.line-1 {
  width: 4px;
  height: 100%;
  background-color: #5C5C5C;
  opacity: 0.119;
  position: absolute;
}

.line-2 {
  width: 2px;
  height: 100%;
  background-color: #4A4A4A;
  opacity: 0.16;
  position: absolute;
  z-index: 10;
}

/* Content Wrapper */
.content-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 16px;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .content-wrapper {
    padding: 64px 32px;
  }
}

/* Main Content */
.main-content {
  max-width: 420px;
}

@media (min-width: 768px) {
  .main-content {
    margin-left: 200px;
  }
}

@media (min-width: 1024px) {
  .main-content {
    margin-left: 280px;
  }
}

@media (min-width: 1280px) {
  .main-content {
    margin-left: 320px;
  }
}

@media (min-width: 1536px) {
  .main-content {
    margin-left: 360px;
  }
}

/* KV Section */
.kv-section {
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .kv-section {
    margin-bottom: 74px;
  }
}

.kv-inner {
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .kv-inner {
    margin-bottom: 74px;
  }
}

/* Catchcopy */
.catchcopy {
  margin-bottom: 48px;
  width: fit-content;
}

@media (min-width: 768px) {
  .catchcopy {
    margin-bottom: 82px;
  }
}

.catchcopy svg {
  width: 160.37px;
  height: 77.643px;
  display: block;
}

@media (min-width: 640px) {
  .catchcopy svg {
    width: 213.826px;
    height: 103.524px;
  }
}

/* Logo */
.logo {
  width: 168px;
  height: 82.237px;
}

@media (min-width: 640px) {
  .logo {
    width: 224px;
    height: 109.649px;
  }
}

.logo svg {
  width: 100%;
  height: 100%;
}

/* Menu */
.menu {
  margin-bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
}

.menu-link {
  text-align: left;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
  color: black;
  width: fit-content;
  transition: opacity 0.3s;
}

.menu-link:hover {
  opacity: 0.7;
}

/* Company Info Section */
.company-info {
  margin-bottom: 120px;
}

.section-title {
  font-size: 20px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .section-title {
    margin-bottom: 38px;
  }
}

.info-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 8px;
  row-gap: 16px;
}

.info-label,
.info-value {
  font-size: 14px;
}

/* Contact Section */
.contact {
  margin-bottom: 120px;
}

.contact .section-title {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .contact .section-title {
    margin-bottom: 32px;
  }
}

.contact-text {
  font-size: 14px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .contact-text {
    margin-bottom: 35px;
    white-space: nowrap;
  }
}

.social-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.social-icon {
  width: 48px;
  height: 48px;
  transition: opacity 0.3s;
}

@media (min-width: 640px) {
  .social-icon {
    width: 56px;
    height: 56px;
  }
}

.social-icon:hover {
  opacity: 0.7;
}

.social-icon svg {
  width: 100%;
  height: 100%;
}

.social-icon.linkedin {
  width: 51.43px;
  height: 48px;
}

@media (min-width: 640px) {
  .social-icon.linkedin {
    width: 60px;
    height: 56px;
  }
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.footer {
  font-size: 10px;
}
