* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(90deg, #007bff, #6610f2);
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    text-align: center;
}

header h1 {
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 1px;
}

.software-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    gap: 40px;
    animation: fadeIn 1s ease-in-out;
}

.software-img {
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.software-img:hover {
    transform: scale(1.05);
}

.download-section {
    max-width: 400px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

h2 {
    color: #212529;
    margin-bottom: 10px;
}

p {
    color: #6c757d;
    margin-bottom: 20px;
}

.download-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(90deg, #007bff, #6610f2);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

footer {
    margin-top: 70px;
    padding: 25px 0;
    background-color: #343a40;
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
