/* =========================
   Global Reset / Base
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #eaf2f8; /* light blue that matches logo */
  color: #0b2239;
}

/* =========================
   Header / Logo
========================= */
.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #dbe6ef;
  padding: 20px 0;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 🔥 LOGO SIZE CONTROL 🔥 */
.site-logo {
  max-width: 900px;   /* ⬅️ increased another ~200% */
  width: 95%;
  height: auto;
  display: block;
}

/* =========================
   Page Layout
========================= */
.page {
  padding: 60px 20px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px 60px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* =========================
   Headings / Text
========================= */
h1 {
  margin-top: 0;
  font-size: 36px;
}

.muted {
  color: #5f6f82;
  margin-bottom: 30px;
}

/* =========================
   App Buttons
========================= */
.button-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.app-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #0b5f7c, #0a7fa4);
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.app-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

/* =========================
   Footer
========================= */
.site-footer {
  margin-top: 50px;
  text-align: center;
  font-size: 13px;
  color: #6c7a89;
}
