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

/* Poppins Local Font */
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* Background */
body {
  background: linear-gradient(to bottom, #f5fafd, #c9e0f2);
  font-family: "Poppins", sans-serif;
  color: #005190;
  padding: 60px 20px;
  min-height: 100vh;
}
h1 {
  margin: 20px 0;
  font-size: 28px;
}

h2 {
  margin: 18px 0;
  font-size: 22px;
}

h3 {
  margin: 15px 0;
}

p {
  margin: 10px 0;
}

ul,
ol {
  margin: 10px 20px;
  padding-left: 20px;
}

a {
  color: #005190;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

/* Center wrapper */
.container {
  max-width: 900px;
  margin: 0 auto;
}

/* Logo + Brand */
.logo-block {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 60px;
}

.logo-block a {
  width: 100%;
}

.logo {
  max-width: 306px;
  width: 100%;
  height: auto;
}

.brand h1 {
  font-size: 34px;
  font-weight: 700;
}

.brand .sub {
  font-size: 18px;
  letter-spacing: 1px;
}

/* Info Section */
.info {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Footer */
.footer {
  font-size: 14px;
  color: #005190;
}

.footer a {
  margin-top: 10px;
  display: inline-block;
  color: #005190;
  text-decoration: underline;
}

.footer a:hover {
  text-decoration: none;
}

/* Print-Friendly Optimization */
@media print {
  body {
    background: #083552 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .container {
    margin: 0;
  }

  .logo {
    width: 70px;
  }
}
