body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fcf8f4;
  color: #2f2f2f;
}

header {
  background-color: #3e3e3e;
  color: white;
  text-align: center;
  padding: 30px 15px;
}
header h1 {
  margin: 0;
  font-size: 28px;
}
.blink {
  animation: blink 1s infinite;
  color: #f39c12;
}
@keyframes blink {
  50% { opacity: 0.5; }
}

nav {
  background: #fef4e3;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 15px;
  gap: 15px;
}
nav a {
  background: #fff;
  color: #e67e22;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-weight: bold;
  transition: 0.3s;
}
nav a:hover {
  background: #f6ddcc;
}

.hero img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  display: block;
  animation: fadeIn 1.5s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
}
.container h2 {
  text-align: center;
  margin-bottom: 20px;
}
.container ul {
  padding-left: 20px;
}
.container li {
  margin-bottom: 8px;
}

.contact {
  background: #fdf6ee;
  padding: 40px 20px;
  text-align: center;
}
.contact h2 {
  margin-bottom: 20px;
}
.contact p {
  margin: 10px 0;
  font-size: 16px;
}

footer {
  background: #2e2e2e;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}