/* Center the container */
.downloads {
    text-align: center;
    padding: 40px;
    background: #f4f4f4;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 400px;
}

/* Style the button */
.download-btn {
    display: inline-block;
    background-color: #007bff; /* Professional Blue */
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

/* Add a hover effect */
.download-btn:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
