body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  background: #fff0f5;
  color: #333;
}
header {
  background: #ffb6c1;
  padding: 10px;
  text-align: center;
}

.logo {
  height: 100px;
  margin-bottom: 10px;
}

nav {
  margin-top: 10px;
}

nav a {
  margin: 0 12px;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
}

.centered-layout {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
}

h2 {
  margin-top: 70px;
  text-align: center;
  color: #e055a2;
  font-size: 35px;
}





.service-info {
  display: none;
  margin-top: 10px;
  font-size: 0.95em;
  color: #555;
}
.service-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap; /* <--- forces them into one row */
}
.service-box {
  width: 300px;          /* ~2.5 inches (180px ≈ 2.5 inches on most screens) */
  height: 390px;         /* ~4 inches (290px ≈ 4 inches) */
  background: #f9cfd5;
  border: 1px solid #ff69b4;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
  cursor: pointer;
  overflow: hidden;
}


.service-box:hover {
  transform: scale(1.05);
}
.service-box img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 5px;
}

details {
  background: #fff8fa;
  padding: 10px;
  border: 1px solid #ffb6c1;
  border-radius: 8px;
  margin: 10px auto;
  max-width: 700px;
}

blockquote {
  margin: 20px auto;
  max-width: 700px;
  font-style: italic;
  background: #fffafc;
  border-left: 4px solid #ff69b4;
  padding: 15px;
  border-radius: 4px;
}

form {
  background: #fff;
  border: 2px solid #ffb6c1;
  padding: 20px;
  border-radius: 10px;
  max-width: 700px;
  margin: auto;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  background: #ff69b4;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #f791a1;
}

footer {
  text-align: center;
  background: #f791a1;
  padding: 20px;
  font-weight: bold;
  font-size: 1em;
}
.service-details {
  display: none;
  margin-top: 10px;
}
form input,
form select,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
}
h4 { 
font-style: italic;
 font-family: Eras Light ITC;
  color: #e055a2;
  font-size: 25px;
 text-align: center
 ;
 padding-top: 20px;
 font-weight: lighter;

}
h3 {
 font-family: Pristina;
color: #85124b;
font-weight: lighter;

font-size: xx-large

}
h5 {
  color: white;
  font-size: large;
}

h6 { text-align: center;
font-size: 15px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #e754a6;}

.product-comments {
  padding: 40px;
  background-color: #fff0f8;
  text-align: center;
  border-top: 2px solid #ffaad4;
}

.product-comments h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.product-comments form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  width: 100%;
}

.product-comments input,
.product-comments textarea {
  padding: 12px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.product-comments button {
  padding: 12px;
  font-size: 1em;
  background-color: #e754a6;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product-comments button:hover {
  background-color: #e754a6;
}
@media (max-width: 600px) {
  .product-comments {
    padding: 20px;
  }

  .product-comments form {
    width: 100%;
    max-width: 90%;
  }
}
nav a.highlight-link {
  text-decoration: underline;
  font-weight: bold;
  color: #e754a6;
}
