/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ ПЕРЕВОЗКИ СПЕЦТЕХНИКИ ===== */
.peregon-article {
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  box-sizing: border-box;
}

.peregon-article * {
  box-sizing: border-box;
}

.simple-service-buttons {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  margin: 24px 0 32px;
}
.simple-btn {
  display: block;
  padding: 14px 20px;
  background: #f8fff8;
  border: 1px solid #d0e8d0;
  border-radius: 8px;
  color: #006400;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,100,0,0.05);
}
.simple-btn:hover {
  background: #e8f5e9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,100,0,0.1);
}
.intro-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 15px 0;
  justify-content: center;
}
.intro-btn {
  background: #FFD700;
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  text-align: center;
  min-width: 180px;
  font-size: 14px;
}
.intro-btn:hover {
  background: #28a745;
  color: #fff;
}
.photo-slider {
  max-width: 100%;
  margin: 30px auto;
  position: relative;
}
.slider-container {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,100,0,0.1);
}
.slides {
  display: flex;
  transition: transform 0.4s ease;
}
.slides img {
  min-width: 100%;
  display: block;
  height: auto;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #FFD700;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: bold;
  cursor: pointer;
  color: #000;
  font-size: 18px;
  z-index: 10;
}
.slider-btn:hover {
  background: #28a745;
  color: #fff;
}
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }
.slider-dots {
  text-align: center;
  margin-top: 12px;
}
.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
}
.dot.active {
  background: #28a745;
}
.technique-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.tile-item {
  background: #f8fff8;
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  font-weight: 600;
  color: #006400;
  transition: all 0.2s ease;
  cursor: default;
}
.tile-item:hover {
  background: #e8f5e9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,100,0,0.1);
}
.faq-item {
  margin-bottom: 16px;
  border: 1px solid #a5d6a7;
  border-radius: 10px;
  overflow: hidden;
  background: #f8fff8;
}
.faq-question {
  padding: 16px 20px;
  font-weight: bold;
  font-size: 16px;
  color: #006400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e8f5e9;
  transition: background 0.2s;
}
.faq-question:hover {
  background: #dcedc8;
}
.faq-question::after {
  content: "+";
  font-size: 20px;
  color: #006400;
}
.faq-item.active .faq-question::after {
  content: "−";
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  line-height: 1.6;
  font-size: 15px;
  color: #444;
}
.faq-item.active .faq-answer {
  padding: 0 20px 20px 20px;
  max-height: 700px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.price-table th, .price-table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: center;
}
.price-table thead tr {
  background: #f8fff8;
}
.price-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}
.price-table tbody tr:hover {
  background: #e8f5e9;
}