/* Color Variables (from style tag in HTML) */
:root {
  --military-primary: #0f4c3a;
  --military-secondary: #ff5100;
  --military-gold: #c59d1f;
  --primary-foreground: #ffffff;
  --body-bg: #f3f4f6;
  --card-bg: #ffffff;
  --card-foreground: #1f2937;
  --secondary-bg-opacity: rgba(255, 81, 0, 0.1); /* bg-military-secondary/10 */
  --gold-bg-opacity: rgba(197, 157, 31, 0.1); /* bg-military-gold/10 */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

/* Base Styles */
body {
  background-color: var(--body-bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #374151;
}

.main-container {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 1rem; /* px-4 py-16 */
}

.content-wrapper {
  max-width: 72rem; /* max-w-6xl equivalent */
  margin-left: auto;
  margin-right: auto;
}

/* Heading */
.main-heading {
  font-size: 2.25rem; /* text-4xl */
  font-weight: 700; /* font-bold */
  color: var(--military-primary);
  margin-bottom: 2rem; /* mb-8 */
  text-align: center;
}

/* Overview Card (General Card Container) */
.overview-card, .process-card {
  border-radius: 0.5rem; /* rounded-lg */
  border: 1px solid #e5e7eb;
  background-color: var(--card-bg);
  color: var(--card-foreground);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem; /* mb-8 */
}

.card-body {
  padding: 1.5rem; /* p-6 */
}

.card-body.pt-6 {
  padding-top: 1.5rem;
}

/* Overview Text */
.overview-text {
  font-size: 1.125rem; /* text-lg */
  text-align: left;
  line-height: 1.625; /* leading-relaxed */
  margin-bottom: 1.5rem; /* mb-6 */
  color: #4b5563;
}

/* Image */
.image-wrapper {
  width: 100%;
  height: 16rem; /* h-64 */
  border-radius: 0.5rem; /* rounded-lg */
  overflow: hidden;
  margin-bottom: 1.5rem; /* mb-6 */
}

.ssb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SSB Selection Process Overview */
.card-header {
  display: flex;
  flex-direction: column;
  padding: 1.5rem; /* p-6 */
}

.card-title-center {
  font-weight: 600; /* font-semibold */
  letter-spacing: -0.025em; /* tracking-tight */
  font-size: 1.5rem; /* text-2xl */
  color: var(--military-primary);
  text-align: center;
  margin: 0;
}

.card-body.pt-0 {
  padding-top: 0;
}

.process-grid {
  display: grid;
  gap: 1.5rem; /* gap-6 */
  text-align: center;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr); /* md:grid-cols-4 */
  }
}

.process-step {
  padding: 1rem; /* p-4 */
  border-radius: 0.5rem; /* rounded-lg */
}

.secondary-bg {
  background-color: var(--secondary-bg-opacity);
}

.gold-bg {
  background-color: var(--gold-bg-opacity);
}

.step-title {
  font-weight: 700; /* font-bold */
  color: var(--military-primary);
  margin-bottom: 0.5rem; /* mb-2 */
  font-size: 1rem;
  margin-top: 0;
}

.step-description {
  font-size: 0.875rem; /* text-sm */
  margin: 0;
  color: #374151; /* Default text color */
}