*{
    margin: 0;
    padding: 0;
}
.heroD{
    height: 70%;
    justify-content: center;
    align-items: center;
    padding: 90px;
    color: white;
}
.heroD h1{
    font-size: 80px;
    font-weight: 700;
    margin-top: 70px;
}
.document{
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding:0 70px ;
}
.document .documentContent{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.documentContent h2{
    font-size: 40px;
    font-weight: 300;
}
.documentContent p{
    color:gray;
    line-height: 1.7;
}
.documentContent button{
    background: linear-gradient(135deg, #079643, #0cb76c);
    color: white;
    border: none;
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 20px;
    outline: none;
    width: 270px;
    cursor: pointer;
    transition: 0.3s;
}
.documentContent button:hover{
    background: linear-gradient(135deg, #0cb76c , #079643);
    
}
.documentContent button a{
    text-decoration: none;
    color: white;
}

.documentImage img{
    border-radius: 20px;
    
}
.documentCard{
    margin-top: 80px;
    padding: 0 70px;
}
.documentCard h1{
    text-align: center;
    font-size: 40px;
    font-weight: 300;
}
.documentBox{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}
.dpCard{
    width: 300px;
    height: 450px;
    border: 1px solid #E8E8E8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 35px;
    border-bottom: 2px solid #0370CB;

}
.dpCard:hover{
    border: none;
}
.dpCard .center{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;

}
.dpCard .iconCircles{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 40px;
  color: white;
  cursor: pointer;
  background: linear-gradient(135deg, #0370CB, #5aa9f4);
}
.dpCard .iconCircles:hover{
    background: linear-gradient(135deg, #5aa9f4, #0370CB);
}
.dpCard h2{
    text-align: center;
}
.dpCard h4{
    margin-top: 30px;
}
.dpCard  ul{
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: gray;
}
.bullet li::marker {
  color: #0370CB;
  font-size: 1.2em;
}
@media all and (max-width:500px){
.heroD{
    width: 90%;
    padding: 50px 15px;
}
.heroD h1{
    margin-top: 90px;
    font-size: 30px;
}
.document{
    flex-direction: column;
    padding:0 40px ;
}
.documentImage img{
    width: 300px;
    
}
.documentCard{
    padding: 0 40px;
}
.documentCard h1{
    font-size: 30px;
}
.documentBox{
    flex-direction: column;
    gap: 40px;
}
.dpCard{
    width: 250px;
}
}