body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #1f2937;
  background-color: #fff;
}

/* HEADER */
.site-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(16, 185, 129, 0.9);
  color: #fff;
}
.logo-area {
  display: flex;
  align-items: center;
}
.logo {
  height: 60px;
  margin-right: 15px;
}
.tagline h1 {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
}
.tagline p {
  margin: 0;
  font-style: italic;
}
.contact-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
  font-weight: 600;
}
.contact-links a:hover {
  text-decoration: underline;
}

/* HERO */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #10B981 0%, #A7F3D0 100%);
  color: #fff;
}
.hero h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
}
.subtext {
  font-size: 1.1rem;
}
.badge {
  display: inline-block;
  margin-top: 10px;
  background: #047857;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: bold;
}

/* SERVICES */
.services {
  padding: 60px 20px;
  text-align: center;
}
.services h2 {
  color: #047857;
  font-family: 'Outfit', sans-serif;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.service-card {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 20px;
  background: #f9fafb;
}

/* ABOUT */
.about {
  padding: 60px 20px;
  background: #f3f4f6;
  text-align: center;
}
.about h2 {
  color: #047857;
  font-family: 'Outfit', sans-serif;
}

/* CONTACT */
.contact {
  padding: 60px 20px;
  text-align: center;
}
.contact h2 {
  color: #047857;
  font-family: 'Outfit', sans-serif;
}
.map {
  margin-top: 20px;
}

/* FOOTER */
footer {
  text-align: center;
  background: #10B981;
  color: #fff;
  padding: 30px 15px;
  font-size: 0.9rem;
}
/* --- Styles for the Scheduling Button --- */
.scheduling-button {
    /* Layout and Visuals */
    display: inline-block;
    background-color: #4CAF50; /* A clean, action-oriented green */
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 8px; /* Slightly rounded edges */

    /* Text and Typography */
    text-decoration: none; /* Removes the underline from the link */
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;

    /* Animation/Hover effect */
    transition: background-color 0.3s ease;
}

.scheduling-button:hover {
    background-color: #45a049; /* Darker green on hover for feedback */
}