body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}
header {
  background: #002d62;
  color: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 22px;
  font-weight: bold;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
nav a:hover {
  text-decoration: underline;
}
.section {
  padding: 40px 20px;
  text-align: center;
}
.section h1, .section h2 {
  margin-bottom: 15px;
}
.section.green {
  background-color: #008000;
  color: white;
}
.section.blue {
  background-color: #002d62;
  color: white;
}
.section.light {
  background-color: #f5f5f5;
}
.section.white {
  background-color: #ffffff;
}
.values {
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 20px;
}
.banner {
  background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f') center center/cover no-repeat;
  color: white;
  padding: 100px 20px;
  text-align: center;
}
.fade-in {
  animation: fadeIn 2s ease-in;
}
.slide-in {
  animation: slideIn 1.5s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideIn {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.contact-form {
  max-width: 600px;
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form input, .contact-form textarea {
  padding: 10px;
  font-size: 16px;
  width: 100%;
}
.contact-form button {
  background: #002d62;
  color: white;
  border: none;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
}
.contact-form button:hover {
  background: #004ea4;
}
footer {
  background-color: #002d62;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}
