body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#f5f7fb;
}

/* HEADER */
.main-header{
    background:#1e2a5a;
    color:white;
    text-align:center;
    padding:15px;
}

/* BREADCRUMB */
.breadcrumb{
    background:#e9ecf5;
    padding:10px 20px;
}

.breadcrumb a{
    text-decoration:none;
    color:#1e2a5a;
}

/* CONTENT */
.content{
    max-width:1000px;
    margin:auto;
    padding:30px 20px;
}

.page-title{
    text-align:center;
    color:#1e2a5a;
}

.intro{
    text-align:center;
    margin-bottom:25px;
    color:#555;
}

/* TABLE STYLE */
.doc-table{
    background:white;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.doc-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
    border-bottom:1px solid #eee;
}

.doc-row:nth-child(even){
    background:#f9f9ff;
}

.doc-name{
    display:flex;
    align-items:center;
    gap:10px;
}

.pdf{
    color:#d32f2f;
    font-size:20px;
}

/* DOWNLOAD BUTTON */
.doc-action a{
    text-decoration:none;
    background:#1e2a5a;
    color:white;
    padding:6px 12px;
    border-radius:5px;
    font-size:14px;
    transition:0.3s;
}

.doc-action a:hover{
    background:#3b4ba3;
}

/* FOOTER */
footer{
    margin-top:30px;
    background:#1e2a5a;
    color:white;
    text-align:center;
    padding:10px;
}

/* RESPONSIVE */
@media(max-width:600px){
    .doc-row{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }
}