* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  color: #333;
  background: #eef3f8;
}

.site-banner {
  background: #f5f9fd;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
  padding: 18px 36px;
  border-bottom: 1px solid #dbe7f1;
}

.banner-content {
  max-width: min(1080px, 100%);
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.banner-content > div {
  flex: 1;
  min-width: 0;
}

.banner-content img {
  width: 64px;
  height: auto;
  display: block;
}

.banner-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1b3d67;
}

.banner-tagline {
  font-size: 14px;
  color: #4b6a8a;
}

.card {
  min-height: calc(100vh - 96px);
  padding: 48px 36px 60px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: 1080px;
  margin: 0 auto;
}

.info h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 14px;
  color: #1c3f68;
}

.info .title {
  margin-bottom: 6px;
  color: #1a73c4;
}

.info .education {
  margin-bottom: 20px;
  color: #4c6d8b;
}

@media (max-width: 768px) {
  .site-banner {
    padding: 16px 18px;
  }

  .banner-content {
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .banner-content > div {
    order: 0;
  }

  .banner-content img {
    width: 56px;
    margin: 0;
  }

  .banner-title {
    font-size: 18px;
  }

  .banner-tagline {
    font-size: 13px;
  }

  .card {
    flex-direction: column;
    min-height: auto;
    padding: 28px 18px 36px;
    gap: 28px;
  }

  .photo img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 14px;
  }

  .info {
    width: 100%;
  }

  .info h1 {
    font-size: 24px;
  }

  .info p {
    font-size: 15px;
  }
}

.photo {
  flex-shrink: 0;
}

.photo img {
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.info {
  flex: 1;
}

.info h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 14px;
  color: #222;
}

.info .title {
  margin-bottom: 6px;
}

.info .education {
  margin-bottom: 20px;
}

.info p {
  line-height: 1.65;
  margin-bottom: 14px;
}

.info .contact {
  margin-top: 20px;
}

.info .contact a {
  color: #1a73c4;
  text-decoration: none;
}

.info .contact a:hover {
  text-decoration: underline;
}

ul {
  list-style-position: inside;
}

.list {
  margin: 10px 0px;
}

h4 {
  margin: 10px 0px;
}

.contact-info {
  list-style: none;
}

.ereps {
  width: 72px;
}