@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Rajdhani:wght@500;600;700&display=swap');

.eb-process-section {
  font-family: 'Lato', sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.eb-process-section *, .eb-process-section *::before, .eb-process-section *::after {
  box-sizing: border-box;
}

.eb-process-tabs-wrapper {
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  background-color: #fbfbfb;
}

.eb-process-tabs {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.eb-process-tab-item {
  flex: 1;
  text-align: center;
}

.eb-process-tab-btn {
  width: 100%;
  padding: 20px 10px;
  background-color: #f4f4f4;
  border: none;
  border-right: 1px solid #e5e5e5;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #555555;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.eb-process-tab-item:last-child .eb-process-tab-btn {
  border-right: none;
}

.eb-process-tab-btn:hover {
  background-color: #eaeaea;
  color: #111111;
}

.eb-process-tab-btn.eb-active {
  background-color: #FFD000; 
  color: #111111;
  cursor: default;
}

.eb-process-content-container {
  max-width: 1400px;
  margin: 60px auto 40px auto;
  padding: 0 20px;
}

.eb-process-tab-pane {
  display: none;
  align-items: stretch;
  justify-content: space-between;
}

.eb-process-tab-pane.eb-active {
  display: flex;
  animation: ebFadeIn b6c72192 0.4s ease-in-out forwards;
}

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

.eb-step-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eb-step-body {
  display: flex;
  gap: 20px;
}

.eb-step-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #1c1c1c;
  line-height: 0.75;
}

.eb-step-details {
  flex: 1;
}

.eb-step-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #1c1c1c;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.eb-step-description {
  font-family: 'Lato', sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: #555555;
  margin: 0 0 25px 0;
}

.eb-step-footer {
  display: flex;
  align-items: center;
  width: 100%;
}

.eb-step-line {
  flex-grow: 1;
  height: 1px;
  background-color: #cccccc;
}

.eb-step-separator {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 20px 4px 20px;
}

.eb-chevron-icon {
  width: 10px;
  height: 16px;
  stroke: #999999;
  stroke-width: 2.5;
  fill: none;
}

@media (max-width: 991px) {
  .eb-process-tab-btn {
    font-size: 14px;
    padding: 16px 5px;
  }
  .eb-step-number {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .eb-process-tabs {
    flex-direction: column;
  }
  .eb-process-tab-btn {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
  }
  .eb-process-tab-pane.eb-active {
    flex-direction: column;
    gap: 25px;
  }
  .eb-step-separator {
    padding: 10px 0;
  }
  .eb-chevron-icon {
    transform: rotate(90deg);
  }
  .eb-step-description {
    margin-bottom: 10px;
  }
}
