body {
  margin:0;
  font-family: Arial, sans-serif;
  color:#222;
}

header {
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding:15px 30px;
  background:#111;
  color:#fff;
  position: sticky;
  top:0;
}

.logo {
  font-weight:bold;
  font-size:18px;
}

nav a {
  margin:0 10px;
  color:#fff;
  text-decoration:none;
}

.mobile-toggle {
  display:none;
  font-size:24px;
  cursor:pointer;
}

.hero {
  height:70vh;
  background:#dedede;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
}

.hero h1 {
  margin:0;
  font-size:42px;
  font-weight:700;
}

.about, .team, .contact {
  padding:60px 30px;
  text-align:center;
}

.team-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap:20px;
  margin-top:30px;
}

.team-card {
  border:1px solid #ccc;
  padding:20px;
  border-radius:6px;
  background:#fff;
  color: #111;
}
.text-gold {
  color: #d4af37;
}

.btn-gold {
  background-color: #d4af37;
  color: #000;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease-in-out;
}

.btn-gold:hover {
  background-color: #b9972f;
  color: #fff;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 35%;
  margin-bottom: 15px;
  border-radius: 4px;
}

footer {
  background:#111;
  color:#fff;
  padding:15px;
  text-align:center;
}

@media(max-width:768px) {
  nav {
    display:none;
    flex-direction:column;
    background:#111;
    padding:10px;
  }
  .mobile-toggle {
    display:block;
  }
}

.border-gold {
  border: 1px solid #d4af37;
}

.border-bottom-gold {
  border-bottom: 1px solid #d4af37;
}

.border-top-gold {
  border-top: 1px solid #d4af37;
}

.btn-gold {
  background-color: #d4af37;
  color: #000;
  font-weight: 600;
  border-radius: 4px;
}

.btn-gold:hover {
  background-color: #b9972f;
  color: #fff;
}
