
/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  background-color: #0a2f5c;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}
.logo a {
  font-size: 24px;
  font-weight: bold;
  color: white;
}
.nav-links a {
  color: white;
  margin-left: 20px;
  font-weight: 500;
  padding: 8px 10px;
}
.nav-links a:hover {
  background-color: rgba(255,255,255,0.1);
  border-radius: 4px;
}

/* Hero Section */
.hero {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.hero-text {
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
}
.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #ffd700;
  color: #0a2f5c;
  font-weight: bold;
  border-radius: 5px;
}

/* Sections */
section {
  padding: 60px 40px;
}
h2 {
  font-size: 28px;
  color: #0a2f5c;
  margin-bottom: 30px;
}

/* Card Grids */
.card-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}
.card {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  flex: 0 0 250px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Testimonials and Stats */
.testimonials {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  background-color: #0a2f5c;
  color: white;
  padding: 60px 40px;
}
.testimonial-quote {
  flex: 2;
  font-size: 16px;
}
.stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}
.stat {
  background-color: white;
  color: #0a2f5c;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
}

/* Pricing Table */
.pricing-section {
  background: #fff;
}
.pricing-table {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.pricing-plan {
  background: white;
  border-radius: 10px;
  padding: 30px;
  border: 1px solid #ddd;
  flex: 1;
  min-width: 250px;
  transition: all 0.3s ease;
}
.pricing-plan:hover {
  border-color: #0a2f5c;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.pricing-plan h3 {
  color: #0a2f5c;
}
.pricing-plan p {
  font-size: 20px;
  font-weight: bold;
  color: #0a2f5c;
}
.pricing-plan ul {
  list-style: none;
  padding: 0;
}
.pricing-plan ul li {
  margin: 10px 0;
}
.pricing-plan button {
  background-color: #0a2f5c;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 15px;
  cursor: pointer;
}

/* Footer */
.site-footer {
  background-color: #0a2f5c;
  color: white;
  padding: 40px;
}
.footer-content-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-content-top p {
  margin: 5px 10px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 15px;
  font-size: 14px;
}
.footer-links a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  font-size: 14px;
}
