:root {
  /* Color Palette */
  --pcm-primary: #21f2c2;
  --pcm-secondary: #212b38;
}
body {
  font-family: "shabnam";
}
.innner-title-container p {
  color: white;
  font-size: 18px;
  font-weight: 600;
  font-family: "peyda";
} 
 .innner-title-container h1 {
  color: var(--pcm-primary) !important;
  font-weight: 700;
  font-family: "peyda";
  text-align: center;
} 
.innner-title-container {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 1;
  position: relative;
}
 .faq-title-container {
  background: var(--pcm-secondary);
  overflow: hidden;
  position: relative;
} 
p.faq-heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--pcm-secondary);
  margin: 88px 0 40px;
  font-family: "peyda";
}
.tabs-container,
.deposit-container {
  max-width: 1400px;
  margin: 50px auto;
  background: #fff;
  border-radius: 8px;
}
.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
  font-family: "peyda";
}

.tab-button {
  flex: 1 1 100%;
  padding: 21px 20px;
  text-align: center;
  cursor: pointer;
  border: none;
  background: #f1f2f3;
  transition: background 0.3s ease;
  font-size: 14px;
  color: var(--pcm-secondary);
  border-radius: 8px;
  font-weight: 600;
}

.tab-button.active {
  background: var(--pcm-primary);
  font-weight: bold;
}

.tab-button:hover {
  background: var(--pcm-primary);
  color: var(--pcm-secondary);
}

/* Tab Contents */
.tab-contents {
  padding: 10px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.accordion-item {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
    padding: 16px;
    background: #f8f8f8 !important;
    cursor: pointer !important;
    font-weight: bold !important;
    display: grid;
    transition: background .3s ease;
    font-size: 14px !important;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    width: 100%;
    text-align: right;
    z-index: 99;
    position: relative;
}
.accordion-header > span{
  grid-column: span 11 / span 11;
  white-space: normal;
}
.accordion-item.active .accordion-header {
  background: var(--pcm-secondary) !important;
  color: var(--pcm-primary) !important;
}
.accordion-item.active .accordion-header svg path {
  fill: #21f2c2;
}
.tab-buttons button:focus,
.tab-buttons button:focus-visible {
  border: none !important;
  border-color: transparent;
  outline: none;
  color: var(--pcm-secondary);
}

.accordion-header:hover {
  background: #e0e0e0;
}

.accordion-content {
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding: 10px 15px;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  transition: transform .3s ease;
  grid-column: span 1 / span 1;
  justify-self: end;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

@media(max-width:767px){
  .deposit-container {
    padding: 0 10px;
  }
  p.faq-heading {
    text-align: center !important;
    line-height: 2;
  }
  .tab-buttons{
    padding: 0 10px;
  }
  .innner-title-container{
    padding: 0 10px;
  }
}
@media (min-width: 767px) {
  .tab-button {
    flex: 1 1 auto;
    font-size: 16px;
  }

  .tab-contents {
    padding: 20px 0;
  }

  .accordion-header {
    font-size: 16px;
  }
}

