body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background-color: #000;
  color: #fff;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: gold;
}

a {
  text-decoration: none;
  color: gold;
  font-family: 'Lato', sans-serif;
}

.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn.gold {
  background-color: gold;
  color: black;
}

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

.btn.outline {
  border: 2px solid gold;
  color: gold;
}

.btn.outline:hover {
  background-color: gold;
  color: black;
}

.hero {
  background: url('background.jpg') center/cover no-repeat;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.logo {
  width: 450px;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.2rem;
  color: #f5deb3;
  margin: 10px 0 30px;
}

.about {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 20px;
  background-color: #111;
}

.about-text, .about-image {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
}

.services {
  text-align: center;
  padding: 60px 20px;
  background-color: #000;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.service-card {
  background-color: #111;
  padding: 30px;
  border-radius: 10px;
  width: 250px;
}

.service-card span {
  font-size: 2rem;
}

.service-card a {
  display: block;
  margin-top: 10px;
  color: gold;
  font-weight: bold;
}

.testimonial {
  background-color: #111;
  padding: 40px 20px;
  text-align: center;
  font-style: italic;
}

.cta {
  text-align: center;
  background-color: #000;
  padding: 60px 20px;
}

.cta-buttons {
  margin-top: 20px;
}

.cta .btn {
  margin: 10px;
}

.footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  font-size: 0.9rem;
}


@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
    background-position: center;
    background-size: cover;
  }

  .logo {
    width: 80%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
  }

  .logo-container {
    text-align: center;
    padding: 20px;
  }

  .subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .btn.gold {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

