body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: lightgray;
    color: #222;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* футер прижат к низу */
}

/* Шапка */
.top {
    text-align: center;
    padding: 20px;
    background: lightblue; /* светлый фон */
}

.top h1 {
    margin: 0 0 10px 0;
    font-size: 28px;
    color: #1e3a8a;
}

/* Синяя полоса */
.line-blue {
    height: 6px;
    background: linear-gradient(90deg, #1e3a8a, #2563eb, #3b82f6);
}

/* Контент */
.content {
    flex: 1; /* занимает всё свободное место */
    padding: 40px 20px;
    text-align: center;
}

/* Футер */
.bottom {
    text-align: left;
    background: lightyellow;
    padding: 10px 20px 20px;
}

.bottom p {
    margin: 10px 0 0 0;
    font-size: 14px;
    color: #555;
}

/* Жёлтая полоса */
.line-yellow {
    height: 6px;
    background: linear-gradient(90deg, #facc15, #fde047, #fef9c3);
}

.footer {
    background-color: #f8f8f8;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
  }
  
  .footer-container {
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start; /* Выровнять колонки по левому краю */
    margin: 0; /* Убираем центрирование */
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
    line-height: 1.6;
  }
  
  .footer-title {
    font-size: 16px;
  }
  
  .footer a {
    color: #333;
    text-decoration: none;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }