.download-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.download-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 25px;
    width: 280px;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.download-card.android {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    box-shadow: 0 10px 30px rgba(17, 153, 142, 0.3);
}

.download-card.android:hover {
    box-shadow: 0 15px 40px rgba(17, 153, 142, 0.4);
}

.download-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.download-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.download-version {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 20px;
}

.download-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    color: white;
    text-decoration: none;
}

.section-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 30px;
}