* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #eef0f3;
  color: #2c3e50;
}

/* Nav */
nav {
  background: #2c3e50;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

nav .brand {
  color: #ecf0f1;
  font-weight: bold;
  font-size: 16px;
  margin-right: auto;
}

nav a {
  text-decoration: none;
  color: white;
  background: #3498db;
  padding: 7px 18px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

nav a:hover {
  background: #2980b9;
}

nav a.active {
  background: #2980b9;
}

/* Page wrapper */
.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

/* Page title */
.page-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 36px;
  letter-spacing: 0.3px;
}

/* Card */
.card {
  background: white;
  border-radius: 10px;
  padding: 36px 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  margin-bottom: 28px;
}

/* Landing hero */
.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}

.hero-logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 12px;
}

.hero-logo .logo-caption {
  color: #888;
  font-size: 15px;
}

.hero-desc {
  text-align: center;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn {
  display: inline-block;
  background: #3498db;
  color: white;
  padding: 11px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s;
}

.btn:hover {
  background: #2980b9;
}

.btn.secondary {
  background: #2c3e50;
}

.btn.secondary:hover {
  background: #1a252f;
}

/* Static info rows */
.info-row {
  display: flex;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 20px;
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-row:first-child {
  padding-top: 0;
}

.info-label {
  font-weight: 600;
  color: #888;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 140px;
  padding-top: 2px;
}

.info-value {
  color: #2c3e50;
  font-size: 15px;
  line-height: 1.6;
}

.section-heading {
  font-size: 16px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eef0f3;
}
