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

:root {
  --bg: #f5f7fb;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --accent: #2563eb;
  --radius: 12px;
  --shadow: 0 8px 25px rgba(0,0,0,0.06);
  --font: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Header */
.site-header {
  background: var(--accent);
  color: white;
  padding: 16px 32px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.5px;
}

/* Main container */
.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}

/* Policy card */
.policy-card {
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.policy-card h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

.policy-card .effective-date {
  color: var(--muted);
  margin-bottom: 20px;
}

.policy-card p.intro {
  margin-bottom: 20px;
}

/* Section headings */
.policy-card h2 {
  margin: 20px 0 10px;
  font-size: 20px;
  color: var(--accent);
}

/* Lists */
.policy-card ul {
  margin: 10px 0 20px 20px;
}

.policy-card li {
  margin-bottom: 8px;
}

/* Contact button */
.contact-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease-in-out;
}

.contact-btn:hover {
  background: #1d4ed8;
}

/* Footer */
.site-footer {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin: 20px 0;
}


.site-header {
  background: var(--accent);
  color: white;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.logo-img {
  height: 40px; /* Adjust size */
  width: auto;
  border-radius: 10px;
}

.app-name {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.5px;
}
