.physiotherapy-pricing-container {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    padding: 32px;
    max-width: 400px;
    margin: 0 auto;
}

.physiotherapy-pricing-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.physiotherapy-pricing-icon {
    background: #3b82f6;
    border-radius: 50%;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.physiotherapy-pricing-icon i {
    color: #ffffff;
    font-size: 32px;
}

.physiotherapy-pricing-icon img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
}

.physiotherapy-pricing-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    margin: 0 0 32px 0;
}

.physiotherapy-pricing-items {
    display: flex;
    flex-direction: column;
}

.physiotherapy-pricing-item {
    margin-bottom: 24px;
}

.physiotherapy-pricing-item:last-child {
    margin-bottom: 0;
}

.physiotherapy-pricing-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.physiotherapy-pricing-left {
    flex: 1;
}

.physiotherapy-pricing-service-name {
    font-size: 18px;
    font-weight: 500;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.physiotherapy-pricing-duration {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.physiotherapy-pricing-right {
    flex-shrink: 0;
}

.physiotherapy-pricing-price {
    font-size: 20px;
    font-weight: 700;
    color: #3b82f6;
}

.physiotherapy-pricing-divider {
    border-top: 1px solid #e5e7eb;
    margin-top: 24px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .physiotherapy-pricing-container {
        padding: 24px;
        max-width: 100%;
    }
    
    .physiotherapy-pricing-icon-wrapper {
        margin-bottom: 24px;
    }
    
    .physiotherapy-pricing-title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .physiotherapy-pricing-item {
        margin-bottom: 20px;
    }
    
    .physiotherapy-pricing-service-name {
        font-size: 16px;
    }
    
    .physiotherapy-pricing-price {
        font-size: 18px;
    }
    
    .physiotherapy-pricing-divider {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .physiotherapy-pricing-container {
        padding: 20px;
    }
    
    .physiotherapy-pricing-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .physiotherapy-pricing-right {
        align-self: flex-end;
    }
}