
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
              url('https://images.unsplash.com/photo-1510915361894-db8b60106cb1?q=80&w=1600&auto=format&fit=crop') center/cover;
  color: white;
  min-height: 100vh;
  padding: 20px 8%;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
}

.hero-content {
  margin-top: 5%;
  max-width: 700px;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  background: #c88b3a;
  color: white;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
}

.section {
  padding: 80px 2%;
}

.section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: #f4f4f4;
  padding: 24px;
  border-radius: 10px;
}

.gallery-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.dark {
  background: #222;
  color: white;
  text-align: center;
}

.contact form {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact input,
.contact textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact textarea {
  min-height: 140px;
}

.contact button {
  background: #222;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 15px;
  }

  .hero-content h2 {
    font-size: 2rem;
  }
}
.form-box {
  width: 600px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  text-align: left;
  margin-bottom: 6px;
  font-weight: bold;
  color: black;
}

.form-group input {
  width: 100%;
  height: 45px;
  padding: 10px;
  border: 1px solid black;
  border-radius: 4px;
  box-sizing: border-box;
}

.form-group textarea {
  width: 100%;
  height: 180px;
  padding: 10px;
  border: 1px solid black;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  height: 45px;
  border: none;
  background-color: black;
  color: white;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}
.rating {
  margin-bottom: 10px;
  font-weight: bold;
}

.score {
  color: #333;
  margin-right: 6px;
}

.stars {
  color: #FFD700;
  font-size: 1.2rem;
}
.price-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.price-list table {
  margin: 0 auto;
}
@media (max-width: 768px) {

  .price-list {
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
}
#prices {
  text-align: center;
}
.price-list {
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
}
}.table-container {
  width: 100%;
  overflow-x: auto;
}
.review-btn {
  display: block;
  width: fit-content;
  margin: 70px auto -50px auto;
  padding: 15px 30px;

  font-size: 24px;
  font-weight: bold;

  text-decoration: none;

  background-color: #fbbc04;
  color: black;

  border-radius: 8px;
}
.faq-item {
  max-width: 900px;
  margin: 0 auto 25px auto;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 10px;
}

.faq-item h3 {
  margin-bottom: 10px;
  color: #c88b3a;
}

.faq-item p {
  margin: 0;
}
.faq-item p {
  color: black;
}