body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #1b8a3e 0%, #14632d 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    background: white;
    width: 90%;
    max-width: 400px;
    border-radius: 30px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
}

.icon-container img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    margin-top: -80px; /* Pulls the icon halfway out of the box */
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

h1 {
    font-size: 24px;
    margin: 20px 0 5px;
    color: #1a2a3a;
}

.subtitle {
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
}

.download-btn {
    display: inline-block;
    background: #2ecc71;
    color: white;
    text-decoration: none;
    padding: 15px 60px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.stats {
    margin-top: 20px;
    font-weight: bold;
    font-size: 14px;
}

.footer-text {
    color: #aaa;
    font-size: 12px;
}
