/* -----------------------------------------------------------
   NAVBAR
----------------------------------------------------------- */
.navbar {
  background-color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  position: relative;
  top: 0;
  z-index: 1000;
  overflow: hidden;
  min-height: 80px;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: inline-flex;
  align-items: flex-start;
}

.logo img {
  height: 60px;
}

.logo sup {
  position: absolute;
  top: 0;
  right: -8px;
  font-size: 0.6em;
  color: black;
}

.nav-center {
  display: flex;
  gap: 24px;
}

.nav-link {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  font-size: 16px;
}

.nav-link:hover {
  color: #5ba543;
}

/* -----------------------------------------------------------
   MAIN / FORM
----------------------------------------------------------- */
.container {
  max-width: 960px;
  margin: 1rem auto 2rem auto;
  padding: 2.5rem;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
}

.main-page {
  max-width: 800px;
  width: 100%;
  margin: 1rem auto;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  box-sizing: border-box;
}

.main-page p {
  margin-bottom: 1.6rem;
}

.main-page .page-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.main-page .subtitle {
  text-align: center;
  color: #5ba543;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.main-page .optional-note {
  text-align: center;
  color: #5ba543;
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: -2rem;
  margin-bottom: 2rem;
}

.main-page .features-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.main-page .features-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  font-size: 16px;
}

.main-page .icon-check {
  width: 20px;
  height: 20px;
  stroke: #5ba543;
  margin-right: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}

.page-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.form-section {
  margin-bottom: 2rem;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  overflow: visible !important;
  position: relative;
}

.column {
  flex: 1;
  min-width: 280px;
  overflow: visible !important;
  position: relative;
}

.center-actions {
  text-align: center;
  margin-top: 2.5rem;
}

.center-actions.dual-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.center-actions.dual-buttons button {
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.highlight-green {
  color: #5ba543;
}

/* -----------------------------------------------------------
   Footer
----------------------------------------------------------- */
.footer {
  background-color: white;
  border-top: 1px solid #eee;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.04);
  padding: 1rem 2rem;
  font-size: 14px;
  color: #444;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 0.5rem;
}

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

.footer-link {
  color: #555;
  text-decoration: none;
}

.footer-link:hover {
  color: #5ba543;
  text-decoration: none;
}

.footer-right {
  color: #777;
}
