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

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

.container {
  max-width: 600px;
  width: 100%;
}

.logo {
    display: block;
    width: 150px;
    margin: 0 auto 10px auto;
}

h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tagline {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.cta p {
    text-align: center;
    font-size: 14px;
}

.cta button {
  background-color: #268ab1;
  color: #ffffff;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta button:hover {
  background-color: #3da1c9;
}

footer {
  margin-top: 3rem;
  font-size: 14px;
  color: #999999;
}
