.mi {
  background-color: rgb(36, 33, 29);
}

.mi-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.mi-left,
.mi-right {
  width: 50%;
}

.mi-title {
  font-size: 48px;
  color: rgb(244, 128, 0);
  margin-bottom: 20px;
}

.mi-tagline {
  font-size: 28px;
  line-height: 1.3;
  color: #e6e6e6;
  margin-bottom: 20px;
}

.mi-text {
  font-size: 20px;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 40px;
}

.mi-buttons {
  display: flex;
  gap: 20px;
}

.mi-image-box {
  width: 100%;
  height: 320px;
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}

.mi-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mi-access {
  margin-top: 60px;
}

.mi-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.mi-links-inline a {
  color: #c9a86a;
  font-size: 18px;
  white-space: nowrap;
  transition: 0.2s ease;
}

.mi-links-inline a:hover {
  color: #e6c98a;
}


