* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1c1c1c;
  padding: 16px 0;
}

header img {
  width: 140px;
  height: auto;
  border-radius: 8px;
}

nav {
  display: flex;
  justify-content: center;
  background-color: #333;
  padding: 12px 0;
  gap: 32px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

nav a:hover {
  color: #d4af37;
}

section {
  padding: 32px 16px;
  max-width: 1100px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  font-size: 29px;
  color: #1c1c1c;
  margin-bottom: 16px;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 4px;
}

p {
  text-align: center;
  max-width: 800px;
  margin: 8px auto 16px;
  color: #444;
}

.vision {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.vision > div {
  flex: 1 1 350px;
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
}

.vision h3 {
  color: #d4af37;
  font-size: 19px;
  margin-bottom: 8px;
}

.vision p {
  text-align: left;
  color: #333;
  margin-bottom: 16px;
}

.objectives ol {
  margin-left: 16px;
  color: #333;
  line-height: 29px;
}

.objectives li::marker {
  color: #d4af37;
  font-weight: bold;
}

ul {
  list-style: none;
  max-width: 700px;
  margin: 24px auto;
  background: #fff;
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

ul li:last-child {
  border-bottom: none;
}

ul li::before {
  content: "💈 ";
  color: #d4af37;
}

section img {
  width: 32%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin: 0.5%;
}

@media (max-width: 768px) {
  section img {
    width: 100%;
    height: 220px;
    margin-bottom: 16px;
  }
}

footer {
  text-align: center;
  background-color: #1c1c1c;
  color: #fff;
  padding: 16px;
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 32px;
}
