:root {
  --primary: #02195c;
  --accent: #f4f4f4;
  --text: #111;
  --max-width: 800px;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background-color: #fff;
  color: var(--text);
  line-height: 1.6;
}

header {
  background-color: var(--primary);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero {
  background: url("/assets/header-background.png") no-repeat center center;
  background-size: cover;
  padding: 30px 20px;
  color: white;
  text-align: center;
}

header img {
  height: 100px;
}

main {
  max-width: var(--max-width);
  margin: 2rem auto;
  padding: 0 1rem;
}

h1 {
  color: var(--primary);
  font-size: 2rem;
}

h2 {
  color: var(--primary);
  margin-top: 2rem;
  font-size: 1.3rem;
}

ul {
  padding-left: 1.2rem;
}

section {
  margin-bottom: 2rem;
}

.form-section {
  border-radius: 8px;
}

iframe {
  border: none;
  width: 100%;
  min-height: 500px;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 2rem 1rem;
  background: var(--accent);
  color: #555;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.1rem;
  }
}
