/* delivery-page.css */

/* Основний контейнер */
.delivery-page {
  padding: 60px 0;
  font-family: "Roboto", sans-serif;
  color: #222;
  line-height: 1.6;
}

/* Заголовки */
.delivery-page h1 {
  font-size: 2rem;
  margin-bottom: 32px;
  text-align: center;
}

.delivery-page h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
}

/* Навігація по розділах */
.delivery-nav {
  margin-bottom: 40px;
  background: #f9f9f9;
  padding: 16px;
  border-radius: 8px;
}

.delivery-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.delivery-nav li {
  margin-bottom: 8px;
}

.delivery-nav a {
  text-decoration: none;
  color: #007bff;
  font-weight: 500;
  transition: color 0.2s;
}

.delivery-nav a:hover {
  color: #0056b3;
}
.delivery-nav a:focus-visible {
  outline: 2px solid #007bff;
  outline-offset: 3px;
  border-radius: 2px;
}
/* Адаптивність */
@media (max-width: 768px) {
  .delivery-nav a {
    font-size: 0.9rem;
  }
}
