/* Reset basic styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #EEEEEE;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

#container {
    width: 90%;
    max-width: 800px;
    background: #fff;
    margin: 50px 0;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    text-align: center;
}

header img {
    max-width: 300px; /* Adjust based on your logo size */
    height: auto;
    margin-bottom: 20px;
}

h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Style the links to look like professional buttons */
.download-link {
    display: inline-block;
    background: #0056b3;
    color: white;
    padding: 12px 24px;
    margin: 10px 0;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.download-link:hover {
    background: #004494;
}