body{font-family:Arial,sans-serif;margin:0;padding:0;background:#f8fbfb;color:#0b2730}h1,h2,h3{color:#0b5f6f}.container{padding:20px}.site-footer{background:#052628;color:#dff4f2;padding:10px;text-align:center}

/* Contact Form Styles */
.contact-form {
  margin: 20px 0;
  padding: 15px;
  background: #ffffff;
  border: 1px solid #cce3e1;
  border-radius: 6px;
  max-width: 500px;
}
.contact-form label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
  color: #0b2730;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #b5d2d0;
  border-radius: 4px;
  font-size: 1em;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0b5f6f;
  outline: none;
}
.contact-form button {
  margin-top: 15px;
  background: #0b5f6f;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background: #094a55;
}


/* CTA Button */
a.cta {
  display: inline-block;
  margin-left: 15px;
  padding: 10px 20px;
  background: #d62828;
  color: #fff !important;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}
a.cta:hover {
  background: #a71d1d;
}


/* Sticky Footer Call Button */
.footer-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #d62828;
  text-align: center;
  padding: 12px 0;
  z-index: 1000;
}
.footer-cta a {
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
}
.footer-cta a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .footer-cta { display: none; } /* Hide on larger screens */
}


/* Testimonials Section */
.testimonials {
  margin: 20px 0;
  padding: 10px;
}
.testimonials blockquote {
  background: #ffffff;
  border-left: 5px solid #0b5f6f;
  margin: 15px 0;
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.testimonials footer {
  font-size: 0.9em;
  color: #333;
  text-align: right;
  margin-top: 5px;
}


/* Photo Gallery */
.photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}
.photo-gallery img {
  width: 100%;
  max-width: 300px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.photo-gallery img:hover {
  transform: scale(1.05);
}
