* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

.container {
  width: 90%;
  max-width: 960px;
  margin: auto;
}

.header {
  background: #1f3a5f;
  color: #fff;
  padding: 30px 0;
}

.header-flex {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  max-width: 80px;
}

.tagline {
  font-size: 0.95rem;
  opacity: 0.9;
}

.nav {
  background: #e9edf2;
  padding: 10px 0;
  text-align: center;
}

.nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #1f3a5f;
  font-weight: bold;
}

.nav a:hover {
  text-decoration: underline;
}

section {
  padding: 40px 0;
}

.hero {
  background: #ffffff;
  text-align: center;
}

.note {
  font-size: 0.9rem;
  color: #666;
}

.contact {
  text-align: center;
}

.email {
  font-size: 1.1rem;
}

.footer {
  background: #1f3a5f;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

.footer a {
  color: #ffffff;
  text-decoration: underline;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.pricing-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 25px;
  text-align: center;
}

.pricing-card h2 {
  color: #1f3a5f;
}

.price {
  font-size: 2rem;
  margin: 15px 0;
}

.featured {
  border: 2px solid #1f3a5f;
  background: #f0f6ff;
}

.disclaimer {
  background: #fff3f3;
  border-top: 2px solid #e0b4b4;
  border-bottom: 2px solid #e0b4b4;
}
