    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
    }
    body {
      line-height: 1.6;
      color: #222;
      background: #fff;
    }
    header {
      background: #fff;
      color: #111;
      border-bottom: 3px solid #222;
      padding: 20px 0;
      text-align: center;
    }
    nav {
      background: #222;
      display: flex;
      justify-content: center;
      padding: 10px;
    }
    nav a {
      color: #fff;
      text-decoration: none;
      margin: 0 15px;
      font-weight: 600;
      transition: color 0.2s;
    }
    nav a:hover {
      color: #888;
    }
.hero {
  height: 60vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  animation: slideshow 16s infinite;
}

@keyframes slideshow {
  0%    { background-image: url('golfcart1.jpg'); }
  33%   { background-image: url('golfcart2.jpg'); }
  66%   { background-image: url('golfcart3.jpg'); }
  100%  { background-image: url('golfcart1.jpg'); }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(34, 34, 34, 0.6);
  z-index: -1;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

.hero-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #fff;
  color: #222;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 6px;
  border: 2px solid #222;
  transition: background 0.3s, color 0.3s;
}

.hero-btn:hover {
  background-color: #222;
  color: #fff;
}

.hero h1 {
  font-size: 2.5em;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}
.section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}
.services, .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.card {
  background: #fff;
  border: 2px solid #222;
  padding: 20px;
  width: 250px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(34,34,34,0.08);
  color: #222;
}
.gallery img {
  width: 100%;
  max-width: 500px;
  height: 350px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  border: 2px solid #222;
  display: block;
  margin: 0 auto;
}
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}
input, textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #222;
  font-size: 16px;
  background: #fff;
  color: #222;
}
button {
  padding: 10px;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border 0.3s;
}
button:hover {
  background: #fff;
  color: #222;
  border: 2px solid #222;
}
footer {
  background: #fff;
  color: #222;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
  border-top: 3px solid #222;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer a i {
  font-size: 2em;
  vertical-align: middle;
  margin-right: 8px;
}
footer a {
  margin: 8px 0;
  display: inline-flex;
  align-items: center;
  color: #222 !important;
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover {
  color: #888 !important;
}
@media (max-width: 600px) {
  footer {
    padding: 20px 5px;
  }
  footer a {
    font-size: 1.1em;
  }
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.logo-img {
  max-width: 120px;
  height: auto;
  margin-bottom: 0;
}
.header-flex h1, .header-flex p {
  text-align: left;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}
.pricing-card {
  background: #fff;
  border: 2px solid #222;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(34,34,34,0.06);
  padding: 28px 24px;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.1em;
}
.pricing-emoji {
  font-size: 2.2em;
  margin-bottom: 10px;
}