body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  text-align: center;
}

header {
  background-color: #e56b2a;
  color: white;
  padding: 2em 1em;
}

main {
  padding: 2em 1em;
}

h1, h2 {
  font-weight: 600;
  color: #333;
}

h1 {
  margin-top: 0;
  font-size: 2.5rem;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 1em;
  line-height: 1.8;
}

header h1 {
  color: white;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  flex-wrap: nowrap;
  text-decoration: none;
}

.logo-container h1 {
  line-height: 1;
  margin: 0;
}

.logo-container img {
  max-width: 60px;
  height: auto;
  padding: 0.5em;
  border-radius: 12px;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  background-color: white;
}

header p {
  margin-bottom: 0;
}

.buttons {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

@media (min-width: 600px) {
  .buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.highlighted-section {
  background-color: #e56b2a;
  color: white;
  padding: 2em 1em;
  border-radius: 8px;
  margin-top: 3em;
}

.highlighted-section h2 {
  margin-top: 0;
  color: white;
}

.highlighted-section img {
  max-width: 100%;
  height: auto;
  margin-top: 1em;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border-radius: 8px;
}

.policy-link {
  margin-top: 2em;
}

.policy-link a {
  color: #e56b2a;
  text-decoration: underline;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
}
