* {
  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: 1000px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  font-size: 29px;
  color: #1c1c1c;
  margin-bottom: 13px;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 4px;
}

h3 {
  text-align: center;
  color: #d4af37;
  margin-top: 32px;
}

p {
  text-align: center;
  max-width: 700px;
  margin: 8px auto 16px;
  color: #444;
}

a {
  color: #d4af37;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 24px auto;
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

input[type="text"],
input[type="tel"],
input[type="date"],
input[type="time"],
select {
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
}

input[type="submit"] {
  background-color: #1c1c1c;
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #d4af37;
  color: #000;
}

section a {
  display: inline-block;
  text-align: center;
  margin: 16px;
  color: #1c1c1c;
  text-decoration: none;
}

section a img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

section a:hover {
  color: #d4af37;
}

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;
  }

  form {
    width: 90%;
    padding: 24px;
  }

  section a img {
    width: 50px;
    height: 50px;
  }
}
