/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 18px;
  line-height: 1.75;
  background: #f9f9f9;
  color: #222;
  padding: 0;
  scroll-behavior: smooth !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

h1 {
  font-weight: 600;
  font-size: 3.5rem;
  margin-bottom: 2.0rem;
  line-height: 1.2;
}

h2 {
  font-weight: 600;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-weight: 600;
  font-size: 1.5rem;
  /* optional addition */
  margin-bottom: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.container a:not(.button):not(.pricing-card) {
  color: #8b0000;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, border-bottom-width 0.3s;
  padding-bottom: 2px;
}

.container a:not(.button):not(.pricing-card):hover {
  border-bottom: 1px solid #8b0000;
}

.feature-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
  margin-bottom: 0rem;
}

.feature-block.left-image .feature-text {
  order: 2;
}

.feature-block.left-image .feature-image {
  order: 1;
}

.feature-block.right-image .feature-text {
  order: 1;
}

.feature-block.right-image .feature-image {
  order: 2;
}

.feature-text {
  flex: 1 1 48%;
  min-width: 380px;
}

.feature-image {
  flex: 1 1 40%;
  min-width: 250px;
  text-align: center;
}

.feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
}

.feature-wrapper {
  width: 100%;
}

.green-bg {
  background-color: #f5fcf7;
}

.green-bg .container {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.white-bg {
  background-color: #fff;
}

.white-bg .container {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

ul.feature-list {
  padding-left: 1.2rem;
  list-style: disc;
  margin-bottom: 1rem;
}

ul.feature-list li {
  margin-bottom: 0.75rem;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.25;
}

/* Hero Section */
.hero {
  background: #fff;
  padding: 2rem 2rem 2rem 2rem;
  text-align: center;
}

.hero-intro {
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #ce3d3d;
  text-align: left;
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.hero-content-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 5rem;
}

.hero-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.hero-image {
  flex: 1 1 40%;
  min-width: 300px;
  text-align: center;
  margin-top: 2rem;
  /* adjust this value to control how far down it starts */
}

.hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.hero .hero-text {
  flex: 1 1 50%;
  min-width: 300px;
  text-align: left;
}

.hero .hero-image {
  flex: 1 1 39%;
  min-width: 300px;
  text-align: center;
  margin-top: 3.5rem;
  /* adjust this value to control how far down it starts */
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

/* One column section */
.one-column-section {
  background: #fff;
  padding: 2rem 2rem;
  text-align: left;
  /* This centers inline content like text and images */
}

.one-column-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.one-column-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px 8px 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: inline-block;
  /* Ensures images respect text-align:center */
}

/* Three column */
.three-column-section {
  background: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.three-column-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  justify-content: center;
}

.column-item {
  flex: 1 1 28%;
  min-width: 220px;
  padding: 2rem;
  border-radius: 8px;
  background: #f5fcf7;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.column-item img.icon {
  width: 96px;
  height: 96px;
}

.column-item h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.column-item p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #555;
}

/* Split Sections */
.split-section {
  background: #f5fcf7;
}

.split-section .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
  padding: 2rem 2rem;
  /* background-color: #f5fcf7; */
}

.split-text {
  flex: 1 1 50%;
  min-width: 320px;
}

.button,
input.button {
  display: inline-block;
  min-width: 180px;
  /* Ensures all buttons are the same minimum width */
  padding: 0.75rem 1.5rem;
  border-radius: 9px;
  background-color: #2F8A1A;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.25s ease, transform 0.2s ease;
  margin-right: 8px;
  /* Small gap between buttons */
  border-bottom: none;
}

.button:hover,
input.button:hover {
  background-color: #21A008;
  /*transform: translateY(-0.3px);*/
}

.button:active,
input.button:active {
  transform: translateY(0);
}

/* Optional: remove right margin on last button if side by side */
.button:last-child {
  margin-right: 0;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  /* This sets equal spacing between buttons without needing individual margins */
  justify-content: flex-start;
  /* Or center, depending on layout */
  margin-top: 0rem;
  /* Optional: space above the buttons */
}

.pricing-section {
  background: #f5fcf7;
  padding: 1rem 2rem;
  text-align: left;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-left: 2em;
}

.pricing-card {
  flex: 1 1 200px;
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  text-decoration: none;
}

.pricing-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #222;
}

.pricing-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2F8A1A;
}

.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.pricing-subheading {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 2rem 0 1.5rem 0;
  color: #333;
  border-bottom: 1px solid #b8f7bdfd;
}

.section-subtitle {
  max-width: 100%;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #222;
  text-align: left;
}

.section-divider {
   border: none;
   border-top: 2px solid #ccc;  /* adjust colour to match your theme */
   margin: 0.75rem 0 1.5rem 0;  /* spacing above/below */
   width: 100%;
}

/* About */

.section-title {
  font-size: 2.50rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  color: #222;
  text-align: left;
}

.timeline {
  margin-top: 3rem;
}

.timeline-entry {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 4rem;
  gap: 2rem;
}

.timeline-date {
  font-size: 7rem;
  font-weight: 700;
  color: rgba(67, 201, 63, 0.25);
  /* */
  line-height: 1;
  flex: 0 0 120px;
  text-align: left;
}

.timeline-content {
  flex: 1;
  border-left: 2px solid #ccc;
  padding-left: 3rem;
  position: relative;
  z-index: 1;
}

.timeline-entry.reverse {
  flex-direction: row-reverse;
  align-items: center;
}

.timeline-entry.reverse .timeline-date {
  text-align: right;
}

.timeline-entry.reverse .timeline-content {
  border-left: none;
  border-right: 2px solid #ccc;
  padding-left: 6rem;
  padding-right: 2rem;
}

/* FAQ */
.faq-wrapper {
  margin: 25px 0;
}

.faqs dt {
  color: #444444;
  font-size: 1rem;
  font-weight: bold;
  background: #f5fcf7;
  position: relative;
  padding: 6px 14px;
  margin: 15px 0;
  border-radius: 4px;
}

.faqs dt::before {
  content: "+";
  display: inline-block;
  width: 1.5em;
  margin-right: 0.5em;
  font-weight: bold;
  color: #21A008;
  /* or your accent color */
  transition: transform 0.3s ease;
}

.faqs dt.expanded::before {
  content: "–";
}

.faqs dd {
  display: none;
}

.faqs dd {
  padding: 0 0 10px 14px;
  font-size: 1rem;
}

.faqs .hover {
  cursor: pointer;
}

.faq-toc {
  margin-bottom: 2rem;
}

.faq-toc h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.faq-links a {
  color: #8b0000;
  text-decoration: none;
}

.faq-links a:hover {
  text-decoration: underline;
}

/* Footer */
.footer-top {
  background-color: #373737;
  width: 100%;
  padding: 2rem 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-address {
  flex: 1 1 250px;
  font-size: 16px;
  color: #cccccc;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
}

.footer-address a {
  color: #cccccc;
  text-decoration: none;
}

.footer-address a:hover {
  color: #d82222;
}

.footer-links-wrapper {
  display: flex;
  flex: 2 1 600px;
  /* Right column: grows more, prefers 600px */
  flex-direction: column;
  align-items: flex-start;
}

.footer-links {
  font-size: 12px;
  text-align: left;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

.footer-links a:hover {
  color: #d82222;
}

.footer-social {
  border-top: 1px solid #666;
  padding-top: 1.8rem;
  margin-top: 0.8rem;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /* Ensures text and icons align horizontally */
}

.footer-social ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social img {
  border: 0;
  height: 30px;
  width: auto;
}

/* Bottom Copyright Section */
.footer-bottom {
  background-color: #000;
  width: 100%;
  padding: 1rem 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0 auto;
  font-size: 15px;
  color: #cccccc;
  max-width: none;
  font-family: 'Montserrat', sans-serif;
}

.footer-bottom a {
  color: #a6f7bd;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, border-bottom-width 0.3s;
  padding-bottom: 2px;
}

.footer-bottom a:hover {
  border-bottom: 1px solid #a6f7bd;
}

.changelog .version-block {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}

/* .changelog .version-block.alt { background-color: #f4fbf4; } */
.changelog .version-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 .25rem;
  padding-bottom: 0.5rem;
}

.changelog ul {
  margin: 0 0 0 2.75rem;
  padding: 0;
}

.changelog .version-date {
  font-weight: normal;
}

.top-cards {
  display: flex;
  gap: 4rem;
  align-items: stretch;
  margin-top: 1rem;
}

.top-cards .card {
  flex: 1 1 0;
  background: #f5fcf7;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
}

/* Phones, tablets */
@media (max-width: 768px) {

  .hero .container,
  .split-section .container,
  .three-column-grid {
    flex-direction: column;
  }

  .hero-text,
  .hero-image,
  .split-text,
  .split-image,
  .column-item {
    flex: 1 1 100%;
    text-align: left;
  }

  .hero .hero-image {
    margin-top: 1rem;
    /* adjust this value to control how far down it starts */
  }

  .hero {
    text-align: left;
  }

  .hero-intro {
    font-size: 0.9rem;     /* was 1.1rem */
    letter-spacing: 0.06em; /* tighten a bit */
    margin-bottom: 0.3rem;  /* give it a little more breathing room */
  }

  h1 {
    font-size: 2.25rem;   /* was 3.5rem */
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 1.5rem;    /* was 2.25rem */
    line-height: 1.4;
    margin-bottom: 1.2rem;
  }

  h3 {
    font-size: 1.25rem;   /* was 1.5rem */
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .section-title {
    font-size: 1.8rem;   /* down from 2.5rem */
    margin-bottom: 1.75rem;
  }

  /* Footer stacking */
  .footer-links ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-links ul li {
    margin-bottom: 0.3rem;
  }

  .footer-social ul {
    justify-content: flex-start;
  }

  .footer-social {
    margin-top: 0.5rem;
  }

  .footer-address {
    margin-bottom: 0rem;
    width: 100%;
  }

  .footer-content {
    gap: 1rem;
  }

  .footer-top,
  .footer-bottom {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-social {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .timeline-entry,
  .timeline-entry.reverse {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0rem;
  }

  .timeline-entry.reverse .timeline-content {
    border-right: none !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .timeline-date {
    flex: 0 0 auto;
    font-size: 2.5rem;
    text-align: left !important;
    margin-bottom: -0.5rem;
  }

  .timeline-content {
    border-left: none;
    border-right: none;
    /* ✨ Add this */
    padding-left: 0rem;
    padding-right: 0rem;
    /* ✨ Add this too */
    padding-top: 0.5rem;
  }

  .feature-text,
  .feature-image {
    order: unset !important;
  }

  .feature-block {
    flex-direction: column;
    text-align: left;
    gap: 1rem
  }

  .feature-block.left-image .feature-text,
  .feature-block.right-image .feature-text,
  .feature-block.left-image .feature-image,
  .feature-block.right-image .feature-image {
    order: unset;
  }

  .feature-image {
    text-align: center;
    margin-bottom: 0.0rem;
  }

  .feature-text {
    flex: 1 1 100%;
  }

  .top-cards {
    flex-direction: column;
  }

}