.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
    list-style: none;
    padding: 0;
}

.download-item {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.download-item2x {
    grid-column: span 2; /* Span two columns */
    background: #f8f8f8;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.download-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.download-item a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.download-item a:hover {
    color: #0073aa;
}

.note {
    font-size: 14px;
    color: #666;
}

.additional-instructions {
    margin: 10px 0px 10px 0px;
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 5px;
    color: #333;
    font-size: 14px;
    text-align: center;
}

.go-back-button {
    background-color: #ffde01!important;
    color: black!important;
    padding: 10px 20px;
    border: none!important;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    width: 100%;
    font-weight: bold!important;
}

.go-back-button:hover {
    background-color: #ffd400!important;
    color: black!important;
}

.go-back-link {
    display: inline-block;
    background-color: #ffde01!important;
    color: black!important;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold!important;
    margin-top: 50px;
}

.go-back-link:hover {
    background-color: #ffd400!important;
    color: black!important;
}