.landing-content {
  padding: 2em;
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  text-align: center;
}

.logo-section {
  text-align: center;
  padding-top: 20px;
}

.site-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-primary, #667eea);
}

.intro-section {
  text-align: center;
}

.intro-text {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 10px;
  text-wrap: balance;
}

.intro-subtext {
  font-size: 14px;
  color: #999;
  line-height: 1.5;
}

.features-section {
  display: flex;
  justify-content: space-between;
}

.feature {
  text-align: center;
  padding: 15px 10px;
  background: #f8f9fa;
  border-radius: 12px;
  flex: 1;
}

.feature-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}

.feature p {
  font-size: 13px;
  color: #666;
  font-weight: 600;
  transition: color 0.3s ease;
}

.btn-login {
  background: var(--color-primary, #2d5a8c);
  color: #fff;
  border: none;
  padding: 0.7em 1.5em;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
}

.btn-register {
  background: var(--color-secondary, #4b5b40);
  color: #fff;
  border: none;
  padding: 0.7em 1.5em;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
}
