* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f6f8;
}

/* ===== HEADER ===== */
.navbar {
  background: #1e3a8a; /* blue */
  color: #fff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 38px;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.nav-btn {
  background: #22c55e; /* green */
  color: #fff !important;
  padding: 5px 14px;
  border-radius: 20px;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(#1e3a8a, #2563eb); /* blue gradient */
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTON ===== */
.btn {
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.primary {
  background: #22c55e;
  color: white;
}

.secondary {
  background: #0ea5e9;
  color: white;
}

/* ===== FEATURES ===== */
.features {
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ===== PRICING ===== */
.pricing-section {
  padding: 50px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #1e3a8a;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.price-card {
  border: 2px solid #1e3a8a;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
}

.highlight {
  background: #eef2ff;
}

.price {
  font-size: 26px;
  margin: 15px 0;
  color: #1e3a8a;
}

/* ===== CTA ===== */
.cta {
  background: #eef2ff;
  text-align: center;
  padding: 40px 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: #111827;
  color: #fff;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.footer-box h3 {
  color: #22c55e;
  margin-bottom: 10px;
}

.footer-box a {
  color: #ccc;
  display: block;
  text-decoration: none;
}

/* ===== COPYRIGHT ===== */
.copyright {
  background: #020617;
  color: #aaa;
  text-align: center;
  padding: 10px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    background: #1e3a8a;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 15px;
  }

  nav.active {
    display: flex;
  }

  .hero h1 {
    font-size: 26px;
  }

  .pricing-container {
    grid-template-columns: 1fr;
  }
}

/* ===== BUTTON ICON FIX ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 160px;
  white-space: nowrap;
}

.btn .icon {
  font-size: 18px;
  line-height: 1;
}

/* ================= MENU PAGE ================= */
.content {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

/* ===== MENU TABLE ===== */
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

table th {
  background: #1e3a8a;
  color: #fff;
  padding: 14px;
  font-size: 16px;
  text-align: center;
}

table td {
  padding: 12px;
  text-align: center;
  font-size: 15px;
  border-bottom: 1px solid #eee;
}

table tr:nth-child(even) {
  background: #f1f5f9;
}

table tr:hover {
  background: #e0e7ff;
  transition: 0.3s;
}

.content p {
  color: #555;
}
.hero-image {
  width: 100%;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-buttons-overlay {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.btn.primary {
  background: #ffb703;
  color: #000;
}

.btn.secondary {
  background: #25D366;
  color: #fff;
}
.price-card.one-time {
  border: 2px dashed #ffb703;
}
.qr-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.qr-text {
  margin-top: 10px;
  font-size: 1rem;
  color: #555;
}

.qr-box {
  margin-top: 25px;
}

.qr-box img {
  width: 260px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.qr-note {
  margin-top: 20px;
  font-size: 0.95rem;
}
