
.ste-delivery-section,
.ste-parcel-section,
.ste-relocation-section,
.ste-dedicated-section,
.ste-express-section {
  line-height: 1.6;
  color: #333;
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}

.ste-main-title {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.ste-main-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: #e74c3c;
}

.ste-subtitle {
  color: #2c3e50;
  margin: 30px 0 20px;
  font-weight: 600;
}

.ste-text-block {
  margin-bottom: 30px;
}

.ste-text-block p {
  margin-bottom: 15px;
}

/* Списки */
.ste-parcel-list,
.ste-relocation-list,
.ste-dedicated-list,
.ste-express-list {
  margin: 20px 0;
  padding-left: 20px;
}

.ste-parcel-list li,
.ste-relocation-list li,
.ste-dedicated-list li,
.ste-express-list li {
  margin-bottom: 10px;
  position: relative;
  list-style-type: none;
  padding-left: 25px;
}

.ste-parcel-list li::before,
.ste-relocation-list li::before,
.ste-dedicated-list li::before,
.ste-express-list li::before {
  content: '•';
  color: #e74c3c;
  position: absolute;
  left: 0;
  top: -3px;
}

/* Таблицы */
.ste-responsive-table {
  width: 100%;
  overflow-x: auto;
  margin: 30px 0;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  border-radius: 8px;
}

.ste-pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 600px;
}

.ste-pricing-table th {
  background-color: #2c3e50;
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 500;
}

.ste-pricing-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.ste-pricing-table tr:hover {
  background-color: #f9f9f9;
}

.ste-pricing-table tr:last-child td {
  border-bottom: none;
}

/* Преимущества */
.ste-advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.ste-advantage-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border-top: 3px solid #e74c3c;
}

.ste-advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ste-advantage-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #e74c3c;
}

.ste-advantage-card h4 {
  font-size: 2.3rem;
  margin-bottom: 10px;
  color: #2c3e50;
  font-weight: bold;
}

.ste-advantage-card p {
  line-height: 1.5;
  color: #666;
}

/* Особенности переездов */
.ste-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.ste-feature-card {
  text-align: center;
  padding: 25px 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.ste-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ste-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #e74c3c;
}

.ste-feature-card h4 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.ste-feature-card p {
  color: #666;
  line-height: 1.5;
}

/* Заключительный текст */
.ste-conclusion-text {
  margin-top: 40px;
  line-height: 1.6;
}

.ste-conclusion-text p {
  margin-bottom: 15px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .ste-main-title {
    font-size: 1.8rem;
  }
  
  .ste-subtitle {
    font-size: 1.3rem;
  }
  
  .ste-pricing-table {
    display: block;
  }
  
  .ste-pricing-table thead {
    display: none;
  }
  
  .ste-pricing-table tr {
    display: block;
    margin-bottom: 15px;
    border-bottom: 2px solid #ddd;
  }
  
  .ste-pricing-table td {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    text-align: right;
    border-bottom: 1px solid #eee;
  }
  
  .ste-pricing-table td::before {
    content: attr(data-label);
    font-weight: bold;
    margin-right: 15px;
    text-align: left;
  }
  
  .ste-advantages-grid {
    grid-template-columns: 1fr;
  }
}
