/* Mission Section Styles */
.mission-section {
  padding: 2.5rem 0 3.5rem 0;
  background: #fff;
}

.mission-section .header {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 4rem;
}

.mission-section .header .line {
  width: 50px;
  height: 8px;
  background-color: var(--primary-color, #e26a2c);
  margin: 0 auto 1rem auto;
}

.mission-section .header p {
  color: gray;
  font-weight: 300;
  font-size: 0.9rem;
}

.mission-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111;
}
.mission-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-bottom: 4rem;
}

.mission-card {
  background: #f9f9f9;
  border: 1px solid #ece2db;
  width: calc(100% / 3 - 2rem);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}
.mission-card:hover {
  border-color: var(--primary-color, #e26a2c);
  box-shadow: 0 4px 24px 0 rgba(226, 106, 44, 0.08);
}
.mission-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 1.2rem;
}
.mission-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #222;
  text-align: center;
}
.mission-card p {
  font-size: 1rem;
  color: #444;
  text-align: center;
}
.mission-card--formation {
  background: #fdf6f2;
  border-color: #f5cdb6;
}
.mission-card--space {
  background: #f5f7fa;
  border-color: #c9d6e3;
}
.mission-card--network {
  background: #fdf6f2;
  border-color: #f5cdb6;
}

@media (max-width: 900px) {
  .mission-cards {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .mission-card {
    max-width: 400px;
    width: 100%;
  }
}
