header {
  background-color: #1a202c;
  padding: 1rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: #e53e3e;
}


.cta-button {
  background-color: #e53e3e;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: 600;
}

.cta-button-blue {
  background-color: #3e73e5;
} 
.cta-button:hover {
  background-color: #c53030;
}

footer {
  background-color: #1a202c;
  color: #fff;
  padding: 1rem;
  text-align: center;
  margin-top: 2rem;
}

.footer-content a {
  color: #e53e3e;
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}

.chakra-text.css-2cnvia {
  display: none;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}