body {
  margin: 0;
  padding: 0;
  background: #fdfdfd;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

a {
  color: #b347a6;
  text-decoration: none;
}

a:hover {
  color: #d63384;
}

header {
  text-align: center;
  background: linear-gradient(135deg, #f7e7f0, #f5e9f8);
  padding: 30px 20px;
  color: #5a2b5f;
  border-bottom: 1px solid #e3d6e9;
}

header img {
  max-height: 180px;
  margin-bottom: 10px;
}

.main-nav,
.main-nav ul,
.main-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.main-nav li {
  display: inline-block;
}

.main-nav a {
  text-decoration: none;
  color: #7d3a7e;
  font-weight: 500;
  font-size: 1.1rem;
}

.main-nav a:hover {
  color: #b347a6;
}

nav a {
  color: #7d3a7e;
  font-weight: 500;
  margin: 0 15px;
  font-size: 1.1rem;
}
nav a:hover {
  color: #b347a6;
}

h1, h2, h3 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2a2a2a;
}

.btn, button, .woocommerce a.button {
  display: inline-block;
  background: linear-gradient(135deg, #d63384, #b347a6);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.btn:hover, .woocommerce a.button:hover {
  background: linear-gradient(135deg, #b347a6, #d63384);
}

section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.grid div {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s;
}

.grid div:hover {
  transform: scale(1.02);
}

.grid img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

footer {
  background: #f8f8f8;
  text-align: center;
  padding: 30px 15px;
  color: #777;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  header img {
    max-height: 120px;
  }
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 20px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  padding: 25px;
  text-align: center;
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: scale(1.03);
}

.service-card img {
  height: 60px;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #b347a6;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.ig-block { margin: 2rem 0; }
.ig-title { margin: 0 0 1rem; font-size: 1.25rem; }

.ig-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}

.ig-item{
  display:block;
  border-radius:14px;
  overflow:hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.ig-item img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  display:block;
  transition:transform .2s ease;
}

.ig-item:hover img{ transform:scale(1.03); }

.ig-cta{ margin-top:12px; }
