/* Базовая структура страницы */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
}

/* Шапка */
header {
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: white;
  padding: 1rem;
  text-align: center;
}

.logo-container {
  text-align: center;
  margin-bottom: 0.5rem;
}

.logo {
  max-height: 120px;
}

/* Навигация */
.nav-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 1rem;
  background-color: #fff3e0;
  border-bottom: 2px solid #ff6f00;
}

.nav-buttons button {
  background-color: #ff6f00;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
}

.nav-buttons button:hover {
  background-color: #e65100;
}

/* Контент */
section {
  display: none;
  padding: 1rem;
  max-width: 800px;
  margin: auto;
}

section.active {
  display: block;
}

.card {
  background: #fff8f0;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Новости */
.news-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.news-text {
  flex: 1 1 60%;
}

.news-image {
  flex: 1 1 35%;
  text-align: right;
}

.news-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Карта */
.map {
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
}

/* Рахунки */
.account-result .service {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.account-result img {
  width: 40px;
  margin-right: 10px;
}

/* Футер */
.site-footer {
  background: linear-gradient(135deg, #ff9800, #ff5722);
  text-align: center;
  padding: 10px 0;
}