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

.page-header {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #333;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="taxi" patternUnits="userSpaceOnUse" width="20" height="20"><text x="10" y="15" text-anchor="middle" font-size="12" fill="rgba(0,0,0,0.05)">🚕</text></pattern></defs><rect width="100" height="100" fill="url(%23taxi)"/></svg>');
  opacity: 0.3;
}

.page-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.page-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

/* Введение */
.intro-section {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  position: relative;
}

.intro-section::before {
  content: "🚗";
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  opacity: 0.1;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.intro-text:last-child {
  margin-bottom: 0;
}

.intro-highlight {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid #ffd700;
  margin: 30px 0;
}

.intro-highlight p {
  margin: 0;
  font-weight: 500;
  color: #856404;
}

/* Преимущества */
.advantages-section {
  margin: 50px 0;
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border-radius: 2px;
}

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

.advantage-card {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #ffd700;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 215, 0, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

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

.advantage-card:hover::before {
  animation: shine 0.6s ease;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.advantage-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffd700;
  position: relative;
  z-index: 1;
}

.advantage-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
  position: relative;
  z-index: 1;
}

.advantage-text {
  color: #666;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Информационные блоки */
.info-section {
  margin: 60px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.info-block {
  background: white;
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  position: relative;
}

.info-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border-radius: 20px 20px 0 0;
}

.info-block h3 {
  color: #333;
  margin-bottom: 20px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-block p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

.info-block ul {
  margin-top: 15px;
  padding-left: 0;
  color: #666;
  list-style: none;
}

.info-block li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.info-block li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

/* Специальные блоки */
.highlight-block {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-left: 5px solid #2196f3;
}

.highlight-block h3 {
  color: #1565c0;
}

.economic-block {
  background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
  border-left: 5px solid #4caf50;
}

.economic-block h3 {
  color: #2e7d32;
}

/* Кнопка заказа */
.order-section {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border-radius: 20px;
  margin: 50px 0;
}

.order-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.order-subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.order-button {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #333;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.order-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  color: #333;
}



/* Мобильная адаптивность */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 1.1rem;
  }

  .intro-section {
    padding: 30px 25px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .info-block {
    padding: 25px 20px;
  }

  .container-page {
    padding: 0 15px;
  }
}
