@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 62, 121, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 62, 121, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 62, 121, 0);
    }
}

.pricing-card.popular .pricing-card-cta .btn,
.comparison-cta .btn {
    animation: pulse 2s infinite;
}

.pricing-card.popular {
    border-color: #ff3e79;
}

.pricing-card-badge {
    background-color: #ff3e79;
    color: white;
    padding: 5px 10px;
    position: absolute;
    top: -15px;
    right: 20px;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.instructor-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.partner-logo {
    height: 50px;
    margin: 10px 20px;
}

@media (max-width: 768px) {
    .partner-logo {
        height: 40px;
        margin: 10px;
    }
    
    /* Zmiana kolejności elementów w sekcji instruktora na urządzeniach mobilnych */
    .instructor-container {
        flex-direction: column-reverse;
    }
    
    .instructor-image {
        margin-bottom: 30px;
    }
}

/* Poprawka dla strzałki powrotu do góry */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #ff3e79;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    color: white;
    font-size: 20px;
}

.back-to-top::before {
    content: "↑";
    font-size: 20px;
    font-weight: bold;
    color: white;
}
