*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Segoe UI",Arial,sans-serif;
}


body{

    background:#eef6ff;

    color:#164e75;

}



.container{

    width:100%;

    padding:30px 40px;

}





/* HEADER */

.header{

    background:linear-gradient(90deg,#075985,#0284c7);

    color:white;

    padding:35px 40px;

    border-radius:15px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}



.header h1{

    font-size:30px;

    font-weight:800;

}



.header p{

    margin-top:10px;

    font-size:15px;

}





.home{

    background:white;

    color:#075985;

    padding:14px 25px;

    border-radius:10px;

    text-decoration:none;

    font-weight:700;

}





/* NỘI DUNG */

.detail-box{

    background:white;

    border-radius:15px;

    padding:35px;

}





.detail-item{

    display:flex;

    align-items:flex-start;

    padding:18px 10px;

    border-bottom:1px solid #e2e8f0;

}



.detail-item:last-child{

    border-bottom:none;

}



.detail-item label{

    width:260px;

    flex-shrink:0;

    color:#075985;

    font-weight:700;

}



.detail-item p{

    flex:1;

    color:#334155;

    line-height:1.6;

    word-break:break-word;

}





/* FILE */

.pdf{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#dc2626;

    color:white;

    padding:10px 25px;

    border-radius:8px;

    text-decoration:none;

    font-weight:700;

}



.pdf:hover{

    background:#b91c1c;

}





/* FOOTER */

.footer{

    margin-top:40px;

    height:55px;

    background:#075985;

    color:white;

    border-radius:12px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:15px;

}