*{box-sizing:border-box}

:root{
  --blue:#07549a;
  --blue-dark:#053f76;
  --blue-light:#eaf4fc;
  --green:#26886c;
  --border:#cbd7df;
  --text:#202b32;
}

html,body{margin:0;padding:0}

body{
  background:#eef1f3;
  color:var(--text);
  font-family:"Cairo",Tahoma,Arial,sans-serif;
  line-height:1.55;
}

.paper{
  width:854px;
  min-height:1280px;
  margin:20px auto;
  padding:12px 25px 18px;
  background:#fff;
  border:2px solid #345e73;
  border-radius:32px;
  box-shadow:0 4px 18px rgba(0,0,0,.12);
  overflow:hidden;
  position:relative;
}

/* Header */
.top{
  border-bottom:1px solid #8b969d;
  padding-bottom:8px;
}

.header-logo{
  display:block;
  width:350px;
  height:108px;
  object-fit:contain;
  margin:0 auto 2px;
}

.title-block{text-align:center}

h1{
  margin:5px 0 1px;
  color:#132c40;
  font-size:25px;
  line-height:1.45;
  font-weight:800;
}

h2{
  margin:0;
  color:var(--green);
  font-size:18px;
  font-weight:800;
}

.date{
  display:inline-block;
  margin:8px auto 3px;
  padding:5px 25px;
  border-radius:20px;
  background:var(--blue-dark);
  color:#fff;
  font-size:16px;
  font-weight:800;
  letter-spacing:.3px;
}

.opening{
  margin:2px 0 7px;
  font-size:13px;
}

/* Cards */
.card{
  margin:8px 0;
  padding:7px 13px 10px;
  border:1px solid var(--border);
  border-radius:15px;
  background:linear-gradient(to bottom,#fff,#fcfdfe);
}

.section-heading{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--blue);
  margin-bottom:2px;
}

.section-heading h3{
  margin:0;
  font-size:18px;
  line-height:1.35;
  font-weight:800;
}

.badge{
  flex:0 0 37px;
  width:37px;
  height:37px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--blue);
  color:#fff;
  font-size:24px;
  font-weight:700;
}

.card p{
  margin:3px 0;
  font-size:12.5px;
}

.card ul{
  margin:4px 0 0;
  padding-right:22px;
  font-size:12px;
}

.card li{margin:2px 0}

.square{list-style-type:square}

.sub-title{
  color:#263e4d;
  font-weight:800;
}

/* Tables */
h4{
  color:var(--green);
  margin:7px 0 3px;
  font-size:15px;
}

table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  border:1px solid #b7c5ce;
  border-radius:11px;
  overflow:hidden;
  font-size:11px;
  margin:4px 0 6px;
}

th{
  background:var(--blue);
  color:#fff;
  font-weight:800;
  padding:5px 7px;
  border-left:1px solid rgba(255,255,255,.5);
  line-height:1.35;
}

td{
  padding:5px 7px;
  border-top:1px solid #c8d3da;
  border-left:1px solid #c8d3da;
  vertical-align:middle;
  line-height:1.45;
}

tr td:last-child,tr th:last-child{border-left:0}

tbody tr:nth-child(even){background:#f7fafc}

/* Footer */
footer{
  margin-top:8px;
  display:block;
  width:max-content;
  max-width:100%;
  margin-right:auto;
  margin-left:auto;
  padding:4px 25px;
  border-radius:18px;
  background:var(--blue-dark);
  color:white;
  text-align:center;
  font-size:13px;
  font-weight:700;
}

/* Print A4 */
@page{
  size:A4 portrait;
  margin:0;
}

@media print{
  body{background:#fff}
  .paper{
    width:210mm;
    min-height:297mm;
    margin:0;
    border:2px solid #345e73;
    border-radius:25px;
    box-shadow:none;
  }
}

/* Tablet */
@media(max-width:900px){
  .paper{
    width:calc(100% - 20px);
    min-height:auto;
  }
}

/* Mobile */
@media(max-width:600px){
  .paper{
    width:100%;
    margin:0;
    padding:8px 10px 14px;
    border-radius:18px;
  }

  .header-logo{
    width:280px;
    height:88px;
  }

  h1{font-size:17px}
  h2{font-size:13px}
  .date{font-size:12px;padding:4px 18px}
  .opening{font-size:10px}

  .card{padding:6px 8px}
  .section-heading h3{font-size:14px}
  .badge{
    width:30px;height:30px;flex-basis:30px;font-size:18px
  }
  .card p,.card ul{font-size:10px}
  h4{font-size:12px}

  table{
    font-size:8px;
  }
  th,td{padding:4px}
  footer{font-size:9px;padding:4px 12px}
}
.info-card{
  min-height:76px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 17px;
  background:#fff;
  border:1px solid #d9d9d9;
  border-right:4px solid var(--orange);
  border-radius:13px;
  box-shadow:0 1px 4px rgba(0,0,0,.035);
}