body {
    font-family: Arial, sans-serif;
    margin: 2rem;
    background: #f8f9fa;
    color: #333;
}

h1 {
    text-align: center;
}

.software-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.software-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.software-card h2 {
    margin-top: 0;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.btn:hover {
    background: #0056b3;
}
