body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.brand a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1a2b5c;
  text-decoration: none;
}

.navbar {
  display: flex;
  gap: 1.5rem;
}

.navbar a {
  color: #1a2b5c;
  text-decoration: none;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #1a2b5c;
}

header .tagline {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

nav {
    margin-top: 1rem;
}

nav a {
    margin: 0 1rem;
    color: #1a2b5c;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.hero, .section {
    margin-bottom: 3rem;
}

h2 {
    color: #1a2b5c;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #f4f4f4;
    color: #6c757d;
    font-size: 0.9rem;
}

header {
  background-color: #f4f8fc;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0.5rem;
}

.nav-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-brand a {
  font-size: 2rem;
  font-weight: bold;
  color: #1a2b5c;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

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

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

form {
    max-width: 600px;
    margin-top: 1rem;
}

input, textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

button[type="submit"] {
    background-color: #1a2b5c;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.honeypot {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cta-button {
    background-color: #ffde21;
    color: #004080;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 1rem;
}

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

.form-success {
    color: green;
    font-weight: bold;
    margin-top: 1rem;
}

.hidden-iframe {
  display: none;
  visibility: hidden;
}

.gtm-hidden-iframe {
  display: none;
  visibility: hidden;
  border: 0;
  position: absolute;
  left: -9999px;
}

.install-button {
    display: inline-block; /* visible */
}

.install-hidden-button {
    display: none;
}
