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

.intro-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  border-left: 5px solid #27ae60;
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: justify;
}

.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;
}

.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(300px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #27ae60;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.advantage-card h4 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.advantage-card .icon {
  font-size: 2rem;
  color: #27ae60;
}

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

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

.tariff-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 25px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.tariff-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #dee2e6;
  font-weight: 500;
  font-size: 1.1rem;
}

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

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

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

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

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

.service-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-card .service-icon {
  font-size: 2.5rem;
  color: #27ae60;
  margin-bottom: 15px;
  text-align: center;
}

.service-card h4 {
  color: #2c3e50;
  margin-bottom: 10px;
  text-align: center;
}

.service-card p {
  color: #666;
  line-height: 1.5;
  text-align: center;
}

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

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

.station-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-top: 3px solid #27ae60;
}

.station-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.station-card h4 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.station-card p {
  color: #666;
  font-size: 0.9rem;
}

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

.return-trip h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.return-trip p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.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;
  }

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

  .advantages-grid,
  .services-grid,
  .stations-grid {
    grid-template-columns: 1fr;
  }

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