/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #000;
}

header {
  background-color: #000;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  max-height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

nav ul li a {
  color: gold;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #fff;
}

.hero {
  background-color: gold;
  color: #000;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  margin-bottom: 10px;
  font-size: 36px;
}

.hero p {
  margin-bottom: 30px;
  font-size: 18px;
}

.button {
  background-color: #000;
  color: gold;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #333;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 40px 20px;
  background-color: #f8f8f8;
}

.features div {
  max-width: 300px;
  margin: 20px;
  text-align: center;
}

.content {
  padding: 40px 20px;
}

.team {
  margin-top: 40px;
  text-align: center;
}

.team .headshot {
  max-width: 200px;
  border-radius: 100px;
  margin: 20px auto;
  display: block;
}

.service {
  margin-bottom: 40px;
}

.contact-info {
  margin-top: 20px;
  font-size: 18px;
}

footer {
  background-color: #000;
  color: gold;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  position: relative;
  bottom: 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }
}
