body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f4f0;
  color: #3d3d3d;
  line-height: 1.7;
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
}

.language-selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  flex-wrap: wrap;
  position: relative;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
}

.top-contact-link {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-contact-link:hover {
  color: #333;
  text-decoration: underline;
}

.contact-icon {
  font-size: 1rem;
  opacity: 0.8;
}

.lang-buttons {
  display: flex;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .language-selector {
    padding-left: 60px; /* Make room for hamburger */
    padding-right: 1rem;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
  
  .top-contact {
    display: none;
  }
  
  .lang-buttons {
    flex-shrink: 0;
  }
}

.lang-btn {
  padding: 0.4rem 0.75rem;
  background-color: transparent;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  border-color: #999;
  color: #333;
}

.lang-btn.active {
  background-color: #8b7a68;
  color: #ffffff;
  border-color: #8b7a68;
}

header {
  background: linear-gradient(135deg, #d4c5b9 0%, #b8a99a 100%);
  padding: 6rem 2rem 4rem 2rem;
  text-align: center;
  border-bottom: none;
  color: #ffffff;
  position: relative;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.1);
  z-index: 0;
}

header > * {
  position: relative;
  z-index: 1;
}

h1 {
  margin: 0 0 1rem 0;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: #ffffff;
}

.subtitle {
  margin-top: 0.5rem;
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 2rem;
}

.header-cta {
  margin-top: 2rem;
}

.content-container {
  max-width: 100%;
  margin: 0 auto;
}

.nav-menu {
  display: flex;
  gap: 0;
  padding: 0;
  border-bottom: none;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 4rem;
    box-shadow: 2px 0 8px rgba(0,0,0,0.15);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    transform: translateX(280px);
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  position: fixed;
  top: 20px;
  right: 20px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    position: fixed;
    top: 20px;
    left: 15px;
  }
  
  .hamburger.active {
    position: fixed;
    top: 20px;
    left: 20px;
  }
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #8b7a68;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .menu-overlay.active {
    display: block;
    opacity: 1;
  }
}

.nav-link {
  padding: 1.2rem 1.5rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  color: #666;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
}

@media (max-width: 768px) {
  .nav-link {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 2rem;
    font-size: 0.95rem;
  }
}

.nav-link:hover {
  color: #8b7a68;
  background-color: #fafaf8;
  text-decoration: none;
}

.nav-link.active {
  color: #8b7a68;
  border-bottom-color: #8b7a68;
  background-color: #fafaf8;
}

main {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

section.content-section {
  display: block;
  margin-bottom: 3rem;
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  scroll-margin-top: 80px;
}

@media (max-width: 768px) {
  section.content-section {
    scroll-margin-top: 20px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

h2 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #8b7a68;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #e5ddd5;
  padding-bottom: 1rem;
}

section h3 {
  font-size: 1.4rem;
  font-weight: 400;
  color: #8b7a68;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

section h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 0.4rem;
  margin-top: 0;
}

section p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.therapy-options {
  margin: 1rem 0;
}

.therapy-option {
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.therapy-option p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
}

.about-section {
  margin-top: 1rem;
  padding-left: 0.5rem;
}

.about-section p {
  font-size: 0.95rem;
  margin: 0.6rem 0;
  line-height: 1.5;
}

.work-areas {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem 0.75rem;
}

.work-areas li {
  padding-left: 1.5rem;
  margin-bottom: 0;
  position: relative;
  font-size: 0.95rem;
}

.work-areas li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #8b7a68;
  font-size: 1.2rem;
}

.qualifications-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.qualifications-list li {
  padding-left: 1.5rem;
  margin-bottom: 0;
  position: relative;
  font-size: 0.95rem;
}

.qualifications-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #8b7a68;
  font-size: 1.2rem;
}

.profile-pic {
  max-width: 280px;
  width: 280px;
  height: 400px;
  border-radius: 8px;
  float: right;
  margin: 0 0 2rem 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  object-position: center 30%;
}

a {
  color: #8b7a68;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  color: #6d5e50;
  text-decoration: underline;
}

.cta-button {
  display: inline-block;
  background-color: #8b7a68;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 1rem 0.5rem;
  box-shadow: 0 4px 12px rgba(139, 122, 104, 0.3);
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background-color: #7a6c5d;
  color: #ffffff;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-button.secondary {
  background-color: transparent;
  border: 2px solid #ffffff;
  box-shadow: none;
}

.cta-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

footer {
  text-align: center;
  padding: 2.5rem;
  font-size: 0.9rem;
  border-top: none;
  background-color: #8b7a68;
  color: rgba(255, 255, 255, 0.8);
}

.footer-sitemap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-sitemap a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-sitemap a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-sitemap {
    gap: 1rem;
  }
  
  .footer-sitemap a {
    font-size: 0.9rem;
  }
}

.faq-accordion {
  margin-top: 2rem;
}

.faq-item {
  margin-bottom: 0.5rem;
  border: 1px solid #e5ddd5;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fafaf8;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.25rem;
  background-color: transparent;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  color: #8b7a68;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #f0ece7;
}

.faq-question span:first-child {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #8b7a68;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.25rem 0.875rem 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
  color: #3d3d3d;
}

.faq-toc {
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  background-color: #fafaf8;
  border-left: 4px solid #8b7a68;
}

.faq-toc h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 1rem;
  color: #8b7a68;
}

.faq-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-toc li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.faq-toc a {
  color: #8b7a68;
  text-decoration: none;
}

.faq-toc a:hover {
  text-decoration: underline;
  color: #6d5e50;
}

/* Contact Form Styles */
.contact-form {
  max-width: 800px;
  margin: 2rem auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 769px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-full-width {
  grid-column: 1 / -1;
}

@media (min-width: 769px) {
  .form-group {
    margin-bottom: 0;
  }
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #3d3d3d;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5ddd5;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8b7a68;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .cta-button {
  margin: 1rem auto;
  cursor: pointer;
  border: none;
  font-family: inherit;
  display: block;
}

@media (min-width: 769px) {
  .contact-form .cta-button {
    grid-column: 1 / -1;
    justify-self: center;
    margin: 1rem 0;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  header {
    padding: 4rem 1.5rem 3rem 1.5rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .cta-button {
    display: block;
    margin: 0.5rem auto;
    width: 80%;
    text-align: center;
  }

  section.tab-content {
    padding: 2rem 1.5rem;
  }

  .profile-pic {
    float: none;
    display: block;
    margin: 0 auto 2rem auto;
    max-width: 200px;
    width: 200px;
    height: 360px;
  }

  .work-areas {
    grid-template-columns: 1fr;
  }

  main {
    padding: 2rem 1rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  section h3 {
    font-size: 1.2rem;
  }
}
