/* ------------------------------
   GLOBAL RESET & BASE
--------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f7f7f7;
}

/* ------------------------------
   HERO HEADER
--------------------------------*/
.hero {
  background: url("../assets/images/301Anacostia.jpg") center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: white;
  position: relative;
}

/* Optional dark overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 25px;
}

.btn-primary {
  background: #0066cc;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.btn-primary:hover {
  background: #004c99;
}

/* ------------------------------
   SECTIONS
--------------------------------*/
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  background: white;
  margin-bottom: 20px;
  border-radius: 8px;
}

section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #222;
}

.intro p {
  font-size: 1.1rem;
}

/* ------------------------------
   FEATURE LIST
--------------------------------*/
.feature-list {
  list-style: none;
  font-size: 1.1rem;
}

.feature-list li {
  padding: 10px 0;
}

/* ------------------------------
   PRICING GRID
--------------------------------*/
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.price-card {
  background: #eef5ff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.price-card h3 {
  margin-bottom: 10px;
}

.price {
  font-size: 1.6rem;
  font-weight: bold;
  color: #004c99;
}

.disclaimer {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}

/* ------------------------------
   BUTTONS
--------------------------------*/
.btn-secondary {
  background: #ddd;
  color: #333;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #ccc;
}

/* ------------------------------
   FOOTER
--------------------------------*/
footer {
  text-align: center;
  padding: 40px 20px;
  background: #222;
  color: #ccc;
}

.footer-nav a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
}

.footer-nav a:hover {
  color: white;
}
