.btn-glow {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    font-size: 18px;
    color: white;
    background-color: green;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: box-shadow 0.3s ease-in-out;
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.7);
}

.download-app-block {
    background-color: #007bff;
    padding: 50px 0;
}

.text-white {
    color: white;
}

.badge-white {
    background-color: white;
    color: #007bff;
    padding: 5px 10px;
    border-radius: 5px;
}

.section-title-line {
    display: block;
    width: 60px;
    height: 3px;
    background-color: white;
    margin: 10px auto;
}