body {
  font-family: 'Roboto', sans-serif;
  background-color: #f8fdf6; /* Apply same background as your main site */
  color: #333;
  margin: 0;
  padding: 0;
}


.thankyou-section {
  background-color: #f8fdf6;
  padding: 6rem 2rem;
  text-align: center;
}

.thankyou-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.thankyou-container h1 {
  font-size: 2.5rem;
  color: #3e5d30;
  margin-bottom: 1rem;
}

.thankyou-container p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

.thankyou-container .btn {
  background-color: #3e5d30;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.thankyou-container .btn:hover {
  background-color: #6a4f2d;
}


/* Navigation Container */
.nav {
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 1.2rem 2rem;
  max-width: 100%;
  margin: 2rem auto;
  position: sticky;
  top: 0;
  z-index: 10;
}

/* Flex container */
.nav-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  height: 40px;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #3e5d30;
  border-radius: 2px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #3e5d30;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  text-decoration: underline;
  color: #6a4f2d;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: 1rem 0;
    border-radius: 0 0 12px 12px;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }

  .nav-toggle:checked + .nav-inner .nav-links {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  .nav-inner {
    padding: 0; /* remove the side spacing */
    max-width: 100%; /* override desktop constraint */
  }
}







.footer-section {
  background-color: #3e5d30;
  color: #ffffff;
  padding: 3rem 2rem;
  text-align: center;
}

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

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-logo-frame {
  background-color: #ffffff;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: auto;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  white-space: nowrap;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.9rem;
  color: #d8f3e5;
}


.footer-copy {
  text-align: center;
  font-size: 0.9rem;
  color: inherit;
  margin-top: 1rem;
}

.footer-copy .no-link {
  display: block;         /* Forces it onto a new line */
  margin-top: 0.25rem;    /* Adds a little spacing above */
  pointer-events: none;   /* Prevents link interactions */
  text-decoration: none;
  color: inherit;         /* Uses parent text color */
}

.footer-copy .no-link {
  display: block;
  margin-top: 0.25rem;
  pointer-events: none;
  text-decoration: none;
  color: inherit;
  font-weight: inherit;
}


.no-link {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none;
  user-select: text;
  -webkit-touch-callout: default;
  -webkit-user-select: text;
}