.tabbed-content-section {
  margin-bottom: 30px;
}

.tabs-container {
  width: 100%;
}

.tabs-header {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 20px;
  justify-content: center;
}

.tab-button {
  background: none;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  transition: all 0.3s ease;
  margin-bottom: -1px;
}

.tab-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.tab-button.active {
  border-bottom-color: #2b7ac0;
}

.tab-content {
  display: none;
  padding: 20px 0;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.tab-image-container {
  margin-bottom: 20px;
}

.tab-image-container img {
  max-width: 100%;
  height: auto;
}

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

@media screen and (max-width: 767px) {
  .tabs-header {
    flex-direction: column;
    border-bottom: none;
  }
  
  .tab-button {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .tab-button.active {
    border-bottom-width: 1px;
    background-color: rgba(0, 0, 0, 0.05);
  }
}