/* ========== About Page ========== */

/* ── Hero ── */
.about-hero {
  position: relative;
  height: 320px;
  background-image: url('../img/soldiers.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 720px;
}

.about-hero-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.about-hero-content p {
  font-size: 1.1rem;
  line-height: 1.65;
  opacity: 0.92;
}

/* ── Content section ── */
.about-section {
  background: #f4f6f0;
  padding: 48px 20px 64px;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.about-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Mission card ── */
.about-mission-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  padding: 24px 28px;
  border-left: 4px solid #556B2F;
}

.about-mission-card p {
  font-size: 0.98rem;
  color: #3a5a0a;
  line-height: 1.75;
  margin: 0;
}

/* ── Comparison table card ── */
.about-table-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  overflow: hidden;
}

.about-table-header {
  background: #2d3d1a;
  color: #fff;
  padding: 12px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-table-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison-table th {
  background: #556B2F;
  color: #fff;
  padding: 10px 16px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comparison-table th:first-child { text-align: left; }

.comparison-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #f0f4e8;
  text-align: center;
  color: #1c2b0e;
  vertical-align: middle;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:nth-child(even) td { background: #fafcf7; }
.comparison-table tbody tr:hover td { background: #eef4e4; }

.comparison-table td:nth-child(2) { color: #3a5a0a; font-size: 1.15rem; font-weight: 700; }
.comparison-table td:nth-child(3) { color: #b00020; font-size: 1.15rem; font-weight: 700; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-container { flex-direction: column; }
}

@media (max-width: 768px) {
  .about-hero { height: 260px; }
  .about-hero-content h1 { font-size: 1.8rem; }
  .about-hero-content p { font-size: 0.95rem; }
  .about-section { padding: 32px 14px 48px; }
  .about-mission-card { padding: 18px 20px; }
}

@media (max-width: 480px) {
  .about-hero { height: 210px; }
  .about-hero-content h1 { font-size: 1.5rem; }
  .about-hero-content p { font-size: 0.88rem; }
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th,
  .comparison-table td { padding: 8px 10px; }
}
