/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  background: #f8f9fa;
  color: #2c2c2c;
  line-height: 1.7;
}

a {
  color: #002868;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #c8102e;
}

/* HEADER */
header {
  background: #ffffff;
  border-bottom: 2px solid #e2e2e2;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.navbar {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.navbar a {
  font-weight: 600;
  color: #002868;
  text-transform: uppercase;
  padding: 10px;
  font-size: 14px;
  border-radius: 4px;
}

.navbar a:hover {
  background: #d4af37;
  color: #fff;
}

/* HERO HEADER */
.big-header {
  background: linear-gradient(90deg, #fefefe, #f5f5f5);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 4px solid #d4af37;
  margin-bottom: 40px;
  text-align: center;
}

.big-header h1 {
  font-size: 36px;
  color: #002868;
  font-weight: 700;
}

/* LAYOUT CONTAINER */
.website-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.page{
  padding:20px 0px;
}
.page-content ul,.page-content ol{
  padding-left: 20px;
  margin-bottom: 20px;
}
/* PAGE SECTIONS */
.page-title h1,
h1.page-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #002868;
}

.page-content {
  font-size: 18px;
  color: #2c2c2c;
  line-height: 1.8;
}

.page-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* CALLOUT / HIGHLIGHT */
.callout-box {
  background: #fffbe6;
  border-left: 6px solid #d4af37;
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
  color: #333;
}

/* FOOTER */
footer {
  background-color: #f5f5f5;
  color: #333;
  padding: 40px 0;
  margin-top: 60px;
  border-top: 4px solid #c8102e;
}

footer .section-menus {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px;
}

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

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

footer .section-menus ul li a {
  color: #333;
  font-weight: 400;
  display: block;
  margin-bottom: 6px;
}

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

footer .section-copyright {
  text-align: center;
  border-top: 1px solid #ddd;
  padding: 15px 0;
  font-size: 14px;
  color: #777;
}

/* HOMEPAGE MODULES */
.home-page .banners {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.03);
}

.home-page .home-text {
  font-size: 18px;
  background: #fefefe;
  padding: 40px;
  border-left: 6px solid #002868;
  border-radius: 12px;
  color: #444;
  margin-top: 20px;
}

/* ERROR PAGE */
.error-template {
  text-align: center;
  padding: 80px 20px;
  font-size: 20px;
  color: #c8102e;
  background: #fff5f5;
  border: 1px solid #f2dede;
  border-radius: 10px;
}