.pf-main {
  font-family: 'Inter', sans-serif;
  background: #0d0d0d;
  color: #f2ede1;
}

.pf-main h1, .pf-main h2, .pf-main h3 {
  font-family: 'Playfair Display', serif;
  color: #f2ede1;
}

.pf-hero {
  padding: 100px 20px 60px;
  text-align: center;
}

.pf-eyebrow {
  color: #c9a227;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}

.pf-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.pf-lead {
  font-size: 18px;
  color: #c9c4b8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.pf-section {
  padding: 60px 20px;
  border-top: 1px solid #262626;
}

.pf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.pf-card {
  background: #161616;
  border: 1px solid #262626;
  border-radius: 10px;
  padding: 30px;
}

.pf-card h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #c9a227;
}

.pf-card p {
  color: #c9c4b8;
  line-height: 1.6;
  font-size: 15px;
}

.pf-military, .pf-stats, .pf-education {
  text-align: center;
}

.pf-branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 30px auto 0;
  text-align: left;
}

.pf-branch {
  background: #161616;
  border: 1px solid #262626;
  border-radius: 10px;
  padding: 25px 30px;
}

.pf-branch h3 {
  color: #c9a227;
  font-size: 18px;
  margin-bottom: 12px;
}

.pf-branch ul {
  list-style: none;
  padding: 0;
  color: #c9c4b8;
  line-height: 1.9;
}

.pf-stat-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.pf-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pf-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: #c9a227;
  font-weight: 600;
}

.pf-stat-label {
  color: #c9c4b8;
  font-size: 14px;
  max-width: 200px;
  margin-top: 8px;
}
.pf-tagline {
  font-size: 22px;
  color: #f2ede1;
  font-family: 'Playfair Display', serif;
  margin: 10px 0 24px;
}

.pf-quicknav {
  background: #161616;
  border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
  overflow-x: auto;
  white-space: nowrap;
  padding: 4px 0;
}

.pf-quicknav-row {
  display: flex;
  gap: 8px;
  padding: 10px 20px;
}

.pf-quicknav a {
  color: #c9c4b8;
  text-decoration: none;
  font-size: 13px;
  padding: 8px 16px;
  border: 1px solid #333;
  border-radius: 20px;
  white-space: nowrap;
  transition: all 0.2s;
}

.pf-quicknav a:hover {
  color: #0d0d0d;
  background: #c9a227;
  border-color: #c9a227;
}

.pf-alt {
  background: #131313;
}

.pf-tag-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.pf-tag-grid span {
  background: #1c1c1c;
  border: 1px solid #333;
  color: #f2ede1;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
}

.pf-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .pf-two-col { grid-template-columns: 1fr; }
}

.pf-highlight-box {
  background: #161616;
  border: 1px solid #262626;
  border-radius: 10px;
  padding: 25px 30px;
}

.pf-highlight-box h3 {
  color: #c9a227;
  font-size: 18px;
  margin-bottom: 12px;
}

.pf-highlight-box ul {
  list-style: none;
  padding: 0;
  color: #c9c4b8;
  line-height: 1.9;
}

.pf-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pf-pill-row span {
  background: #1c1c1c;
  border: 1px solid #333;
  color: #c9c4b8;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
}

.pf-subhead {
  margin-top: 40px;
  font-size: 24px;
}

.pf-edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 30px;
  text-align: left;
}

.pf-btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.pf-btn {
  display: inline-block;
  background: #c9a227;
  color: #0d0d0d;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.pf-btn-outline {
  background: transparent;
  border: 1px solid #c9a227;
  color: #c9a227;
}
