
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}
header {
  background: #ffcce5;
  color: #fff;
  padding: 40px;
  text-align: center;
}
header h1 {
  margin: 0;
  font-size: 2.5em;
  color: #fff;
}
header .tagline {
  font-size: 1.2em;
  color: #fff;
}
.intro, .owner, .services, .portfolio, .contact {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}
h2 {
  color: #cc3366;
}
.owner-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.owner-photo {
  width: 200px;
  border-radius: 12px;
}
.services ul {
  list-style: none;
  padding: 0;
}
.services li {
  padding: 5px 0;
  font-weight: bold;
  color: #555;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.gallery img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.contact p {
  margin: 10px 0;
}
.whatsapp {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
footer {
  background: #ffcce5;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  color: #fff;
}
