.digitiser-stages {
    margin: 40px auto;
    padding: 30px;
    font-family: 'Arial', sans-serif;
}

.digitiser-stages h2 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 600;
  margin-top:0px;
}

.stages-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #eaf1f9;
    border-radius: 12px;
    border-left: 4px solid #1b71b8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stage-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
}

.stage-number {
    background: #1b71b8;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.stage-content {
    flex: 1;
}

.stage-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .digitiser-stages {
        padding: 20px;
        margin: 20px auto;
    }
    
    .stage-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .stage-number {
        align-self: center;
    }
}
  
  .advantages-modern {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.advantage-modern-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid #1b69b9;
}

.advantage-modern-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.highlight-card {
  border: 2px solid #1b69b9;
  transform: scale(1.05); /* Немного выделяем центральную плашку */
}

.highlight-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1b69b9;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: bold;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px; /* Скругленные углы для иконки */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
}

.advantage-modern-card h3 {
  color: #333;
  margin-bottom: 15px;
  margin-top: 15px;
  font-size: 1.3em;
}

.advantage-modern-card p {
  color: #555;
  line-height: 1.6;
}