* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f8f8f8;
  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;
}


.banner {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px auto;
  max-width: 1200px;
  padding: 0 16px;
}

.banner img {
  width: 48%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

section h2 {
  text-align: center;
  font-size: 28px;
  color: #1c1c1c;
  margin-top: 16px;
}

section p {
  text-align: center;
  max-width: 700px;
  margin: 8px auto 16px;
  color: #444;
  padding: 0 16px;
}

.menu {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #d4af37;
  margin-top: 32px;
}

.services {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1100px;
  margin: 32px auto;
  padding: 0 16px;
}

.services .image {
  flex: 1 1 350px;
  position: relative;
}

.services .image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.services .image a p {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.services .image a p:hover {
  background: #d4af37;
  color: #000;
}

.services .list {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 12px;
  padding: 24px 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.services .list ol {
  list-style-position: inside;
  font-size: 16px;
  line-height: 28px;
  color: #333;
}

.services .list li::marker {
  color: #d4af37;
  font-weight: bold;
}

footer {
  text-align: center;
  background-color: #1c1c1c;
  color: #fff;
  padding: 16px;
  font-size: 14px;
  margin-top: 32px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 16px;
  }

  .banner img {
    width: 100%;
    height: 250px;
  }

  .services {
    flex-direction: column;
  }

  .services .image img {
    height: 300px;
  }

  section h2 {
    font-size: 24px;
  }
}
