body {
  background: #f8f9fb;
  margin: 0;
  font-family: "Nunito", sans-serif;
}
.banner {
  width: 100%;
  padding: 2em 0 2em 0;
   background: linear-gradient(110deg, #4186c200 20%, #53afe800 100%), url('#') center/cover no-repeat;
  text-align: center;
  color: #263259;
  margin-bottom: 2em;
}
.banner h2 {
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 3em;
  margin: 0 0 0.3em 0;
  font-weight: 400;
}
.banner p {
  font-size: 1.1em;
  color: #7b8199;
  margin: 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.docs-title {
  background: #33a9ef;
  color: #fff;
  text-align: center;
  font-size: 1.65em;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 2.2em;
  padding: 0.7em 0;
  letter-spacing: 0.5px;
}
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2em;
  justify-items: center;
}
.doc-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 18px rgba(44, 98, 120, 0.08);
  padding: 2em 1em 1.2em 1em;
  text-align: center;
  text-decoration: none;
  color: #1d2941;
  transition: box-shadow .18s, transform .12s;
  min-width: 230px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.doc-card:hover {
  box-shadow: 0 8px 28px rgba(50,110,180,0.16);
  transform: translateY(-6px) scale(1.03);
}
.doc-card img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 1.3em;
}
.doc-title {
  font-size: 1.07em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #29325c;
  margin-top: 0.7em;
}
@media (max-width: 800px) {
  .docs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2em;
  }
  .container {
    padding: 0 0.4em;
  }
}
@media (max-width: 480px) {
  .docs-title {
    font-size: 1.09em;
    padding: 0.5em 0;
  }
  .docs-grid {
    grid-template-columns: 1fr;
    gap: 0.7em;
  }
  .doc-card img {
    width: 74px;
    height: 74px;
  }
}
