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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background-color: #f0f6fc;
  color: #1a2b4b;
}

/* HEADER */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #d0e4f5;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

header img.logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
}

header .brand {
  display: flex;
  flex-direction: column;
}

header .brand-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a2b4b;
  letter-spacing: -0.3px;
}

header .brand-sub {
  font-size: 0.78rem;
  color: #5a7fa8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

nav {
  margin-left: auto;
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #2e6da4;
  font-size: 0.9rem;
  font-weight: 500;
}

nav a:hover {
  color: #1a2b4b;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #1b3f6e 0%, #2e86ab 100%);
  color: white;
  text-align: center;
  padding: 5rem 2rem 4rem;
}

.hero img.logo-hero {
  height: 100px;
  width: 100px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* APPS SECTION */
.apps {
  max-width: 860px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.apps h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a2b4b;
  margin-bottom: 2rem;
  text-align: center;
}

.app-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.app-card {
  background: #ffffff;
  border: 1px solid #d0e4f5;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  width: 220px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(46, 134, 171, 0.08);
}

.app-card img {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  margin-bottom: 1rem;
  object-fit: cover;
}

.app-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2b4b;
  margin-bottom: 0.4rem;
}

.app-card p {
  font-size: 0.85rem;
  color: #5a7fa8;
  line-height: 1.5;
}

.app-badge {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #2e6da4;
  background: #e8f2fb;
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
  font-weight: 600;
}

/* FOOTER */
footer {
  background-color: #1a2b4b;
  color: #8aaecf;
  text-align: center;
  padding: 2rem;
  font-size: 0.82rem;
  margin-top: 4rem;
}

footer a {
  color: #8aaecf;
  text-decoration: none;
  margin: 0 0.5rem;
}

footer a:hover {
  color: #ffffff;
}

footer .footer-links {
  margin-bottom: 0.5rem;
}

/* CONTENT PAGES (privacy, support) */
.content-page {
  max-width: 720px;
  margin: 3rem auto;
  padding: 0 2rem 4rem;
}

.content-page h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a2b4b;
  margin-bottom: 0.5rem;
}

.content-page .updated {
  font-size: 0.82rem;
  color: #5a7fa8;
  margin-bottom: 2.5rem;
}

.content-page h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2b4b;
  margin: 2rem 0 0.5rem;
}

.content-page p {
  font-size: 0.92rem;
  color: #2d3e55;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.support-email {
  display: inline-block;
  margin-top: 1rem;
  background: #2e86ab;
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.support-email:hover {
  background: #1b3f6e;
}
