
body {
 background-color: #f6f8fa;
  color: #1B1E23;
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}
.hori-selector{
  background-color: #f6f8fa;
}

.hori-selector .right,
.hori-selector .left{
  background-color: #f6f8fa;
}

#navbarSupportedContent>ul>li.active>a{
  color:black;
}


.flow-item {
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    width: 100%;
}
.flow-arrow {
   padding-top: 20px;
}

.dev-step{
  color:#280b0b; 
  font-family: 'Playfair Display', serif;
  
}

.dev-detail{
  color:#299f93; 
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  font-size: 1.12rem;
  border-radius: 10px;
  padding-top: 9px;
  padding-right: 8px;
  padding-bottom: 6px;
  padding-left: 9px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3)
}

.flowchart-mobile {
  display: none;
}
@media (max-width: 900px) {
  .dev-steps-grid {
    display: none;
    margin-left: -15px;
  }
  .flow-step-col {
    display: none;
  }
  .flowchart-mobile {
    display: inline-grid;
    margin-top: 32px;
    text-align: center;
  }
  .flowchart-mobile .flow-item, .flowchart-mobile .flow-arrow {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Grid layout for development process steps and flowchart */
.dev-steps-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}
.dev-step-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.dev-step-col {
  flex: 2;
  min-width: 0;
}
.flow-step-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 220px;
}
.flow-item {
  margin: 0;
  width: 100%;
  max-width: 260px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
@media (max-width: 900px) {
  .dev-step-row {
    display: block;
    margin-bottom: 24px;
  }
  .dev-step-col {
    width: 100%;
    margin-bottom: 0;
  }
  .flow-step-col {
    width: 100%;
    display: none;
    margin: 0 auto 24px auto;
    text-align: center;
  }
  .flow-item, .flow-arrow {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }
}


