.tab-content-container {
  display:flex;
  flex-direction:row;
  gap:24px;
}
.tab {
display:flex;
padding: 24px;
align-items: center;
gap: 24px;
flex: 1 0 0;
border-radius: 4px;
background: #FFF;
border:2px solid #e0f4fc !important;
height:auto;
}

.tab-section .tab-heading {
  font-size:20px;
  font-weight:700;
  text-align:center;
}

.tab-section {
  background-color: #fff;
  box-shadow: 0px 4px 16px #0072BC74;
  padding:24px;
  border-radius:8px;
  display:flex;
  flex-direction:column;
  gap:24px;
}

.tab .icon {
  width:48px;
  height:48px;
  background-color:#98C4E5;
  border-radius:4px;
  flex-shrink:0;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.tab.active .icon {
  background-color:#0072bc; /* or whatever value you prefer */
  transition: 0.3s ease;
}

.tab .content {
display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  flex: 1 0 0;
}
.content .heading {
  font-size:18px;
  font-weight:700;
  color: #0072bc;
}

.content .description {
  text-align:left;
  font-style:normal;
  -webkit-text-fill-color: #333; /* Covers some Safari edge cases */
}

/* Container and tab layout */
.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.me-3 {
  margin-right: 1rem;
}
.align-items-start {
  align-items: center;
}

/* Tab nav styles */
.nav {
  display: flex;
  flex-wrap: nowrap;
}
.nav-pills .nav-link {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  padding: 10px 15px;
  margin-bottom: 5px;
  border-radius: 4px;
  color: #333;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.nav-pills .nav-link:hover {
  background-color: #e2e2e2;
}
.nav-pills .nav-link.active {
  background-color: #007bff;
  color: white;
}

/* Tab content pane */
.tab-content {
  flex-grow: 1;
/*   padding: 1rem; */

  border-left: none;
  background-color: #fff;
}

/* Hide inactive tabs */
.tab-pane {
  display: none;
}
.tab-pane.show {
  display: block;
}

.tab-pane img {
  width:100%;
}

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

.tab-section button:focus {
  background-color: #e6f4ff;
}

.tab.active {
  border: 2px solid #0072bc !important;
  background-color: #e6f4ff;
}



.content > .heading,
.content > .description {
  margin: 0;
  padding: 0;
  text-align:left;
}



.tab-group-container {
display: flex;
width: 100%;
flex-direction: column;
align-items: flex-start;
gap:24px;
}

.primary {
  text-align:center;
}

@media only screen and (max-width:1024px) {
  .tab-content-container {
  flex-direction:column !important;
}
  .tab-pane img {
    width:100%;
  }
}



.mobile-accordion {
  display:none;
}

.accordion-panel img {
  width:100%;
}

.arrow-icon {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.chevron-icon {
  transition: transform 0.3s ease;
}

.chevron-icon.rotate {
  transform: rotate(180deg);
}

.accordion-panel {
  display: none;
}

.accordion-panel.show {
  display: block;
}

@media only screen and (max-width:768px) {
  .mobile-accordion {
    display:block;
  }
  .desktop-tab {
    display:none;
}