﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: linear-gradient(180deg, #2C4EFE 0%, #79D5F9 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px;
}
.main .logo {
  width: 80vw;
  max-width: 450px;
  height: auto;
}
.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media (min-width: 480px) {
  .badge {
    flex-direction: row;
    gap: 16px !important;
  }
}
.badge img {
  height: clamp(32px, 12vw, 56px);
  width: auto;
}


/* Page Styles */


body.terms {
  background: #e1e1e1;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #333;
  padding: 20px;
  line-height: 1.6;
}
.container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 8px;
}
h1 {
  color: #192565;
  font-size: 2em;
  margin-bottom: 10px;
}
h2 {
  color: #192565;
  font-size: 1.5em;
  margin-top: 35px;
  margin-bottom: 15px;
}
.meta {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
p {
  margin-bottom: 15px;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 15px;
}
li {
  margin-bottom: 8px;
}
a {
  color: #192565;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
strong {
  color: #222;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.95em;
}
td, th {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}
th {
  background: #f5f5f5;
  font-weight: 600;
  color: #192565;
}
.section-number {
  color: #192565;
  font-weight: 600;
}
footer {
  /* background: rgba(255, 255, 255, 1); */
  padding: 24px 20px;
  text-align: center;
  font-size: 0.85em;
}
footer a {
  color: #192565;
  text-decoration: underline;
  margin: 0 8px;
}
footer a:hover {
  text-decoration: underline;
}
footer p {
  color: #192565;
  margin: 8px 0;
}