* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* ================= MISSION ================= */
.mission-section {
  background: radial-gradient(circle at center, #2a2a2a 0%, #0e0e0e 70%);
  padding: 50px 0;
  color: #fff;
}

.logo-img {
  max-width: 180px;
}

.mission-title {
  margin: 25px 0;
  display: inline-block;
  background: #e60012;
  padding: 14px 22px;
  font-size: 28px;
  font-weight: bold;
  border-radius: 20px 20px 0px 0px;
}

.mission-text {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.divider {
  width: 90%;
  height: 3px;
  background: #e60012;
  margin: 20px 0;
}

.mission-right {
  position: relative;
}

.mission-img {
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.red-bar {
  width: 80%;
  height: 10px;
  background: #e60012;
  margin: 20px auto 0;
}

/* ================= TECH ================= */
.tech-section {
  background: #fff;
  /* padding: 50px 0; */
  color: #111;
}

.maintech-card {
  padding-bottom: 50px;
}

.tech-card-link {
  text-decoration: none;
}

.tech-card {
  background: #e60012;
  color: #fff;
  padding: 22px;
  border-radius: 20px 20px 0px 0px;
  height: 100%;
  cursor: pointer;
}

.tech-card::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #e60012;
}

.tech-card h4 {
  font-size: 20px;
  font-weight: bold;
}

.tech-card p {
  font-size: 16px;
  margin-bottom: 0px;
  line-height: 1.5;
}

.tech-note {
  font-size: 18px;
  max-width: 900px;
  line-height: 1.6;
}

.tech-divider {
  border-top: 15px solid #000000;
  opacity: 1;
}

.tech-left h3 {
  color: #e60012;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.tech-left p {
  font-size: 18px;
  line-height: 1.7;
}

.highlight {
  color: #e60012;
  font-weight: 600;
}

.tech-right img {
  max-width: 100%;
}