.container-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 30px;
  margin-bottom: 40px;
  align-items: start;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: justify;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 370px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: translateY(-5px);
}

.order-block {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.order-title {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.phone-numbers {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin: 10px 0;
}

.microbus-specs {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  border-left: 5px solid #27ae60;
}

.specs-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 25px;
}

.specs-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.specs-list {
  list-style: none;
}

.specs-list li {
  background: rgba(255, 255, 255, 0.8);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.specs-list li:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(5px);
}

.specs-list li::before {
  content: "🚌";
  font-size: 1.2rem;
  flex-shrink: 0;
}

.tariff-section {
  margin: 40px 0;
}

.tariff-tabs {
  margin: 30px 0;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.tab-btn {
  background: #e9ecef;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: #27ae60;
  color: white;
  font-weight: bold;
}

.tab-btn:hover {
  background: #27ae60;
  color: white;
  transform: translateY(-2px);
}

.tab-content {
  display: none;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
  display: block;
}

.tariff-table {
  width: 100%;
  border-collapse: collapse;
}

.tariff-table th {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
}

.tariff-table td {
  padding: 12px 15px;
  text-align: center;
  border-bottom: 1px solid #dee2e6;
  font-weight: 500;
}

.tariff-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}

.tariff-table tbody tr:hover {
  background: #e8f8f5;
  transform: scale(1.01);
  transition: all 0.2s ease;
  cursor: pointer;
}

.tariff-table .district-cell {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: white;
  font-weight: bold;
}

.price-cell {
  color: #2c3e50;
  font-weight: bold;
  font-size: 1.1rem;
}

.price-cell::after {
  content: "₽";
  color: #666;
  font-size: 0.9rem;
}

.city-tariffs {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  padding: 25px;
  border-radius: 15px;
  margin: 30px 0;
  border-left: 5px solid #27ae60;
}

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

.city-tariff-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.city-tariff-card h4 {
  color: #27ae60;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.city-tariff-card .price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
}

.additional-services {
  background: linear-gradient(135deg, #e8f4fd 0%, #d6eafc 100%);
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  border-left: 5px solid #27ae60;
}

.services-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.services-list li {
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 15px;
  border-radius: 8px;
  transition: background 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.services-list li::before {
  content: "•";
  color: #27ae60;
  font-weight: bold;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: -3px;
}

.services-list li:hover {
  background: rgba(255, 255, 255, 0.95);
}

.advantages-section {
  background: linear-gradient(135deg, #e8f8f5 0%, #d5f4e6 100%);
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  border-left: 5px solid #27ae60;
}

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

.advantage-item {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(5px);
}

.advantage-item::before {
  content: "✓";
  color: #27ae60;
  font-weight: bold;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.advantage-content h4 {
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

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

.use-cases {
  background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  border-left: 5px solid #27ae60;
}

.use-cases-list {
  list-style: none;
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.use-cases-list li {
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.use-cases-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.use-cases-list li::before {
  content: "👥";
  font-size: 1.5rem;
  flex-shrink: 0;
}

.order-button {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
  text-decoration: none;
  display: inline-block;
}

.order-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.6);
}

@media (max-width: 768px) {
  .container-card {
    padding: 10px;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .specs-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .phone-numbers {
    font-size: 1.4rem;
  }

  .tariff-table {
    font-size: 0.9rem;
  }

  .city-tariffs-grid {
    grid-template-columns: 1fr;
  }
}
