/* Responsive */
@media (max-width: 768px) {
    .logo img{
        width: 160px;
     }
     .navbar {
        display: flex;
        justify-content: space-around;
        align-items: center;
        background: #7d4196;
        padding: 15px 0px;
        position: fixed;
        z-index: 999;
        width: 100%;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        background: #b779cf;
        position: absolute;
        top: 89px;
        right: 0;
        width: 100%;
        text-align: center;

    }
    .nav-links li {
        margin: 15px 0;
    }
    .nav-links.show {
        display: flex;
    }

    .toggle-button {
        display: block;
    }
    .pricing-table {
        flex-direction: column;
        align-items: center;
    }
    .column {
        width: 100%;
    }
    .container {
        flex-direction: column;
        align-items: center;
    }
    .whatsapp-button {
        font-size: 14px;
        padding: 10px 15px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button img {
        width: 20px;
        height: 20px;
    }
}







