.new_tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}

.tab-heading {
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 700;
  color: #222;
  text-align: center;
}

.tab {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  background: #f8f8f8;
  padding: 8px;
  border-radius: 12px;
  margin-bottom: 24px;
  border: 1px solid rgba(233, 236, 246, 1);
}

.tab button {
  background-color: #f8f8f8;
  border: 0.5px solid white;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab button:hover {
  background-color: #ececec;
}

.tab button.active {
  background-color: rgba(206, 32, 47, 1);
  color: white;
  font-weight: 500;
}

.tab button img.icon_story {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(0);
  transition: filter 0.3s ease;
}

.tab button.active img.icon_story {
  filter: brightness(0) saturate(100%) invert(100%);
}

.tabcontent {
  display: none; /* Hide all by default */
  text-align: left;
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  width: 1200px;
  margin: 0 auto;
}

/* ✅ Show only Our Story tab on page load */
#London {
  display: block;
}

.tabcontent h3 {
  margin-top: 0;
  color: #111;
  font-size: 20px;
}

.tabcontent p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.tab-inner {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.tab-text {
  flex: 1 1 50%;
}

.tab-text h3 {
  font-size: 30px;
  line-height: 1.2;
}

.tab-text p {
  font-size: 18px;
  line-height: 30px;
}

.tab-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
}

.tab-image img {
  width: 580px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-top: 5%;
}

/* Mobile Accordion Version */
.mobile-tab-accordion {
  display: none;
}

@media (max-width: 768px) {
  .tab,
  .tabcontent {
    display: none !important;
  }

  .mobile-tab-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    width: 100%;
  }

  .tab-heading {
    font-size: 18px;
  }

  .accordion-item {
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
  }

  .accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px;
    background-color: #fef2f2;
    color: #b41c28;
    font-weight: 600;
    cursor: pointer;
  }

  .accordion-header img {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    filter: invert(27%) sepia(85%) saturate(3705%) hue-rotate(350deg) brightness(91%) contrast(97%);
  }

  .accordion-header span.arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
  }

  .accordion-header.active .arrow {
    transform: rotate(180deg);
  }

  .accordion-content {
    display: none;
    flex-direction: column;
    padding: 0 16px 16px;
    animation: fadeIn 0.3s ease;
  }

  .accordion-content h3 {
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 8px;
    color: #222;
  }

  .accordion-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 12px;
  }

  .accordion-content img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
