
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  font-size: 18px;
  line-height: 1.6;
  color: #2e2e2e;
  background-color: #fefaf6;
}

.navbar {
  background-color: #cbbba0;
  padding: 1rem 2rem;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f4f4f0;
  top: 100%;
  left: 0;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.dropdown-menu li {
  padding: 0.75rem 1rem;
  text-align: left;
}

.dropdown-menu li a {
  color: #333;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.hero-section {
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: top;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
}

.overlay {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  text-align: center;
  border-radius: 10px;
}

.overlay h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #cbbba0;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.content {
  padding: 2rem;
}

.business-name {
  text-align: center;
  margin-top: 2rem;
  font-size: 2.5rem;
  font-weight: bold;
  color: #3a3a3a;
}

.intro p {
  max-width: 800px;
  margin: 2rem auto;
  text-align: justify;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.services div {
  background: #f4f4f0;
  padding: 1rem;
  border-radius: 8px;
  font-weight: bold;
}

blockquote {
  text-align: center;
  font-style: italic;
  margin: 2rem auto;
  max-width: 700px;
}

.cta {
  background-color: #f3e9da;
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.cta h2 {
  margin-bottom: 1rem;
}

.calendar-placeholder {
  height: 400px;
  background: #eee;
  margin: 2rem auto;
  max-width: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #666;
}

.about-section {
  padding: 2rem;
  background-color: #faf8f5;
  text-align: justify;
  max-width: 1000px;
  margin: 0 auto;
  border-top: 2px solid #ddd;
}

.about-section h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}

.about-photo img {
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-text {
  max-width: 500px;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #444;
  font-style: italic;
}

.contact-section {
  padding: 2rem;
  background-color: #f4f4f4;
  text-align: left;
  max-width: 800px;
  margin: 2rem auto;
  border-top: 2px solid #ccc;
}

.contact-section h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-section p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.certification-badge {
  text-align: right;
  padding: 1rem 2rem;
}

.certification-badge img {
  width: 120px;
  height: auto;
}

.grief-badge {
  text-align: right;
  padding: 1rem 2rem;
}

.grief-badge img {
  width: 120px;
  height: auto;
}

.trauma-badge {
  text-align: right;
  padding: 1rem 2rem;
}

.trauma-badge img {
  width: 120px;
  height: auto;
}