html,
body {
  height: 100%;
  color: #ffffff;
  background-color: #929292;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.company-intro {
  max-width: 800px;
  margin: 0 auto;
  padding: 8px 0;
}

.company-intro .intro-block {
  margin-bottom: 16px;
}

.company-intro .intro-title {
  border-bottom: 1px solid #e5e7eb;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 8px;
}

body.dark .company-intro .intro-title {
  border-color: #374151;
}

.company-intro .intro-block p {
  font-size: 1.4rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.company-intro .intro-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 769px) {
  .company-intro .intro-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .company-intro .intro-grid {
    gap: 0px;
  }
}

.company-intro .intro-item h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.company-intro .intro-item h3 span {
  font-size: 1.2rem;
  font-weight: 400;
}

body.dark .company-intro .intro-item h3 span {
  color: #fff;
}

.company-intro .intro-item .intro-text {
  font-size: 1.2rem;
  line-height: 1.75;
}

.company-intro .intro-item p {
  font-size: 1.2rem;
  line-height: 1.75;
  margin-bottom: 8px;
}
