/* =========================
   GLOBAL RESET & BASE
   ========================= */

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  line-height: 1.7;                 /* slightly tighter, still very readable */
  background-color: #f4f6f8;
  color: #1f2933;                   /* darker than #222 → better contrast */
  font-size: 17px;
}

/* =========================
   HEADER
   ========================= */

header {
  background: #1f2933;
  color: #fff;
  padding: 36px 16px;
  text-align: center;
}

header h1 {
  margin-bottom: 12px;
  font-size: 2.2rem;
}

header p {
  font-size: 1.05rem;
  opacity: 0.9;
}

/* =========================
   CTA BUTTONS
   ========================= */

.btn {
  padding: 14px 22px;
  margin: 6px;
  text-decoration: none;
  color: #ffffff;                 /* force pure white */
  border-radius: 6px;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;               /* slightly cleaner than bold */
  border: none;
  cursor: pointer;
}

/* WhatsApp button – darker green for contrast */
.whatsapp {
  background-color: #128c7e;      /* WCAG-safe WhatsApp green */
}

/* Form / Upload button */
.formbtn {
  background-color: #1a73e8;      /* accessible blue */
}

/* Hover + keyboard focus (important) */
.btn:hover,
.btn:focus {
  filter: brightness(0.92);
  outline: none;
}

/* =========================
   SECTION LAYOUT
   ========================= */

section {
  max-width: 900px;
  background: #fff;
  margin: 35px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* =========================
   HEADINGS
   ========================= */

h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 1.6rem;
  border-left: 6px solid #1A73E8;
  padding-left: 14px;
}

/* =========================
   LISTS
   ========================= */

ul {
  padding-left: 22px;
}

ul li {
  margin-bottom: 10px;
}

/* =========================
   NOTES & DISCLAIMERS
   ========================= */

.note {
  background: #f5f7fa;
  padding: 14px 16px;
  border-left: 4px solid #6b7280; /* darker, WCAG-safe */
  font-size: 0.95rem;
  margin-top: 18px;
}


.disclaimer {
  background: #fff4f4;
  padding: 14px 16px;
  border-left: 4px solid #cc0000;
  font-size: 0.95rem;
}

/* =========================
   FORMS (50+ FRIENDLY)
   ========================= */

form input,
form select,
form textarea,
form button {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  font-size: 1rem;
}

form input,
form select,
form textarea {
  border: 1px solid #ccc;
  border-radius: 6px;
}

form textarea {
  min-height: 120px;
}

form button {
  background: #1A73E8;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
}

form button:hover {
  background: #155cc4;
}

/* =========================
   FOOTER
   ========================= */

footer {
  background: #e9ecef;
  padding: 25px;
  text-align: center;
  font-size: 0.9rem;
  color: #333;
}

/* =========================
   LINKS
   ========================= */

a {
  color: #1A73E8;
}

a:hover {
  text-decoration: underline;
}

/* =========================
   MOBILE ADJUSTMENTS
   ========================= */

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  header h1 {
    font-size: 1.75rem;
  }

  section {
    margin: 20px 12px;
    padding: 22px;
  }
}

/* =========================
   MOBILE STICKY BAR (CLS SAFE)
   ========================= */

/* Reserve space EARLY so layout never jumps */
body {
  padding-bottom: 64px;
}

/* Sticky bar base (defined outside media query so browser knows size) */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 99999;
  background: #ffffff;
  border-top: 1px solid #ccc;
  display: flex;
}

/* Sticky bar links */
.mobile-sticky-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: bold;
  text-decoration: none;
}

/* Button colors */
.sticky-call {
  background: #1A73E8;
  color: #ffffff;
}

.sticky-whatsapp {
  background: #128c7e;
  color: #ffffff;
}

/* Disable sticky bar & padding on desktop */
@media (min-width: 769px) {
  .mobile-sticky-bar {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}


