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


/* BODY */
body {
  background: #dfeef9;
  /*font-family: Arial, Helvetica, sans-serif;*/
  font-family: Helvetica;
  padding: 20px;
}

/* CARD */
.card {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  background: #fff;
  box-shadow: 0 0 18px rgba(0,0,0,.18);
}

/* LEFT PANEL */
.left {
  background: #c9e1f4;
  padding: 22px 20px;
}

.photo {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 18px;
}

.block {
  margin-bottom: 22px;
}

.block h4 {
  font-size: 24px;
  letter-spacing: .6px;
  border-bottom: 2px solid #2b2b2b;
  margin-bottom: 6px;
}

.block p {
  font-size: 20.5px;
  line-height: 1.45;
}

/* RIGHT PANEL */
.right {
  padding: 26px 28px;
  position: relative;
}

/* ECNL LOGO */
.ecnl-logo {
  position: absolute;
  top: 20px;
  right: 18px;
  width: 90px;
}
/* XF LOGO */
.xf-logo {
  position: absolute;
  top: 10px;
  right: 90px;
  width: 90px;
}

/* HEADER */
header {
  border-bottom: 4px solid #2b2b2b;
  padding-bottom: 10px;
}

header h1 {
  font-size: 32px;
  font-weight: 700;
}

 h2 {
  font-size: 32px;
  font-weight: 700;
}

header span {
  color: #2f7dc1;
}

header p {
  margin-top: 6px;
  font-size: 20px;
}

/* CTA BUTTONS */
.cta {
  margin: 18px 0 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta a {
  background: #2f7dc1;
  color: #fff;
  padding: 9px 14px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
}

.cta a:hover {
  background: #245f94;
}

/* SECTIONS */
section {
  margin-bottom: 18px;
}

section h3 {
  font-size: 26px;
  border-bottom: 2px solid #dadada;
  margin-bottom: 8px;
}

 h4 {
  font-size: 24px;
  /*border-bottom: 2px solid #dadada;*/
  margin-bottom: 8px;
}

section ul {
  padding-left: 18px;
}

section li {
  font-size: 20px;
  margin-bottom: 5px;
}

/* MOBILE */
@media (max-width: 850px) {
  .card {
    grid-template-columns: 1fr;
  }

  .ecnl-logo {
    position: static;
    margin-bottom: 10px;
  }

  header {
    text-align: center;
  }

  .cta {
    justify-content: center;
  }
}
