/* General Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; }

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem; background: #222; color: #fff; }
.logo { font-size: 1.5rem; }
.menu { list-style: none; display: flex; }
.menu li { margin-left: 1rem; }
.menu a { color: #fff; text-decoration: none; }
.toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; }

/* Hero */
.hero { text-align: center; padding: 4rem 2rem; background: linear-gradient(to right, #ff6b6b, #f06595); color: #fff; }
.hero h2 { font-size: 2rem; margin-bottom: 1rem; }
.btn { display: inline-block; padding: 0.7rem 1.2rem; background: #fff; color: #333; border-radius: 5px; text-decoration: none; }

/* Sections */
.section { padding: 3rem 2rem; text-align: center; }
.grid { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.card { background: #f4f4f4; padding: 1.5rem; border-radius: 8px; flex: 1; min-width: 200px; }

/* Testimonials */
.slider p { margin: 1rem 0; font-style: italic; }

/* Contact */
form { display: flex; flex-direction: column; max-width: 400px; margin: auto; }
form input, form textarea { margin: 0.5rem 0; padding: 0.7rem; border: 1px solid #ccc; border-radius: 5px; }
form button { margin-top: 1rem; }

/* Footer */
footer { text-align: center; padding: 1rem; background: #222; color: #fff; }

/* Responsive */
@media (max-width: 768px) {
  .menu { display: none; flex-direction: column; }
  .menu.show { display: flex; }
  .toggle { display: block; }
}


/* Gallery */
.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1rem;
}
.gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.gallery img:hover {
  transform: scale(1.05);
}

/* Pricing */
.pricing .card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.pricing .card:hover {
  transform: translateY(-5px);
}
.pricing .price {
  display: block;
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #f06595;
}

/* FAQ */
.faq .faq-item {
  margin: 1rem auto;
  max-width: 600px;
  text-align: left;
}
.faq .faq-item h3 {
  cursor: pointer;
  background: #f06595;
  color: #fff;
  padding: 0.7rem;
  border-radius: 8px;
}
.faq .faq-item p {
  display: none;
  padding: 0.7rem;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
}
