
@media (max-width: 980px) {
.main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    padding: 20px;
    margin-top: 115px;
}

.image-section, .container {
    flex-direction: column;
}.text-section {
    width: 100%;
}
.offer-badge {
    position: absolute;
    bottom: 29px;
    right: 25px;
    width: 95px;
    height: 95px;
    border: 1px solid #ce98d5;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #8b4b80;
}
.team-section {
    margin-top: 100px;
}
.team-member {
    width: 50%;
}
.image-section {
    width: 100%;
}

}

@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;
    }
    .offer-badge {
        position: absolute;
        bottom: 30px;
        right: 30px;
        width: 80px;
        height: 80px;
        border: 1px solid #ce98d5;
        border-radius: 50%;    
        text-align: center;      
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        color: #8b4b80;
    }

    .team-section {
        flex-direction: column;
        align-items: center;
    }
    .team-member {
        width: 50%;
    }    
    .whatsapp-button {
        font-size: 14px;
        padding: 10px 15px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button img {
        width: 20px;
        height: 20px;
    }
}


@media (max-width: 425px) {
    .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%;
    }
    .offer-badge {
        bottom: 52px;
        right: 8px;
        width: 75px;
        height: 75px;
    }

    .team-member {
        width: 80%;
    }
    .team-section {
        margin-top: 85px;
    }
    .team-member .social-icons {
        position: absolute;
        bottom: 184px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        background: rgba(199, 118, 194, 0.8);
        padding: 8px 15px;
        border-radius: 5px;
        opacity: 0;
        transition: opacity 0.3sease-in-out;
    }
    .image-section {
        width: 100%;
    }

}