:root {
  --bg: #F5F4EF;
  --text: #000000;
  --accent: #FF4d00;
  --secondary: #465C88;

  --font-header: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 3rem 1.5rem;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.3px;
  
}

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

h1 {
  font-family: var(--font-header);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--accent);
}

p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.tagline {
  font-size: 1rem;
  font-style: italic;
  color: var(--secondary);
  opacity: 0.8;
  margin-bottom: 2.5rem;
}

.bottom-tagline {
    position: fixed;
    bottom: 20px; /* Adjust this value to control the distance from the bottom */
    left: 50%;
    transform: translateX(-50%);
    width: 100%; /* Ensures it spans the full width for centering */
    text-align: center;
    padding: 0 1.5rem; /* Adds some padding on the sides for smaller screens */
    font-size: 0.9rem; /* You can adjust this for better readability */
    opacity: 0.7;
    color: var(--secondary); /* Matches the tagline style */
}


/* Call to Action Button */
.cta {
  display: inline-block;
  font-family: var(--font-header);
  background-color: var(--text);
  color: var(--bg);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta:hover {
  background-color: var(--accent);
  color: var(--text);
}


/* Responsive tweaks */
@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
  }

  p {
    font-size: 1rem;
  }

  .tagline {
    font-size: 0.9rem;
  }

  .cta {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}


