body {
 font-family: Arial, sans-serif;
  background-color: #D6E8DD;
  color: #333;
  line-height: 1;
}

/* Header */
header {
  background: #D6E8DD;
  color:#215C52;
  text-align: center;
  padding: 5px 5px;
}

.logo img {
  height: 150px;   /* Adjust size of logo */
  width: 150px;
  display: block;
  margin: 0 auto 20px auto; /* Center + space below */
}
header h1 {
  margin-top: 15px;
  font-size: 3rem;
}

.tagline {
  font-style: italic & bold;
  margin: 5px 0 15px 0;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: green;
margin: 0 25px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Services section */
.services {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.services h2 {
  text-align: center;
  margin-bottom: 1rem;
color: Blue
}

.services .intro {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: Blue;
}

/* Service Box */
.service-box {
  display: flex;
  justify-content: flex-start;
  margin: 1.5rem 0;
}

.service-box.right {
  justify-content: flex-end;
}

.service-box .accordion {
  background: #f7f7f7;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 1.2rem;
  cursor: pointer;
  width: 350px;
  text-align: left;
  transition: background 0.3s;
}

.service-box .accordion:hover {
  background: #eaf6ff;
}

.service-box .accordion.active {
  background: #d8ebff;
}

/* Panel */
.panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  width: 350px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0 0 12px 12px;
  padding: 0 1rem;
}

.panel ul {
  margin: 0.5rem 0;
  padding-left: 1.2rem;
}

.panel p {
  margin: 0.5rem 0 1rem 0;
}
/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background: #195C4C;
  color: white;
  margin-top: 30px;
}
/* Services Section */
.services {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
}

.services h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* Service Box */
.service-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #f9f9f9;
  min-height: 200px;  /* ensures equal height */
}

/* Image inside */
.service-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
}

/* Service Content */
.service-content,
.panel {
  flex: 1;
}

/* Alternate Layout */
.service-box.left {
  flex-direction: row;
}

.service-box.right {
  flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 768px) {
  .service-box {
    flex-direction: column !important;
    text-align: center;
  }
}
/* ===== Top Bar styles ===== */
.ms-topbar {
  background: #ffffff;
  border-bottom: 1px solid #e9efe9;
  color: #215C52;
  font: 500 14px/1.2 system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.ms-topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ms-topbar__left,
.ms-topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ms-topbar a {
  color: #215C52;
  text-decoration: none;
}
.ms-topbar a:hover { text-decoration: underline; }

.ms-hours { opacity: 0.85; }

/* Button */
.ms-book {
  background: Blue;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #E18B22;
}
.ms-book:hover { filter: brightness(0.95); }

/* Optional: smooth scroll when linking to #appointment */
html { scroll-behavior: smooth; }

/* Mobile */
@media (max-width: 768px) {
  .ms-topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .ms-book { width: 100%; text-align: center; }
}

/* Optional: make the top bar stick to the top while scrolling */
 /* .ms-topbar { position: sticky; top: 0; z-index: 1000; } */

body {
  background: url("images/background-leaves.png") no-repeat center top;
  background-size: cover;
  background-attachment: fixed; /* keeps it still when scrolling */
}

/* Optional: add a hazy overlay so text remains clear */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.2); /* soft white haze */
  z-index: -1;
}
header {
  background: url("background-leaves.png") no-repeat center center / cover;
}
.service-box {
  background: #fff;               
  padding: 20px 30px;             
  margin: 30px auto;              
  border-radius: 12px;            
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
  max-width: 900px;               
  text-align: center;             /* Center align heading + paragraph */
}

.service-box h2 {
  color: #000080;                 
  margin-bottom: 15px;            
}

.service-box p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;                    
}
/* Intro block (top of Services page) */
.service-intro {
  background: #fff;
  padding: 30px 40px;
  margin: 40px auto;
  max-width: 1500px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-intro h2 {
  margin: 0 0 12px;
  color: #000080;     /* deep blue heading */
  font-size: 28px;
  font-weight: 700;
}

.service-intro p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}
