* {
    font-family: "Poppins", sans-serif;
}

.pain-bullet, .check-bullet {
    list-style: none;
    padding-left: 0;
}

.pain-bullet li:before {
    content: '❌';
    margin-right: 10px;
    color: red;
}

.check-bullet li:before {
    content: '✅';
    margin-right: 10px;
    color: green;
}

/* Call To Action Button Styles */
.cta-button {
    display: inline-block;
    padding: 15px 25px;
    background-color: #0088cc; /* Telegram blue color */
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    position: relative;
    transition: background-color 0.3s;
}

.cta-button .arrow {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s;
}

.cta-button .button-icon {
    vertical-align: middle;
    margin-right: 10px;
    width: 50px; /* Adjust the size as needed */
    height: auto;
}

/* Hover Effects */
.cta-button:hover {
    background-color: #006699;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

