body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
}
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #111;
}
.logo {
  width: 120px;
  height: auto;
  margin-bottom: 10px;
}
nav a {
  color: #ffd700;
  margin: 0 10px;
  text-decoration: none;
}
nav a:hover {
  text-decoration: underline;
}
.hero {
  background: url('images/hero.jpg') center/cover no-repeat;
  text-align: center;
  padding: 100px 20px;
}
.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.cta-button {
  background-color: #ffd700;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}
.cta-button:hover {
  background-color: #e6c200;
}
.section {
  padding: 60px 20px;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.service-card {
  background-color: #111;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  margin-top: 20px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 8px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.video-grid video {
  width: 100%;
  border-radius: 8px;
}
.contact form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
}
.contact input,
.contact textarea {
  margin-bottom: 10px;
  padding: 10px;
  border: none;
  border-radius: 5px;
}
.contact button {
  background-color: #ffd700;
  color: #000;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
}