
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #222;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
}

.logo-area {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  max-height: 64px;
}

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

.tagline {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.dropdown-toggle {
  cursor: pointer;
  color: #005a87;
  font-weight: 600;
  margin-top: 2rem;
}

.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.dropdown-content.open {
  max-height: 500px;
}

.steps {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.steps li {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.steps li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: #0077aa;
  font-size: 1.1rem;
}

footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #666;
}

.logo {
  max-height: 72px;
  margin-bottom: 1rem;
}

.logo-area h1 {
  color: #005a87;
}

.dropdown-toggle {
  color: #005a87;
}

.steps li::before {
  color: #005a87;
}

footer {
  color: #444;
  font-size: 0.9rem;
  padding-top: 2rem;
}

@media (max-width: 600px) {
  .container {
    padding: 1rem;
  }

  .logo {
    max-width: 100%;
    height: auto;
  }

  .dropdown-toggle {
    font-size: 1.1rem;
  }

  .content {
    font-size: 1rem;
  }
}
