/* Documents Section */
.documents-section {
    padding: 40px 20px;
    background-color: #f4f4f4;
    text-align: center;
    box-shadow: 0 7px 5px rgba(0, 0, 0, 0.3) inset;
    border-bottom: 5px solid rgb(0, 5, 105);
}

.documents-section h2 {
    color: rgb(0, 5, 105);
    margin-bottom: 30px;
}

.document-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.document-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 20px;
    max-width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
}

.document-card:hover {
    transform: translateY(-10px);
}

.document-card h3 {
    color: rgb(0, 5, 105);
    margin-bottom: 10px;
    font-size: 18px;
}

.document-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* View Document Button */
.view-doc-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(0, 5, 105);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.view-doc-btn:hover {
    background-color: rgb(0, 10, 206);
}
