/* ---------- Base Layout ---------- */
body {
  background-color: #f2f6fc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* ---------- Header ---------- */
.page-header {
  /*background: linear-gradient(135deg, #002868, #0047ab);*/
  /*background: linear-gradient(100deg, #009868, #0017ab);*/
  background: linear-gradient(135deg, #d61a19, #8b0000);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.page-header h1 {
  margin: 0;
  font-size: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-header p {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.9;
}

/* ---------- Main Content ---------- */
.content {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.content h2, .content h3 {
  color: #0047ab;
  margin-bottom: 15px;
}

.content p {
  margin-bottom: 20px;
}

/* ---------- Highlight Section ---------- */
.highlight {
  background: #eef3ff;
  border-left: 6px solid #0047ab;
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
}

/* ---------- Buttons ---------- */
button {
  background-color: #0047ab;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #002868;
}

/* ---------- Quote Section ---------- */
.quote {
  font-style: italic;
  background-color: #fafafa;
  border-left: 5px solid #0047ab;
  padding: 20px;
  margin: 40px 0;
}

/* ---------- Footer ---------- */
.page-footer {
  background-color: #002868;
  color: white;
  text-align: center;
  padding: 25px 15px;
  font-size: 15px;
  border-top: 3px solid #0047ab;
}

.page-footer a {
  color: #ffdd00;
  text-decoration: none;
}

.page-footer a:hover {
  text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .content {
    margin: 20px;
    padding: 25px;
  }
  .page-header h1 {
    font-size: 28px;
  }
}

.carousel-inner img {
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}
