section.who-we-are .v-acc-container {
  display: flex;
  width: 100%;
  height: 500px;
  gap: 8px;
  overflow: hidden;
  padding: 10px 0;
}
section.who-we-are .v-acc-item {
  display: flex;
  background: #fff;
  border-radius: 10px;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.3, 1);
  flex: 0 0 55px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
section.who-we-are .v-acc-item.is-active {
  flex: 1;
  cursor: default;
  border-color: #b48e56;
}
section.who-we-are .v-acc-sidebar {
  background-color: #b48e56;
  color: #fff;
  min-width: 55px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  box-sizing: border-box;
}
section.who-we-are .v-acc-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
}
section.who-we-are .v-acc-arrow {
  font-size: 10px;
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
section.who-we-are .v-acc-item.is-active .v-acc-arrow {
  transform: rotate(0deg);
}
section.who-we-are .v-acc-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  min-width: 300px;
}
section.who-we-are .v-acc-content h3 {
  margin: 0 0 15px;
  color: #333;
  font-size: 26px;
}
section.who-we-are .v-acc-content p {
  max-width: 450px;
  line-height: 1.6;
  color: #666;
  font-size: 16px;
}
section.who-we-are .v-acc-content video {
  max-width: 60%;
  margin: auto;
  border-radius: 10px;
}
section.who-we-are .v-acc-item.is-active .v-acc-content {
  opacity: 1;
  visibility: visible;
}
section.who-we-are .v-acc-link {
  margin-top: 20px;
  color: #b48e56;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid #b48e56;
  padding-bottom: 3px;
}
@media (max-width: 768px) {
  section.who-we-are .v-acc-container {
    flex-direction: column;
    height: auto;
    gap: 10px;
  }
  section.who-we-are .v-acc-item {
    flex: 0 0 auto;
    flex-direction: column;
    width: 100%;
    min-height: 60px;
  }
  section.who-we-are .v-acc-sidebar {
    flex-direction: row;
    height: 60px;
    width: 100%;
    padding: 0 20px;
    min-width: unset;
  }
  section.who-we-are .v-acc-label {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
  }
  section.who-we-are .v-acc-arrow {
    transform: rotate(0deg);
  }
  section.who-we-are .v-acc-content {
    padding: 30px 20px;
    display: none;
    min-width: unset;
  }
  section.who-we-are .v-acc-item.is-active .v-acc-content {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
}
