body {
  background-color: white;
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  font-family: 'Frank Ruhl Libre', serif;
  margin: 0;
  padding: 0;
}

.top-header {
  background-color: white;
  color: black;
  padding: 15px 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  font-size: 18px;
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-header a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-header a:hover {
  color: #ffb4a2;
}

.top-header img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  margin-right: auto;
}

.header-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 4px;
}

.header-banner p {
  color: #666;
  font-size: 20px;
  margin: 15px 0 0 0;
}

h1 {
  color: #333;
  font-family: 'Frank Ruhl Libre', serif;
  margin: 0;
  font-size: 50px;
  display: inline-block;
  padding-bottom: 5px;
  position: relative;
}

h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background-color: #dd22a8;
}

.contact-page-content {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  max-width: 1000px;
  margin: 20px auto 40px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.contact-container {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 30px;
  max-width: 500px;
  text-align: center;
  margin: 0;
  flex: 1 1 350px;
}

.contact-container p {
  font-size: 20px;
  color: #444;
  margin: 12px 0;
}

.map-container {
  flex: 1 1 350px;
  display: flex;
  align-items: center;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.enquiry-section {
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 40px;
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  box-sizing: border-box;
  width: calc(100% - 40px);
}

.enquiry-section h2 {
  margin-top: 0;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-inputs {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
  flex: 1;
  min-width: 200px;
}

.form-group input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
}

.enquiry-form button {
  background-color: #dd22a8;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 0;
  flex: 1;
  min-width: 150px;
  transition: background-color 0.3s;
}

.enquiry-form button:hover {
  background-color: #c01b91;
}

#enquiry-message {
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
}

.peach-block {
  background-color: #fffaf5;
  padding: 40px 20px;
  text-align: center;
  margin: 0 auto 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  max-width: 1000px;
  box-sizing: border-box;
  width: calc(100% - 40px);
}

.peach-block h3 {
  color: #333;
  margin-bottom: 25px;
  font-size: 24px;
  display: inline-block;
  border-bottom: 3px solid #dd22a8;
  padding-bottom: 5px;
  margin-top: 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-decoration: none;
  color: #444;
  font-size: 22px;
  font-weight: bold;
  transition: color 0.3s;
}

.social-link:hover {
  color: #dd22a8;
}

.social-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.fb-icon {
  transform: scale(1.15);
}

.instagram-icon {
  transform: scale(1.15);
}

.site-footer {
  text-align: center;
  padding: 20px;
  color: #666;
  margin-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.site-footer p {
  margin: 0;
}