body {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  background: #f4f6f8;
  color: #00205b;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-weight: 700;
  color: #00205b;
}

h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }

.website-container {
  max-width: 1100px;
  margin: 60px auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

header {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-radius:20px;
}

.logo-top {
  text-align: center;
  margin-bottom: 10px;
}

header .navbar-brand img {
  max-height: 70px;
  width: auto;
}

header .navbar-light .navbar-nav .nav-link {
  font-weight: 600;
  color: #00205b;
  /*text-transform: uppercase;*/
  font-size: 15px;
  margin: 0 15px;
  transition: color 0.3s ease;
}

header .navbar-light .navbar-nav .nav-link:hover {
  color: #c8102e;
}

header .navbar-light {
  background: #ffffff;
  display: flex;
  justify-content: center;
}

footer {
  background-color: #00205b;
  padding: 30px 0;
  color: #ffffff;
}

footer .section-menus h3 {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ffffff;
}

footer .section-menus ul {
  list-style: none;
  padding: 0;
}

footer .section-menus ul li a {
  color: #ffffff;
  font-weight: 400;
  text-decoration: none;
}

footer .section-menus ul li a:hover {
  text-decoration: underline;
  color: #c8102e;
}

footer .section-copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
  font-size: 14px;
}

.page {
  padding: 60px 40px;
  background: #ffffff;
}

.page-title h1,
h1.page-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #00205b;
}

.page-content {
  font-size: 18px;
  color: #333;
}

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

.page-content ul,.page-content ol{
  padding-left: 20px;
  margin-bottom: 20px;
}

.big-header {
  background: linear-gradient(to right, #00205b, #c8102e);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: #ffffff;
  border-radius: 8px;
}

.big-header h1 {
  font-size: 32px;
  color: #ffffff;
}

.auto-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.home-page .banners {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.home-page .home-text {
  padding: 50px 20px;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  background: #f4f6f8;
  border-radius: 12px;
  margin-top: 20px;
}

.error-template {
  text-align: center;
  padding: 60px 20px;
  font-size: 18px;
  color: #c8102e;
}