/*namespace Ly.Project.WebSite.wwwroot.css
{
    public class banner
    {
    }
}
*/
body {
  font-family: "Segoe UI", sans-serif;
  font-weight: 400;
  color: #333;
}

/* ===========================
   Загальна сторінка банера
=========================== */

.banner-page {
  padding: 40px;
  max-width: 960px;
  margin: 0 auto;
  line-height: 1.7;
}
  .banner-page h1,
  .banner-page h2,
  .banner-contacts a,
  .banner-langs a {
    color: #00a7b5;
  }

  /* ===========================
   Заголовки
=========================== */

  .banner-page h1 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 2rem;
  }

  .banner-page h2 {
    margin: 28px 0 16px;
    font-size: 1.3rem;
  }

  /* ===========================
   Текст
=========================== */

  .banner-page p {
    margin-bottom: 16px;
    text-indent: 28px;
    font-size: 1rem;
    color: #333;
  }

  .banner-page ul,
  .banner-page ol {
    padding-left: 24px;
    margin-bottom: 20px;
  }

  .banner-page li {
    margin-bottom: 10px;
  }

/* ===========================
   Виділений блок
=========================== */

.banner-highlight {
  background: #eefcfd;
  border-left: 4px solid #00a7b5;
  padding: 18px 22px;
  border-radius: 10px;
  margin-bottom: 24px;
}

/* ===========================
   Контакти
=========================== */

.banner-contacts {
  background: #f9fbfe;
  padding: 16px;
  border-radius: 10px;
  margin-top: 32px;
}

  .banner-contacts a {
    color: #00a7b5;
    text-decoration: none;
    font-weight: 600;
  }

/* ===========================
   Мови
=========================== */

.banner-langs ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.banner-langs li {
  display: inline;
}

.banner-langs a {
  color: #00a7b5;
  text-decoration: none;
  font-weight: 500;
}
/* ===========================
   Мобільна версія
=========================== */

@media (max-width:600px) {

  .banner-page {
    padding: 20px;
  }

    .banner-page h1 {
      font-size: 1.6rem;
    }

    .banner-page h2 {
      font-size: 1.1rem;
    }

    .banner-page p {
      text-indent: 0;
      font-size: .95rem;
    }

  .banner-contacts {
    padding: 12px;
    font-size: .95rem;
  }

  .banner-langs ul {
    flex-direction: column;
    gap: 6px;
  }
}
/* ===========================
   Public pages
=========================== */

.site-layout .icon img {
  width: 30px;
  height: auto;
  margin: 5px;
}

/* Спільний текстовий контент сторінок */

.site-layout .offer-content {
  padding: 40px;
}

  .site-layout .offer-content h1 {
    text-align: center;
    margin-bottom: 14px;
  }

  .site-layout .offer-content h2 {
    margin: 14px 0;
  }

  .site-layout .offer-content ol {
    list-style: none;
    margin-left: 28px;
  }

  .site-layout .offer-content ul {
    list-style: circle;
    margin-left: 56px;
  }

  .site-layout .offer-content ol ul {
    margin-top: 6px;
  }

  .site-layout .offer-content li {
    margin-bottom: 6px;
  }

    .site-layout .offer-content li:last-child {
      margin-bottom: 0;
    }

  .site-layout .offer-content p {
    text-indent: 28px;
  }

/* Таблиця цін */

.site-layout table.prices {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #fff;
}

  .site-layout table.prices th,
  .site-layout table.prices td {
    border: 1px solid #4682b4;
    text-align: left;
    padding: 8px;
  }

  .site-layout table.prices th {
    background: #4682b4;
    color: #fff;
  }

  .site-layout table.prices tr:nth-child(even) {
    background: #e6f2ff;
  }

  .site-layout table.prices tr:nth-child(odd) {
    background: #fff;
  }
