:root {
  /* --bg: #0f1724; */
  /* --card: #0b1220; */
  --accent: #06b6d4;
  --muted: #94a3b8;
  --red: #f55748;
  /* --glass: rgba(255, 255, 255, 0.03); */
}

.info-page {
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  color: #1e1e1e;
  padding: 50px 20px;
  max-width: 1000px;
  margin: 40px auto;
  border-radius: 8px;
}

h1, h2, h3 {
  text-align: center;
  padding-left: 25px;
  padding-right: 25px;
}
p {
  /* font-weight: bold; */
  padding-top: 5px;
  text-align: center;
}

a {
  color: var(--accent);
  font-weight: bold;
  text-decoration: none;
}

a:hover{
  text-decoration: none;
  background: none;
}

.info-page h1,
.info-page h2 {
  color: #1e1e1e;
  margin-bottom: 15px;
  margin-top: 15px;
}

.info-page ul,
.info-page ol {
  margin-left: 20px;
  line-height: 1.6;
}

.info-page p {
  margin-bottom: 20px;
}

.spot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.spot-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
}

.price {
  padding-left: 3px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.red {
  color: var(--red);
}

.section-title {
  display: block;        
  text-align: center;    
  font-weight: bold;     
  margin-bottom: 10px; 
}

ul.services {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

ul.services li {
  padding: 10px 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.note {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 12px;
}

.btn {
  text-decoration: none;
  background-color: #007BFF;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}


.contact-btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

.info-page.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (max-width: 768px) {
  .info-page.grid {
    grid-template-columns: 1fr;
  }

  h2,h3 {
    display: none;
  }
}

/* Стили карточек (секций) */
.info-page.grid section {
  padding: 3px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-page.grid section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
}
