/* BASE PAGE STYLING */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #ffffff;
  color: #000;
}

/* UNIVERSAL LINK STYLE */
a {
  text-decoration: underline;
  color: inherit;
}
a:hover {
  opacity: 0.7;
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 2px 20px;
}
.hero h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.sub {
  font-size: 1.05rem;
  color: #444;
  margin-top: 0;
}

/* MAIN CTA BUTTON */
.cta-btn,
.call-btn {
  display: inline-block;
  padding: 9px 20px;
  background: #28A745;
  color: #fff !important;
  border-radius: 6px;
  text-decoration: none !important;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 12px;
  margin-bottom: 4px;
}

/* TRUST SECTION */
.trust {
  background: #f5f5f5;
  padding: 12px 0;
  margin-top: 25px;
}
.trust-grid {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}
.trust-item {
  font-size: 0.88rem;
  font-weight: bold;
}

/* LANDING PAGE CONTENT BLOCK */
.content {
  max-width: 680px;
  margin: 0 auto;
  padding: 18px 20px;
  line-height: 1.5;
}
.content p {
  margin-top: 0;
  margin-bottom: 10px;
}
.content ul {
  margin-top: 8px;
  margin-bottom: 12px;
}

/* FOOTER (GLOBAL) */
.site-footer {
  text-align: center;
  margin: 20px 0;
  font-size: 0.9rem;
  padding-bottom: 70px; /* keep above sticky bar */
  color: #555;
}
.site-footer a {
  color: #555;
}

/* STICKY FOOTER CALL BUTTON */
.sticky-call {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  z-index: 9999;
  padding-bottom: 8px;
}

.sticky-call a {
  background: #28A745;
  color: white !important;
  padding: 10px 0;
  width: 300px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 1.05rem;
}

/* MOBILE FIXES */
@media(max-width: 480px) {
  .cta-btn,
  .call-btn {
    width: auto !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;

    padding: 8px 20px !important;
    font-size: 1rem !important;
    border-radius: 6px !important;

    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 8px !important;
    margin-bottom: 4px !important;
  }

  .content .call-btn {
    text-align: center !important;
  }

  .hero {
    padding: 20px 12px !important;
  }
  .hero h1 {
    font-size: 1.6rem !important;
    line-height: 1.2 !important;
    margin-bottom: 6px !important;
  }
  .hero .sub {
    margin-bottom: 10px !important;
  }

  .trust {
    padding: 8px 0 !important;
    margin-top: 10px !important;
  }
  .trust-grid {
    flex-direction: column !important;
    gap: 5px !important;
  }

  .sticky-call a {
    width: 300px !important;
    padding: 10px 0 !important;
    font-size: 1rem !important;
    border-radius: 10px 10px 0 0 !important;

    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* LEGAL / ABOUT / CONTACT PAGE TYPOGRAPHY */

.page-container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  line-height: 1.6;
}

.page-container h1,
.page-container h2,
.page-container h3 {
  font-weight: bold;
  margin-top: 1.8rem;
  margin-bottom: 1rem;
  color: #000;
}

.page-container p {
  margin-bottom: 1rem;
}

.page-container ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.page-container li {
  margin-bottom: 0.5rem;
}

.page-container a {
  color: #0072E5;
  text-decoration: underline;
}

/* BLOG SECTION */
.blog-section {
  text-align: center;
  margin-top: 0;
  padding-top: 0px; /* tiny breathing room only */
}

/* Divider */
.blog-divider {
  width: 70px;
  height: 3px;
  background: #28A745;
  margin: 10px auto 16px auto;
  border-radius: 3px;
}

/* Header */
.blog-header {
  font-size: 1.6rem;
  margin-bottom: 22px;
  font-weight: 700;
}

/* Blog list wrapper */
.clean-blog-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 480px;
}

/* Blog item row */
.blog-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Icon */
.blog-icon {
  flex-shrink: 0;
  margin-right: 8px;
  font-size: 1rem;
  opacity: 0.9;
}

/* Title */
.blog-title {
  flex-grow: 1;
  text-align: left;
  margin-right: 10px;
  text-decoration: underline;
}

/* Date */
.blog-date {
  flex-shrink: 0;
  color: #999;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Mobile tweaks */
@media(max-width: 480px) {
  .blog-item-row {
    padding: 10px 0;
  }
  .blog-title {
    font-size: 0.95rem;
  }
  .blog-date {
    font-size: 0.85rem;
  }
}

/* GLOBAL HEADER */
.site-header {
  width: 100%;
  padding: 15px 25px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(0,0,0,0.30); /* subtle transparency on dark bg */
  backdrop-filter: blur(6px);
}

.site-title {
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: bold;
}

.site-title:hover {
  opacity: 0.7;
}

/* Add safe spacing so content is not hidden behind fixed header */
body {
  padding-top: 60px;
}
