/* ===============================
   GENERIC PAGE STYLES
   Matches your existing website
   =============================== */

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: #f7f9fc;
  color: #222;
}

/* ------------------------------
   NAVBAR (Same as homepage)
   ------------------------------ */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: white;
  border-bottom: 1px solid #e6e6e6;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 38px;
  height: 38px;
}

.brand-text {
  font-weight: 700 !important;
  font-size: 20px;
  color: #003b49;
}

.nav-right a {
  margin-left: 25px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
}

.nav-right a.active {
  color: #0f9d58;
}

/* ------------------------------
   PAGE CONTENT WRAPPER
   ------------------------------ */
.page-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-container h1 {
  font-size: 38px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #003b49;
}

.page-container h2 {
  margin-top: 40px;
  font-size: 26px;
  color: #004f59;
  font-weight: 600;
}

.intro {
  font-size: 20px;
  margin-bottom: 25px;
  color: #2d2d2d;
  line-height: 1.6;
}

.page-container p {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  margin: 12px 0;
}

.list {
  margin-top: 10px;
  padding-left: 20px;
}

.list li {
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 17px;
}

.closing {
  margin-top: 35px;
  font-size: 19px;
  font-weight: 600;
  color: #003b49;
}

/* ------------------------------
   FOOTER
   ------------------------------ */
footer {
  margin-top: 60px;
  padding: 20px;
  text-align: center;
  background: #fafafa;
  color: #555;
  font-size: 14px;
  border-top: 1px solid #e3e3e3;
}

/* ------------------------------
   RESPONSIVE DESIGN
   ------------------------------ */
@media (max-width: 768px) {
  .navbar {
    padding: 14px 22px;
  }

  .page-container {
    margin: 40px auto;
  }

  .brand-text {
    font-size: 18px;
  }

  .nav-right a {
    margin-left: 14px;
  }

  .page-container h1 {
    font-size: 32px;
  }

  .page-container h2 {
    font-size: 22px;
  }
}

/* CONTACT FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border-radius: 8px;
  border: 1px solid #d4dce3;
  font-size: 16px;
  background: white;
}

.contact-btn {
  margin-top: 20px;
  background: #0f9d58;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  cursor: pointer;
  font-weight: 600;
}

.contact-btn:hover {
  background: #0c7d45;
}

.footer {
  background: #fafafa;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid #e3e3e3;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  margin: 0 12px;
  color: #444;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  color: #666;
  font-size: 13px;
}

@media (max-width: 480px) {
  .brand-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .footer-links a {
    display: inline-block;
    margin: 6px 10px;
  }
}

@media (max-width: 480px) {
  .page-container {
    padding: 0 14px;
  }
  .seo-section, .how-it-works {
    padding: 0 14px 40px;
  }
}

.calc-explanation h2 {
  font-size: 26px;
  font-weight: 700;
}

.calc-explanation p {
  font-size: 16px;
  line-height: 1.8;
}


