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

html {
  font-family: 'Playfair', serif;
  font-size: 62.5%;
}

body {
  font-family: 'Lora', serif;
  font-size: 16px;
}

header {
  height: 300px;
  background-color: lavender;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
header h1 {
  font-family: 'playfair', serif;
  font-size: 6rem;
  letter-spacing: 0.07rem;
  text-align: center;
  padding-top: 5px;
  padding-top: 150px;
}
.heroText {
  margin-top: 350px;
}
.heroTextSide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-bottom: 50px;
  gap: 100px;
}
.heroTextSide h2 {
  min-width: 350px;
  min-height: 80px;
  font-family: 'playfair', serif;
  display: flex;
  align-items: center;
  border-right: 1px solid #75ba75;
}
.heroTextSide p {
  max-width: 350px;
  color: #888888;
  font-family: 'lora', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
.heroImage .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 80px;
  margin-top: 80px;
  margin-bottom: 80px;
  color: #75ba75;
  background-color: #e7e7e7;
}
.heroImageText {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.heroImage img {
  max-height: 450px;
}
.heroImage h1 {
  font-family: 'playfair', serif;
  font-size: 6rem;
  letter-spacing: 0.07rem;
  text-align: center;
  padding-top: 5px;
}
.heroImage h2 {
  font-family: 'playfair', serif;
  font-size: 2rem;
  max-width: 650px;
}
.heroImage p {
  max-width: 650px;
  color: #888888;
  font-family: 'lora', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

.heroTerapeut {
  margin-top: 100px;
  background-color: #e7e7e7;
}

.heroTerapeut section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 100px;
  padding-bottom: 50px;
}
.sideText {
  margin-top: -80px;
}
.sideText h2 {
  text-align: center;
  font-family: 'playfair', serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.sideText p {
  width: 600px;
  color: #888888;
  font-family: 'lora', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-align: center;
}
.terapeutImg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.terapeutImg img {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  object-fit: cover;
}
.terapeutImg p {
  font-family: 'lora', serif;
  font-size: 2rem;
  margin-top: 20px;
  color: #888888;
}
.certifications img {
  width: 60px;
  height: 60px;
  border-radius: 0;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
.certifications h4 {
  font-family: 'lora', serif;
  margin-bottom: 5px;
  font-size: 1.3rem;
  color: #888888;
  text-align: center;
}

.facts h2 {
  font-family: 'playfair', serif;
  font-size: 3rem;
  margin-top: 100px;
  margin-bottom: 50px;
  text-align: center;
}

.factsContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 700px;
  gap: 50px;
  text-align: center;
  color: #888888;
  font-family: 'lora', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  margin-top: 100px;
  margin-bottom: 50px;
  margin-right: auto;
  margin-left: auto;
}

/* Media Queries for Responsiveness */

@media (max-width: 1200px) {
  .heroTextSide {
    flex-direction: column;
    gap: 50px;
  }
  .heroImage .container {
    flex-direction: column;
    gap: 50px;
  }
  .heroTextSide h2 {
    min-width: 100%;
    text-align: center;
    border-right: none;
  }
  .heroImage h1 {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 56.25%; /* 14px */
  }
  header {
    height: 250px;
  }
  header h1 {
    font-size: 4rem;
    padding-top: 100px;
  }
  .heroTextSide {
    margin-top: 100px;
    gap: 30px;
  }
  .heroTextSide h2 {
    font-size: 2rem;
  }
  .heroTextSide p {
    font-size: 1.2rem;
  }
  .heroImage .container {
    flex-direction: column;
    gap: 30px;
  }
  .heroImage h2 {
    font-size: 1.8rem;
  }
  .heroImage p {
    font-size: 1.2rem;
  }
  .heroTerapeut section {
    flex-direction: column;
    gap: 30px;
  }
  .sideText p {
    width: 90%;
  }
  .factsContainer {
    width: 90%;
    margin-top: 50px;
    margin-bottom: 30px;
  }
  .facts h2 {
    font-size: 2.5rem;
  }
  .terapeutImg img {
    height: 120px;
    width: 120px;
  }
}

@media (max-width: 480px) {
  header {
    height: 200px;
  }
  header h1 {
    font-size: 3rem;
    padding-top: 80px;
  }
  .heroTextSide {
    gap: 20px;
  }
  .heroImage h1 {
    font-size: 3rem;
  }
  .heroImage h2 {
    font-size: 1.5rem;
  }
  .heroImage p {
    font-size: 1.1rem;
  }
  .sideText h2 {
    font-size: 2.5rem;
  }
  .sideText p {
    font-size: 1.1rem;
  }
  .terapeutImg p {
    font-size: 1.5rem;
  }
  .factsContainer {
    width: 100%;
  }
}
