:root {
  --orange: #F37021;
  --blue: #0070D2;
  --dark-blue: #004AAD;
  --text-color: #222;
  --accent-background: #f5f7fa;
  --font: 'Segoe UI', 'Helvetica Neue', sans-serif;
}

/* Make sure page fits one screen with no scroll */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--font);
  color: var(--text-color);
  overflow: hidden;
}

/* Flex container to align all sections in one screen */
body {
  display: flex;
  flex-direction: column;
}

/* Hero occupies top portion */
.hero {
  background: linear-gradient(90deg, #000000 0%, #0e0c63 50%, #3027e8 100%);
  color: white;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

/* Logo styling */
.logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

/* Keep main content small and centered */
main {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 1rem;
  max-height: 50vh;
}

.section-title {
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.features {
  list-style: none;
  padding-left: 0;
}

.features li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

.features li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
}

footer {
  background-color: var(--accent-background);
  font-size: 0.95rem;
  padding: 1rem;
}

.footer-link {
  color: var(--blue);
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-link:hover {
  text-decoration: underline;
}
