
.library-programs-section{

  font-family:Arial,sans-serif;
}

.library-programs-card{
  background:#ffffff;
  border-radius:20px;
  padding:45px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  border-top:6px solid var(--accent-red);
}

.library-programs-content h1{
  color:var(--primary-blue);
  font-size:34px;
  font-weight:700;
  margin-bottom:24px;
  position:relative;
  padding-left:18px;
}

.library-programs-content h1::before{
  content:"";
  position:absolute;
  left:0;
  top:5px;
  width:6px;
  height:85%;
  background:var(--accent-red);
  border-radius:10px;
}

.library-programs-content p{
  color:var(--text-black);
  font-size:16px;
  line-height:1.9;
  margin-bottom:24px;
  text-align:justify;
}

.library-programs-content ul{
  padding-left:0;
  margin:25px 0;
}

.library-programs-content ul li{
  list-style:none;
  background:#fff;
  border-left:5px solid var(--primary-blue);
  border-radius:12px;
  padding:16px 20px;
  margin-bottom:16px;
  line-height:1.8;
  box-shadow:0 4px 14px rgba(0,0,0,0.05);
  position:relative;
  color:var(--text-black);
}

.library-programs-content ul li::before{
  content:"✓";
  color:var(--accent-red);
  font-weight:bold;
  margin-right:10px;
}

.pdf-section{
  margin-top:40px;
}

.pdf-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  margin-bottom:35px;
  border:1px solid rgba(38,52,137,0.08);
}

.pdf-title{
  background:var(--primary-blue);
  color:#fff;
  padding:16px 22px;
  font-size:18px;
  font-weight:600;
}

.pdf-card object{
  width:100%;
  height:700px;
  border:none;
}

.highlight-box{
  background:#fff;
  border-left:5px solid var(--accent-red);
  border-radius:14px;
  padding:22px;
  box-shadow:0 4px 14px rgba(0,0,0,0.05);
  margin-bottom:30px;
}

@media(max-width:991px){

  .library-programs-card{
    padding:25px 20px;
  }

  .library-programs-content h1{
    font-size:28px;
  }

  .library-programs-content p,
  .library-programs-content ul li{
    font-size:15px;
  }

  .pdf-card object{
    height:500px;
  }
}