.df-documents-list {
    max-width: 992px;
    margin: 40px auto;
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    font-family: 'Open Sans', sans-serif;
}

.df-documents-list h1 { 
    font-size: 28px;
    color: #002e5b;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid #e8f0fa;
    padding-bottom: 10px;
}

.df-documents-list .add_doc_btn a{
    display: inline-block;
    padding: 10px 20px;
    background-color: #0056a6;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.df-documents-list .add_doc_btn a:hover {
    background-color: #003d80;
}

.df-document {
    background-color: #f8fbfe;
    border: 1px solid #d5e4f2;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    transition: box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.df-document:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.df-document h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #002e5b;
    font-weight: 600;
}

.df-document p {
    margin: 0 0 10px;
    font-size: 15px;
    color: #555;
}

.df-document a {
    color: #0056a6;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.df-document a:hover {
    color: #003d80;
    text-decoration: underline;
}
.header .upheader .wrap .nav-menu {
    gap: 20px;
}
.df-document-form {
    max-width: 992px;
    margin: 40px auto;
    padding: 40px 30px;
    background-color: #e8f0fa;
    border: 1px solid #c4d9ec;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
}

.df-document-form .acf-input textarea,
.df-document-form .acf-input input{
    border: 1px solid #e8f0fa;
}
.df-document-form h2 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #002e5b;
    font-weight: 700;
    text-align: center;
}

.acf-form input[type="submit"] {
    background-color: #0056a6;
    color: white;
    padding: 12px 24px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.acf-form input[type="submit"]:hover {
    background-color: #003d80;
}

@media (max-width: 600px) {
    .df-documents-list,
    .df-document-form {
        padding: 20px;
    }

    .df-document {
        flex-direction: column;
    }
    .df-document h3 {
        font-size: 18px;
    }

    .df-document p {
        font-size: 14px;
    }
}
