/* tariff.css — дополнительные стили для страницы тарифов */

.tariffs-page {
  padding: 60px 0;
}

.tariffs-page h1 {
  font-size: 42px;
  color: var(--primary-blue, #0056b3);
  margin-bottom: 30px;
}

.tariffs-intro {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
}

.tariff-section {
  margin-bottom: 60px;
  text-align: left;
}

.tariff-section h2 {
  font-size: 28px;
  color: var(--dark-blue, #003d82);
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary-yellow, #FFD700);
  display: inline-block;
}

.tariff-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: white;
  box-shadow: var(--shadow, 0 4px 6px rgba(0,0,0,0.1));
  border-radius: 12px;
  overflow: hidden;
}

.tariff-table th {
  background: var(--primary-blue, #0056b3);
  color: white;
  font-weight: bold;
  padding: 15px 10px;
  text-align: center;
}

.tariff-table td {
  padding: 12px 10px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.tariff-table tr:last-child td {
  border-bottom: none;
}

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

.tariff-note {
  background-color: var(--light-yellow, #ffed8a);
  padding: 15px 20px;
  border-radius: 8px;
  margin: 15px 0 25px;
  border-left: 4px solid var(--primary-yellow, #FFD700);
  text-align: left;
}

.tariff-note p {
  margin: 5px 0;
  font-size: 16px;
}

.price-highlight {
  font-weight: bold;
  color: var(--primary-blue, #0056b3);
}

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

.service-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 16px;
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li::before {
  content: "✓";
  color: var(--primary-yellow, #FFD700);
  font-weight: bold;
  margin-right: 10px;
}

.contact-block {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: white;
  padding: 40px;
  border-radius: 16px;
  margin-top: 40px;
}

.contact-block h3 {
  color: var(--primary-yellow, #FFD700);
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-block p {
  font-size: 18px;
  margin: 10px 0;
}

.contact-block a {
  color: white;
  text-decoration: none;
  border-bottom: 1px dashed var(--primary-yellow, #FFD700);
}

.contact-block a:hover {
  color: var(--primary-yellow, #FFD700);
}

@media (max-width: 768px) {
  .tariff-table {
    font-size: 14px;
  }
  
  .tariff-table th,
  .tariff-table td {
    padding: 10px 5px;
  }
  
  .tariffs-page h1 {
    font-size: 32px;
  }
  
  .tariff-section h2 {
    font-size: 24px;
  }
  
  .contact-block {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .tariff-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}