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

/* Base */
body {
  background-color: #000;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Layout */
.container {
  width: min(900px, 92vw);
  padding: 48px 24px;
  text-align: center;
}

/* Logo */
.logo {
  width: min(360px, 70vw);
  height: auto;
  display: block;
  margin: 0 auto 22px auto;
}

/* Headline */
.headline {
  font-size: clamp(1.05rem, 2.1vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.35;
  color: #e9e9e9;
}
.two-col-info {
  margin-top: 24px;
}

.logo {
  margin-bottom: 8px;
}

.headline {
  margin-top: -32px;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.info-card ul {
  padding-left: 18px;
  margin: 0;
}

.info-card li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.info-card .mt {
  margin-top: 22px;
}

/* Mobile */
@media (max-width: 768px) {
  .two-col-grid {
    grid-template-columns: 1fr;
  }
}
.mini-two-col {
  margin-top: 28px;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.mini-header {
  font-weight: 700;
  margin-bottom: 10px;
}

.mini-body div {
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .mini-grid {
    grid-template-columns: 1fr;
  }
}
/* Smaller + grey list items in the two-column info section */
.two-col-info .info-card ul li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65); /* use this if your background is dark */
  line-height: 1.55;
}
.mini-body {
  color: rgba(255, 255, 255, 0.65);
}

