.airport-transfer-from-content {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.intro-section {
  background: linear-gradient(135deg, #e1f5fe 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  border-left: 5px solid #2196f3;
}

.tariff-class {
  margin-bottom: 40px;
  padding: 25px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #f5f5f5;
}

.class-title {
  color: #333;
  font-size: 24px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 3px solid #2196f3;
}

.class-description {
  background: #f0f8ff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-style: italic;
  border-left: 4px solid #2196f3;
}

.price-grid {
  overflow-x: auto;
  margin-bottom: 25px;
}

.price-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1px;
  background: #2196f3;
  font-weight: bold;
  border-radius: 8px 8px 0 0;
}

.price-header > div {
  background: #2196f3;
  padding: 12px 8px;
  text-align: center;
  color: white;
  font-size: 14px;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1px;
  background: #e0e0e0;
}

.price-row > div {
  background: #ffffff;
  padding: 10px 8px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.district {
  background: #e3f2fd !important;
  font-weight: bold;
  color: #333;
}

.price {
  font-weight: bold;
  color: #1976d2;
  font-size: 16px;
}

.price-summary {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.price-list {
  list-style: none;
  padding: 0;
}

.price-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

.additional-services {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #4caf50;
}

.additional-services h3 {
  color: #4caf50;
  margin-bottom: 15px;
}

.additional-services ul {
  list-style-type: disc;
  margin-left: 20px;
}

.additional-services li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.airports-detailed-info {
  background: linear-gradient(135deg, #fff3e0 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 12px;
  margin: 40px 0;
}

.airport-detailed-section {
  margin-bottom: 30px;
  padding: 25px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.airport-detailed-section h3 {
  color: #ff9800;
  margin-bottom: 15px;
  font-size: 20px;
}

.advantages-list {
  margin-top: 20px;
}

.advantages-list h4 {
  color: #f57c00;
  margin-bottom: 15px;
}

.advantages-list ol,
.advantages-list ul {
  margin-left: 20px;
}

.advantages-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.transfer-benefits {
  background: linear-gradient(135deg, #e8f5e8 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.benefit-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #4caf50;
}

.benefit-card h4 {
  color: #4caf50;
  margin-bottom: 10px;
}

.conclusion-section {
  background: linear-gradient(135deg, #f3e5f5 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
}

.order-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 25px 0;
}

.order-method {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #9c27b0;
}

.order-method h4 {
  color: #9c27b0;
  margin-bottom: 10px;
}

.contact-info-final {
  background: #2196f3;
  padding: 25px;
  border-radius: 10px;
  margin-top: 25px;
  color: white;
  text-align: center;
}

.contact-info-final h3 {
  color: white;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .price-header,
  .price-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .price-header > div:first-child,
  .price-row > div:first-child {
    display: none;
  }

  .benefits-grid,
  .order-options {
    grid-template-columns: 1fr;
  }

  .tariff-class {
    padding: 15px;
  }
}
