body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.content {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 24px;
    color: #333;
}

p {
    font-size: 20px;
    color: #666;
    margin-bottom: 20px;
}

.download-section {
    display: flex;
    flex-direction: column;
}

.download-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 5px;
}

.download-item span {
    font-size: 18px;
    color: #666;
}

.download-button {
    display: inline-block;
    padding: 10px 10px;
    font-size: 14px;
    color: #fff;
    background-color: #333;
    border-radius: 5px;
    text-decoration: none;
}

.download-button:hover {
    background-color: #555;
}