/* === Outer Section === */
.nameplate-process-section {
  width: 100%;
  padding: 60px 0;
  background: none;
}

/* === Inner Flex Container === */
.nameplate-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 40px;
}

/* === Columns === */
.nameplate-left,
.nameplate-right {
  flex: 1 1 50%;
}

.nameplate-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* === Image === */
.nameplate-right img {
  width: 100%;
  max-width: 650px;
  border-radius: 0;
  object-fit: cover;
}

/* === Text Content === */
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #00215c;
  margin-bottom: 20px;
}

.main-description {
  color: #00215c;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: left;
  max-width: 90%;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.step-heading {
  font-weight: 600;
  color: #00215c;
  margin-bottom: 4px;
}

.step-description {
  color: #00215c;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* === Responsive === */
@media (max-width: 992px) {
  .nameplate-inner {
    flex-direction: column;
    gap: 16px;
    padding: 0 16px; /* Reduced side padding for mobile 16x Default */
  }
  }

  .nameplate-right {
    justify-content: center;
  }

  .nameplate-right img {
    max-width: 100%;
  }

  .main-description {
    font-size: 15px;
    margin-bottom: 30px;
    max-width: 100%;
  }

  .step-item {
    align-items: center;
  }

  .step-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .step-description {
    font-size: 13px;
    line-height: 1.6;
  }

  .section-title {
    font-size: 29px;
  }

  .step-heading {
    font-size: 15px;
  }
}
