

.research-policy-section{

  font-family:Arial,sans-serif;
}

.research-policy-card{
  background:#ffffff;
  border-radius:22px;
  padding:45px;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
  border-top:6px solid var(--accent-red);
  position:relative;
  overflow:hidden;
}

.research-policy-card::before{
  content:"";
  position:absolute;
  top:-90px;
  right:-90px;
  width:240px;
  height:240px;
  background:rgba(38,52,137,0.04);
  border-radius:50%;
}

.research-policy-content{
  position:relative;
  z-index:2;
}

.research-policy-content h1{
  color:var(--primary-blue);
  font-size:36px;
  font-weight:700;
  margin-bottom:30px;
  position:relative;
  padding-left:20px;
}

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

.policy-info-box{
  background:#fff;
  border-left:5px solid var(--primary-blue);
  border-radius:16px;
  padding:24px 28px;
  margin-bottom:35px;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
}

.policy-info-box p{
  margin:0;
  color:var(--text-black);
  font-size:16px;
  line-height:1.8;
}

.pdf-container{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  border:1px solid rgba(38,52,137,0.08);
}

.pdf-header{
  background:linear-gradient(135deg,var(--primary-blue),#3145b3);
  padding:18px 24px;
  color:#fff;
  font-size:20px;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:15px;
}

.pdf-header a{
  background:#fff;
  color:var(--primary-blue);
  text-decoration:none;
  padding:10px 22px;
  border-radius:50px;
  font-size:14px;
  font-weight:700;
  transition:0.3s ease;
}

.pdf-header a:hover{
  background:var(--accent-red);
  color:#fff;
}

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

@media(max-width:991px){

  .research-policy-card{
    padding:28px 20px;
  }

  .research-policy-content h1{
    font-size:28px;
  }

  .policy-info-box p{
    font-size:15px;
  }

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

  .pdf-header{
    font-size:17px;
  }
}