/* Header */
.top-bar {
  display: flex;
  align-items: center;
  background-color: #d8c3a5;
  padding: 12px 20px;
  border-bottom: 2px solid #a68c6d;
}

.logo-text {
  height: 40px;
  margin-left: 12px;
}

.hamburger-menu {
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  padding: 4px 10px;
}

.side-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100%;
  background-color: #f5eee0;
  box-shadow: 2px 0 6px rgba(0, 0, 0, 0.1);
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.side-drawer button {
  background: none;
  border: none;
  font-size: 16px;
  text-align: left;
  padding: 10px;
  cursor: pointer;
}

.side-drawer button:hover {
  background-color: #e5dcc5;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 900;
}

.side-drawer.open {
  transform: translateX(0);
}

.hidden {
  display: none;
}

.user-path {
  padding: 40px 20px;
  text-align: center;
}

.path-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  align-items: center;
}

@media (min-width: 600px) {
  .path-options {
    flex-direction: row;
    justify-content: center;
  }
}

.option-card {
  background-color: #f5eee0;
  padding: 16px;
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  border: 2px solid #a68c6d;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
}

.option-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.banner-image {
  width: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 12px;
  margin: 20px 0 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.home-header {
  text-align: center;
  padding: 40px 20px;
}

.hero-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.home-services {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.home-services h2 {
  text-align: center;
  margin-bottom: 20px;
}

.home-services ul {
  list-style-type: none;
  padding: 0;
}

.home-services li {
  background: #f5eee0;
  padding: 15px 20px;
  margin-bottom: 12px;
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.service-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  padding-bottom: 100px;
  flex-wrap: wrap;
}

.service-nav-buttons button {
  background-color: #a68c6d;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.service-nav-buttons button:hover {
  background-color: #8d7557;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.email-button,
.call-button {
  min-width: 200px;
  text-align: center;
  background-color: #a68c6d;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  transition: background-color 0.2s ease;
}

.email-button:hover,
.call-button:hover {
  background-color: #8d7557;
}

.faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-bubble {
  display: flex;
  flex-direction: column;
  border: 2px solid #a68c6d;
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  background-color: #f5eee0;
  padding: 12px 16px;
  font-weight: bold;
  font-size: 16px;
  color: #333;
  cursor: default;
}

.faq-answer {
  background-color: #fdfaf5;
  padding: 12px 16px;
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


@media (max-width: 600px) {
  .faq-question,
  .faq-answer {
    font-size: 15px;
    padding: 10px 14px;
  }

  .faq-section {
    padding: 12px;
  }
}