body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff0f6;
  color: #333;
}

/* Header */
header {
  background: #7b1fa2;
  color: #fff;
  padding: 30px;
  text-align: center;
}

/* Sections */
section {
  padding: 20px;
}

h2 {
  color: #7b1fa2;
}

h3 {
  color: #9c27b0;
}

/* Info Box */
.info {
  background: #f8eafc;
  border-left: 5px solid #7b1fa2;
  margin: 20px;
  border-radius: 8px;
}

/* Services */
.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  background: #ffffff;
  margin: 8px 0;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Note */
.note {
  font-weight: bold;
  color: #7b1fa2;
}

/* Gallery */
.gallery .photos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery img {
  width: 30%;
  border-radius: 10px;
}

/* Button */
.btn {
  display: inline-block;
  background: #7b1fa2;
  color: white;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background: #f3d9fa;
}

/* Floating Buttons */
.whatsapp-float,
.call-float {
  position: fixed;
  right: 15px;
  background: #7b1fa2;
  color: #fff;
  padding: 14px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
}

.whatsapp-float {
  bottom: 80px;
}

.call-float {
  bottom: 20px;
}
.beautician-section {
  text-align: center;
  padding: 40px 20px;
  background: #fff7f9;
}

.beautician-img {
  width: 220px;
  border-radius: 12px;
  margin: 15px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.beautician-section a {
  color: #d63384;
  text-decoration: none;
  font-weight: 600;
}

.location-section {
  padding: 40px 20px;
  background: #f8f9fa;
}
/* Beautician Section */
.beautician-section {
  background: #faf5ff;
  border-radius: 12px;
  padding: 40px 20px;
}

.beautician-card {
  max-width: 800px;
  margin: 0 auto;              /* CENTER CARD */
  background: #ffffff;
  border-radius: 14px;
  display: flex;               /* SIDE BY SIDE */
  align-items: center;
  gap: 25px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.beautician-img {
  width: 200px;
  border-radius: 12px;
  object-fit: cover;
}

.beautician-info {
  text-align: left;            /* KEY FIX */
}

.beautician-name {
  font-size: 20px;
  font-weight: bold;
  color: #8e24aa;
  margin-bottom: 10px;
}

.beautician-info a {
  color: #8e24aa;
  font-weight: 600;
  text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .beautician-card {
    flex-direction: column;
    text-align: center;
  }

  .beautician-info {
    text-align: center;
  }
}