.pricing-hero {
  background: #142C44;
  color: #F5F2EA;
  text-align: center;
  padding: 100px 20px;
}

.pricing-section {
  background: #F5F2EA;
  padding: 80px 20px;
}

.pricing-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-card {
  background: white;
  border-radius: 8px;
  padding: 40px 30px;
  width: 350px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
}

.pricing-card.featured {
  border: 3px solid #C8A24A;
  transform: scale(1.05);
}

.pricing-card h2 {
  color: #142C44;
  margin-bottom: 15px;
}

.price {
  font-size: 42px;
  font-weight: bold;
  color: #C8A24A;
}

.per {
  color: #666;
  margin-bottom: 20px;
}

.weekly {
  font-weight: bold;
  margin-bottom: 20px;
  color: #142C44;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-card ul li {
  margin: 10px 0;
}

.pricing-card ul li::before {
  content: "✓ ";
  color: #C8A24A;
  font-weight: bold;
}

.btn-gold {
  background: #C8A24A;
  color: #142C44;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-gold:hover {
  background: #b8923f;
}

.pricing-info {
  background: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.info-list li {
  margin: 10px 0;
}

.info-list li::before {
  content: "✓ ";
  color: #C8A24A;
  font-weight: bold;
}

.pricing-cta {
  background: #142C44;
  color: #F5F2EA;
  text-align: center;
  padding: 100px 20px;
}

@media (max-width: 768px) {
  .pricing-card.featured {
    transform: scale(1);
  }
}

body {
  font-family: 'Georgia', serif;
  margin: 0;
  line-height: 1.6;
  background-color: #F5F2EA;
  color: #142C44;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 80px 0;
}

.hero {
  background: #142C44;
  color: #F5F2EA;
  text-align: center;
  padding: 120px 20px;
}

.hero-logo {
  width: 180px;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.subheading {
  font-size: 20px;
  max-width: 700px;
  margin: auto;
}

.cta-buttons {
  margin-top: 40px;
}

.btn-primary {
  background: #C8A24A;
  color: #142C44;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  margin: 10px;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #b8923f;
}

.btn-outline {
  border: 2px solid #C8A24A;
  color: #C8A24A;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  margin: 10px;
}

.section-light {
  background: #F5F2EA;
}

.section-dark {
  background: #142C44;
  color: #F5F2EA;
}

.section-cta {
  background: #C8A24A;
  color: #142C44;
  text-align: center;
  padding: 100px 20px;
}

h2 {
  font-size: 30px;
  margin-bottom: 25px;
}

.checklist,
.checklist-light {
  list-style: none;
  padding-left: 0;
}

.checklist li::before {
  content: "✓ ";
  color: #C8A24A;
  font-weight: bold;
}

.checklist-light li::before {
  content: "✓ ";
  color: #C8A24A;
  font-weight: bold;
}

.strong-text {
  font-weight: bold;
  font-size: 18px;
  margin-top: 25px;
}



