body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  line-height: 1.6;
}

nav {
  background-color: #061b4e;
  text-align: center;
  padding: 12px;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

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

header {
  text-align: center;
  padding: 60px 20px;
}

.logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 18px;
  background-color: #00b050;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}

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

section {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

.card-img {
  max-width: 100%;
  margin-top: 20px;
  border-radius: 8px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #112f91;
  padding: 20px;
  border-radius: 8px;
}

form input,
form textarea {
  padding: 10px;
  border: none;
  border-radius: 4px;
}

form button {
  background-color: #00b050;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: #009440;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #061b4e;
  margin-top: 40px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in.delay {
  animation-delay: 0.4s;
}

.fade-in.delay-2 {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}