body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to bottom, #0dc50d, #026302);
}

.pdf-container {
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    background-color: #ececec;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.pdf-option {
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pdf-option:hover {
    background-color: #e0e0e0;
}

.pdf-option h2 {
    margin-bottom: 10px;
}

.pdf-option p {
    font-size: 16px;
    color: #808080;
}
