/* style.css */
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #f8f5ef;
  color: #222;
}

header {
  background: linear-gradient(to bottom right, #cce6f4, #f8f5ef);
  padding: 1rem 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  width: 50px;
}
.logo img{
    width: 100%;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.hero {
  padding: 4rem 2rem;
  text-align: center;
  animation: fadeIn 2s ease;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #004466;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
}

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

footer {
  background-color: #004466;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}