.intro-container {
  display: flex;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
}

.privacy-checkbox {
  margin-top: 15px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.privacy-checkbox input {
  margin-right: 8px;
  transform: scale(1.2);
  cursor: pointer;
  color: #D9a128;
}

.privacy-link {
  color: #D9a128;
  text-decoration: underline;
  cursor: pointer;
}

.privacy-link:hover {
  text-decoration: none;
}


.intro-logo-section {
  margin-bottom: 1.5rem;
}

.intro-logo {
  width: 7rem;
  margin-bottom: 0.75rem;
}

.intro-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
}

.intro-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.intro-nav-item {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.intro-nav-item:hover {
  background-color: #fffef4;
}

.intro-nav-item.active {
  background-color: #d9c795;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.intro-nav-item.selected {
  background-color: #fffef4;
  font-weight: 600;
  border: 1px solid #d3c5a5;
  color: #333;
}

.intro-progress {
  background-color: #fff;
  border-radius: 4px;
  padding: 0.2rem 0.4rem;
  font-size: 0.8rem;
}

/* Main */
.intro-main {
  flex: 1;
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.intro-card {
  background: white;
  border: 1px solid #f0f0f0;
  border-radius: 1rem;
  padding: 2.5rem;
  max-width: 768px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.intro-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.intro-title {
  font-size: 1.2rem;
  color: #1f3c2d;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.intro-location {
  color: #666;
  font-size: 0.9rem;
}

.intro-la-logo {
  height: 4rem;
}

.intro-content {
  margin-top: 2rem;
}

.intro-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.intro-content h3 {
  font-weight: 600;
  color: #333;
  margin-top: 1.25rem;
}

.intro-content ul,
.intro-content ol {
  margin-left: 1.25rem;
  color: #555;
}

.intro-footer {
  padding-top: 1.5rem;
  text-align: center;
}

.intro-btn {
  background-color: #3b7a57;
  color: white;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.intro-btn:hover {
  background-color: #2f6244;
}

.intro-thanks {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.75rem;
}

.intro-privacy {
  border-top: 1px solid #ddd;
  margin-top: 1rem;
  padding-top: 0.5rem;
  font-size: 0.75rem;
  color: #666;
}

.intro-privacy a {
  text-decoration: underline;
  color: #3b7a57;
}

.intro-privacy .privacy-checkbox input:checked {
      background-color: #D9a128;
      border-color: #D9a128;
    }
